SoapClient NO deserialize

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
rap121599
Forum Newbie
Posts: 1
Joined: Wed Apr 29, 2009 6:21 pm

SoapClient NO deserialize

Post by rap121599 »

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?
Post Reply