SoapClient NO deserialize
Posted: Wed Apr 29, 2009 6:23 pm
I am using the php extension Soapclient to make a request to a WSDL file and i get the following,
Exception: org.xml.sax.SAXException: No deserializer for {http://www.company.com/axis/services/na ... xsd_string
From the company i am working with i have found that It is to do with the request to the WSDL file, at the moment its
<destinationAddressSet SOAP-ENC:arrayType="xsd:string[1]" xsi:type="ns3:ArrayOf_xsd_string">XXXXXXX</destinationAddressSet>
but it needs to be
<destinationAddressSet
SOAP-ENC:arrayType="xsd:string[1]" xsi:type="SOAP-ENC:Array">XXXXXXX/destinationAddressSet>
the xsi:type types are different in the WSDL file i is set as xsi:type="ns3:ArrayOf_xsd_string"
is there away using soap client to change this.
They are using Axsis which i have not used before and know very little about, is that my only option?
Exception: org.xml.sax.SAXException: No deserializer for {http://www.company.com/axis/services/na ... xsd_string
From the company i am working with i have found that It is to do with the request to the WSDL file, at the moment its
<destinationAddressSet SOAP-ENC:arrayType="xsd:string[1]" xsi:type="ns3:ArrayOf_xsd_string">XXXXXXX</destinationAddressSet>
but it needs to be
<destinationAddressSet
SOAP-ENC:arrayType="xsd:string[1]" xsi:type="SOAP-ENC:Array">XXXXXXX/destinationAddressSet>
the xsi:type types are different in the WSDL file i is set as xsi:type="ns3:ArrayOf_xsd_string"
is there away using soap client to change this.
They are using Axsis which i have not used before and know very little about, is that my only option?