[ 
https://issues.apache.org/jira/browse/AXIS2-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12989262#comment-12989262
 ] 

Y A commented on AXIS2-4589:
----------------------------

How can i use the -Euwc  with Maven plugin?
what do i write in the pom.xml?

> 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: oit
>            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.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to