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 2004/03/11 16:54:59 UTC

DO NOT REPLY [Bug 26464] - Array3Ofstring to Array

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

http://issues.apache.org/bugzilla/show_bug.cgi?id=26464

Array3Ofstring to Array





------- Additional Comments From bspeight@travelnow.com  2004-03-11 15:54 -------
It's hard for me to tell for sure from this bug report, but I believe I'm 
running into the same issue (and did NOT w/ v1.1)...

I have this element...
<element name="ticketNumber" nillable="true" type="impl:ArrayOf_xsd_string" />

and here's the definition of the complex type...
<complexType name="ArrayOf_xsd_string">
  <complexContent>
    <restriction base="soapenc:Array">
      <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]" /> 
    </restriction>
  </complexContent>
</complexType>

which axis is sending as...
<ticketNumber soapenc:arrayType="soapenc:string[1]" xsi:type="soapenc:Array" 
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
  <item xsi:type="soapenc:string">99999999</item>
</ticketNumber>

instead of...
<ticketNumber soapenc:arrayType="xsd:string[1]" xsi:type="soapenc:Array">
  <item xsi:type="xsd:string">99999999</item>
</ticketNumber>