You are viewing a plain text version of this content. The canonical link for it is here.
Posted to savan-dev@ws.apache.org by "Amila Chinthaka Suriarachchi (JIRA)" <ji...@apache.org> on 2010/05/29 18:31:36 UTC

[jira] Resolved: (AXIS2-4589) wsdl2java uses java primitives for the xsd primitives

     [ https://issues.apache.org/jira/browse/AXIS2-4589?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Amila Chinthaka Suriarachchi resolved AXIS2-4589.
-------------------------------------------------

    Resolution: Fixed

you can use -Euwc option

> 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.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org