You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by bu...@apache.org on 2002/09/19 23:41:27 UTC

DO NOT REPLY [Bug 12833] New: - Axis clients fail to extract the value of output (only) parameters when they are last in the parameter list.

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12833>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12833

Axis clients fail to extract the value of output (only) parameters when they are last in the parameter list.

           Summary: Axis clients fail to extract the value of output (only)
                    parameters when they are last in the parameter list.
           Product: Axis
           Version: current (nightly)
          Platform: PC
        OS/Version: Windows NT/2K
            Status: NEW
          Severity: Major
          Priority: Other
         Component: Serialization/Deserialization
        AssignedTo: axis-dev@xml.apache.org
        ReportedBy: ckowal@actional.com


Given the following method signature (where you have an out only argument and 
it�s last), at runtime, the Axis client will not extract the value of outArg 
from the reply, and tell you that it was NULL:

<xsd:element name='StringTest' nillable='true'>
    <xsd:complexType>
       <xsd:sequence>
         <xsd:element name='inArg' nillable='true' type='xsd:string'/>
	 <xsd:element name='inOutArg' nillable='true' type='xsd:string'/>
       </xsd:sequence>
    </xsd:complexType>
</xsd:element>

<xsd:element name='StringTestResponse' nillable='true'>
    <xsd:complexType>
	<xsd:sequence>
	  <xsd:element name='inOutArg' nillable='true' type='xsd:string'/>
	  <xsd:element name='outArg' nillable='true' type='xsd:string'/>
	</xsd:sequence>
    </xsd:complexType>
</xsd:element>