Return-Path: Delivered-To: apmail-incubator-cxf-user-archive@locus.apache.org Received: (qmail 89319 invoked from network); 27 Dec 2006 07:37:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 27 Dec 2006 07:37:34 -0000 Received: (qmail 72658 invoked by uid 500); 27 Dec 2006 07:37:41 -0000 Delivered-To: apmail-incubator-cxf-user-archive@incubator.apache.org Received: (qmail 72615 invoked by uid 500); 27 Dec 2006 07:37:40 -0000 Mailing-List: contact cxf-user-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: cxf-user@incubator.apache.org Delivered-To: mailing list cxf-user@incubator.apache.org Received: (qmail 72606 invoked by uid 99); 27 Dec 2006 07:37:40 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Dec 2006 23:37:40 -0800 X-ASF-Spam-Status: No, hits=3.5 required=10.0 tests=HTML_MESSAGE,SPF_SOFTFAIL X-Spam-Check-By: apache.org Received-SPF: softfail (herse.apache.org: transitioning domain of bharath@pramati.com does not designate 196.12.47.8 as permitted sender) Received: from [196.12.47.8] (HELO mail.pramati.com) (196.12.47.8) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Dec 2006 23:37:30 -0800 Received: from localhost (unknown [127.0.0.1]) by mail.pramati.com (Postfix) with ESMTP id D552DA05A25; Wed, 27 Dec 2006 07:40:47 +0000 (UTC) X-Virus-Scanned: scanned by pramati.com Received: from mail.pramati.com ([127.0.0.1]) by localhost (mail.pramati.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Dgm2wvpy8lnQ; Wed, 27 Dec 2006 13:10:37 +0530 (IST) Received: from bharathg (bharath-g.pramati.com [192.168.1.192]) by mail.pramati.com (Postfix) with ESMTP id CA186A05814; Wed, 27 Dec 2006 13:10:30 +0530 (IST) Message-ID: <039a01c72989$c5c1f6b0$c001a8c0@bharathg> From: "Bharath Ganesh" To: Cc: , References: <02e401c728e9$5eb63940$c001a8c0@bharathg> <4591D65B.7050704@iona.com> Subject: Re: JAX-WS Handler Support Date: Wed, 27 Dec 2006 13:06:43 +0530 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0397_01C729B7.DB554120" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Virus-Checked: Checked by ClamAV on apache.org ------=_NextPart_000_0397_01C729B7.DB554120 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi The issue has been logged at the bug database.=20 Please check https://issues.apache.org/jira/browse/CXF-336 Also https://issues.apache.org/jira/browse/CXF-335 I could also see the java2wsdl tool is buggy for a number of cases. For = exampple I have a POJO annotated with JSR 181 annotations to be exposed = as a WS.=20 import javax.jws.*; @WebService public class Calculator { public int add (int a, int b) throws AddException{ if(a<0 || b<0){ throw new AddException("No negetive please"); } return a+b; } } When I run the java2wsdl tool by providing the above class, I get the = following error.=20 Error : Can not load the request wrapper class = com.pramati.rs.ws.jaxws.Add, please check the @Reque stWrapper annotation and see if the class is in your classpath The @RequestWrapper annotation is not mandatory. The container could = have well used RPC/Literal.=20 Later when I annotated the Service with @SOAPBinding(style=3D = SOAPBinding.Style.RPC, use=3D SOAPBinding.Use.LITERAL) , the problem I = faced was:=20 Error : com.pramati.rs.ws.AddException.getFaultInfo() Is this a known issue?=20 Thanks Bharath ----- Original Message -----=20 From: James Mao=20 To: cxf-user@incubator.apache.org=20 Sent: Wednesday, December 27, 2006 7:41 AM Subject: Re: JAX-WS Handler Support Hi Bharath, What do you mean not working? it should work from my understanding, = can=20 you provide your testcase, ideally fire a jira issue if it's possible = [1] [1]https://issues.apache.org/jira/browse/CXF Thanks, James. > Hello > > I could see that the JAX-WS handlers are not working with = cxf-2.0-incubator-M1 release. Is this expected in the CXF 2.0 RC? If so = when is this release scheduled? Is there an M2 release also?=20 > > Thanks > Bharath > ------=_NextPart_000_0397_01C729B7.DB554120--