You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@axis.apache.org by "nadir amra (JIRA)" <ax...@ws.apache.org> on 2005/10/10 07:22:47 UTC

[jira] Commented: (AXISCPP-776) XSD_integer type is not serialized or deserialized properly on AIX platform

    [ http://issues.apache.org/jira/browse/AXISCPP-776?page=comments#action_12331685 ] 

nadir amra commented on AXISCPP-776:
------------------------------------

I encountered similar problems until I added LL to the value as follows:

 xsd__integer result = ws->asNonNillableElement((xsd__integer)9223372036854775807LL);

result = ws->asNonNillableElement((xsd__integer)-9223372036854775808LL);


I will change all test cases so it it be platform specific (i.e. for windows it will be I64 or UI64, for all others it will be LL or ULL.




> XSD_integer type is not serialized or deserialized properly on AIX  platform
> ----------------------------------------------------------------------------
>
>          Key: AXISCPP-776
>          URL: http://issues.apache.org/jira/browse/AXISCPP-776
>      Project: Axis-C++
>         Type: Bug
>   Components: XSD Types
>     Versions: current (nightly)
>     Reporter: Manohar
>     Assignee: nadir amra

>
> when given maxInclusive and minInclusive values as inputs for XSD_integer type these values are not serialized properlly.  When the input is given as 
> 9223372036854775807 the result is 4294967295 and  when  given the input as -9223372036854775808 the result  is 0.
> Following code shows the problem.
>         sprintf(endpoint, "%s", url);
>         XSD_integer* ws = new XSD_integer(endpoint);
>         xsd__integer result = ws->asNonNillableElement((xsd__integer)9223372036854775807);
>         cout << "non-nillable element=" << result << endl;
>         result = ws->asNonNillableElement((xsd__integer)-9223372036854775808);
>         cout << "non-nillable element=" << result << endl;
> The same problem happens with XSD_long, XSD_nonPositiveInteger  and XSD_nonNegativeInteger types as well. 
> XSD_integerClient.cpp  testcase  shows this problem.
> Regards
> Manohar

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira