[
https://issues.apache.org/jira/browse/AXIS2-1883?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Deepal Jayasinghe resolved AXIS2-1883.
--------------------------------------
Resolution: Fixed
applied the patch
thx for the contribution
> Integer nillable property of input parameter bean cannot be null
> (NumberFormatException in SimpleTypeMapper)
> ------------------------------------------------------------------------------------------------------------
>
> Key: AXIS2-1883
> URL: https://issues.apache.org/jira/browse/AXIS2-1883
> Project: Axis 2.0 (Axis2)
> Issue Type: Bug
> Components: databinding
> Affects Versions: 1.1
> Reporter: David Garcia
> Attachments: BeanUtil-branch_1_1.diff,
> SimpleTypeMapper-branch_1_1.diff
>
>
> A property of a complex type is defined like this:
> <xs:complexType name="SomeBean">
> <xs:sequence>
> <xs:element name="someInt" nillable="true" type="xs:int"/>
> ...
> </xs:sequence>
> </xs:complexType>
> That complex type is used as the input parameter of a service´s operation and
> is defined like this:
> public class SomeBean {
> private Integer someInt;
> ...
>
> ...getters & setters...
> }
> Then, trying to set that property to "nil" is not allowed.
> That is, if the input message is something like this:
> <soapenv:Body>
> ...
> <someInt xmlns:nil="http://www.w3.org/2001/XMLSchema-instance"
> nil:nil="true"/>
> </soapenv:Body>
> then the following exception is thrown in the server:
> java.lang.NumberFormatException: For input string: ""
> at
> java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
> at java.lang.Integer.parseInt(Integer.java:489)
> at java.lang.Integer.<init>(Integer.java:609)
> at
> org.apache.axis2.databinding.typemapping.SimpleTypeMapper.getSimpleTypeObject(SimpleTypeMapper.java:77)
> at
> org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:283)
> at
> org.apache.axis2.databinding.utils.BeanUtil.processObject(BeanUtil.java:549)
> at
> org.apache.axis2.databinding.utils.BeanUtil.ProcessElement(BeanUtil.java:499)
> at
> org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:438)
> at
> org.apache.axis2.rpc.receivers.RPCUtil.processRequest(RPCUtil.java:109)
> at
> org.apache.axis2.rpc.receivers.RPCMessageReceiver.invokeBusinessLogic(RPCMessageReceiver.java:116)
> at
> org.apache.axis2.receivers.AbstractInOutSyncMessageReceiver.receive(AbstractInOutSyncMessageReceiver.java:39)
> at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:493)
> at
> org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:319)
> at
> org.apache.axis2.transport.http.AxisServlet.doPost(AxisServlet.java:247)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
> ...
> The only way to make it work is to change "someInt"´s type to "int" and pass
> "0" as default value, although most time this workaround is not desirable as
> it breaks the operation´s semantics.
> Thanks in advance.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]