gnork has asked for the wisdom of the Perl Monks concerning the following question:
<wsdl:definitions name="TestArray" targetNamespace="http://xxx.xxx.xxx/TestArray.wsdl" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://xxx.xxx.xxx/TestArray.wsdl" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://xxx.xxx.xxx/TestArray.xsd1" xmlns:xsd2="http://xxx.xxx.xxx/TestArray.xsd2"> <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"></wsdl:documentation> <wsdl:types> <xsd:schema targetNamespace="http://xxx.xxx.xxx/TestArray.xsd1" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsd1="http://xxx.xxx.xxx/TestArray.xsd1"> <xsd:complexType name="StringArray"> <xsd:sequence> <xsd:element maxOccurs="10" minOccurs="1" name="El +ement" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:schema> </wsdl:types> <wsdl:message name="GiveMeAnArrayRequest"> <wsdl:part name="InArray" type="xsd1:StringArray"/> </wsdl:message> <wsdl:message name="GiveMeAnArrayResponse"> <wsdl:part name="OutArray" type="xsd1:StringArray"/> </wsdl:message>
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: SOAP::Lite Bug?
by gnork (Scribe) on Jan 11, 2005 at 17:08 UTC |