wsdl2java uses java primitives for the xsd primitives
-----------------------------------------------------
Key: AXIS2-4589
URL: https://issues.apache.org/jira/browse/AXIS2-4589
Project: Axis2
Issue Type: Bug
Components: codegen
Affects Versions: nightly
Reporter: Heiko
Priority: Minor
The type mapping for wsdl2java is wrong.
The XSD primitives are mapped to the java primitives. So it is not possible to
transport a null or nil value between the client and the server.
Here is my suggested patch for file
"modules/adb-codegen/src/org/apache/axis2/schema/typemap/JavaTypeMap.java":
addTypemapping(SchemaConstants.XSD_BOOLEAN, Boolean.class.getName());
addTypemapping(SchemaConstants.XSD_DOUBLE, Double.class.getName());
addTypemapping(SchemaConstants.XSD_FLOAT, Float.class.getName());
addTypemapping(SchemaConstants.XSD_INT, Integer.class.getName());
addTypemapping(SchemaConstants.XSD_LONG, Long.class.getName());
addTypemapping(SchemaConstants.XSD_SHORT, Short.class.getName());
addTypemapping(SchemaConstants.XSD_BYTE, Byte.class.getName());
This works fine for me.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.