Return-Path: Delivered-To: apmail-cxf-issues-archive@www.apache.org Received: (qmail 60366 invoked from network); 1 Feb 2011 12:06:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Feb 2011 12:06:55 -0000 Received: (qmail 84542 invoked by uid 500); 1 Feb 2011 12:06:55 -0000 Delivered-To: apmail-cxf-issues-archive@cxf.apache.org Received: (qmail 84431 invoked by uid 500); 1 Feb 2011 12:06:52 -0000 Mailing-List: contact issues-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list issues@cxf.apache.org Received: (qmail 84401 invoked by uid 99); 1 Feb 2011 12:06:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Feb 2011 12:06:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Feb 2011 12:06:49 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 2F2F7185486 for ; Tue, 1 Feb 2011 12:06:29 +0000 (UTC) Date: Tue, 1 Feb 2011 12:06:29 +0000 (UTC) From: "Victor-Adrian Ichim (JIRA)" To: issues@cxf.apache.org Message-ID: <249791609.2366.1296561989189.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <27050179.216731296054979004.JavaMail.jira@thor> Subject: [jira] Updated: (CXF-3291) Unmarshalling null value for java.lang.Long generates an empty string exception MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/CXF-3291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Victor-Adrian Ichim updated CXF-3291: ------------------------------------- Issue Type: Wish (was: Bug) This is not a bug but rather an implementation detail. For reproducing this problem, after the wsdl generation, change it manually by adding nillable="true": If @XmlElement(nillable=true) is not also present on the id field, the problem appears. The same scenario tested with Glassfish and Metro implementation gives no error. > Unmarshalling null value for java.lang.Long generates an empty string exception > ------------------------------------------------------------------------------- > > Key: CXF-3291 > URL: https://issues.apache.org/jira/browse/CXF-3291 > Project: CXF > Issue Type: Wish > Components: JAXB Databinding > Affects Versions: 2.3.1 > Environment: Microsoft Windows 7 Enterprise, jdk1.6.0_23, JBoss 6.0 final which contains 2.3.1 version of CXF. > Intel Dual Core, 3GB RAM > Reporter: Victor-Adrian Ichim > > java.lang.Long is not unmarshalled (while primitive long works) > Steps to reproduce: > 1. Create a RPC-LITERAL web service on a stateless session bean with a single method like this: > public ResultDTO compute(FilterDTO filter) > FilterDTO must contain a java.lang.Long id; property. > Annotated FilterDTO with @XmlAccessorType(XmlAccessType.FIELD) > 2. Generate the wsdl file with org.apache.cxf.tools.java2ws.JavaToWS > 3. Deploy the ear by including the wsdl file also (wsdlLocation is specified on the bean for @WebService) > 4. Start the server and use a client to call the method. Having RPC-LITERAL the parameter must be not null in the request. > So FilterDTO must be instantiated. Do not assign any value to the id field (let it null). > Result: > 16:40:36,317 INFO [STDOUT] DefaultValidationEventHandler: [ERROR]: For input string: "" > 16:40:36,317 INFO [STDOUT] Location: line 1 > 16:40:36,323 WARN [org.apache.cxf.phase.PhaseInterceptorChain] Interceptor for {http://ws.ro/}ServiceFacadeService#{http://ws.ro/}compute has thrown exception, unwinding now: org.apache.cxf.interceptor.Fault: Unmarshalling Error: For input > string: "" > at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:787) [:2.3.1] > at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:628) [:2.3.1] > at org.apache.cxf.jaxb.io.DataReaderImpl.read(DataReaderImpl.java:133) [:2.3.1] > ........ > Caused by: javax.xml.bind.UnmarshalException > - with linked exception: > [javax.xml.bind.UnmarshalException: For input string: "" > - with linked exception: > [java.lang.NumberFormatException: For input string: ""]] > at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.handleStreamException(UnmarshallerImpl.java:425) [: > 2.2] > at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal0(UnmarshallerImpl.java:362) [:2.2] > at com.sun.xml.bind.v2.runtime.unmarshaller.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:339) [:2.2] > at org.apache.cxf.jaxb.JAXBEncoderDecoder.unmarshall(JAXBEncoderDecoder.java:764) [:2.3.1] > Caused by: javax.xml.bind.UnmarshalException: For input string: "" > - with linked exception: > [java.lang.NumberFormatException: For input string: ""] > ... 46 more > Caused by: java.lang.NumberFormatException: For input string: "" > at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48) [:1.6.0_23] > at java.lang.Long.parseLong(Long.java:431) [:1.6.0_23] > at java.lang.Long.valueOf(Long.java:525) [:1.6.0_23] > at com.sun.xml.bind.DatatypeConverterImpl._parseLong(DatatypeConverterImpl.java:143) [:2.2] -- This message is automatically generated by JIRA. - For more information on JIRA, see: http://www.atlassian.com/software/jira