Return-Path: Delivered-To: apmail-incubator-cxf-issues-archive@locus.apache.org Received: (qmail 62471 invoked from network); 13 Jul 2007 08:37:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Jul 2007 08:37:26 -0000 Received: (qmail 10706 invoked by uid 500); 13 Jul 2007 08:37:28 -0000 Delivered-To: apmail-incubator-cxf-issues-archive@incubator.apache.org Received: (qmail 10674 invoked by uid 500); 13 Jul 2007 08:37:28 -0000 Mailing-List: contact cxf-issues-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-dev@incubator.apache.org Delivered-To: mailing list cxf-issues@incubator.apache.org Received: (qmail 10654 invoked by uid 99); 13 Jul 2007 08:37:28 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jul 2007 01:37:28 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 13 Jul 2007 01:37:25 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E5655714213 for ; Fri, 13 Jul 2007 01:37:04 -0700 (PDT) Message-ID: <10279077.1184315824936.JavaMail.jira@brutus> Date: Fri, 13 Jul 2007 01:37:04 -0700 (PDT) From: "Freeman Fang (JIRA)" To: cxf-issues@incubator.apache.org Subject: [jira] Updated: (CXF-776) JaxWsServiceFactoryBean doesn't seem to work with AegisDatabinding In-Reply-To: <15643801.1184128444651.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/CXF-776?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Freeman Fang updated CXF-776: ----------------------------- Attachment: spring.tar > JaxWsServiceFactoryBean doesn't seem to work with AegisDatabinding > ------------------------------------------------------------------ > > Key: CXF-776 > URL: https://issues.apache.org/jira/browse/CXF-776 > Project: CXF > Issue Type: Bug > Components: JAX-WS Runtime > Affects Versions: 2.0.1 > Environment: CXFServlet, resin 3.1.1, JDK 1.6 > Reporter: Jan Kriesten > Attachments: spring.tar > > > There really seems to be an issue with JaxWsServiceFactoryBean and Aegis. > I tried the following configuration (CXFServlet): > ---8<--- > > class="org.apache.cxf.aegis.databinding.AegisDatabinding"/> > class="org.apache.cxf.jaxws.support.JaxWsServiceFactoryBean"> > > > init-method="create"> > > > > > > ---8<--- > This did _not_ work. The services-log tells me, that the WebService-Parameters > are blank (btw, only Strings are used). Commenting out the dataBinding-property > in the serviceFactory-bean solves it again - all parameters are ok! > My client looks like this: > ---8<--- > Bus bus = new SpringBusFactory().createBus(); > AegisDatabinding aegisBinding = new AegisDatabinding(); > JaxWsProxyFactoryBean proxyBean = new JaxWsProxyFactoryBean(); > proxyBean.setBus( bus ); > proxyBean.getServiceFactory().setDataBinding( aegisBinding ); > proxyBean.setAddress( "http://localhost/service/AuthService" ); > proxyBean.setServiceClass( IAuthService.class ); > service = (IAuthService) proxyBean.create(); > ---8<--- > If you need any more information just drop me a note... :-) > Best regards, --- Jan. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.