|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2005-07-06 13:27 UTC] blendien at basis-audionet dot de
  [2005-10-11 18:02 UTC] iliaa@php.net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 13:00:01 2025 UTC | 
Description: ------------ Hi, we use php 5.0.4 with SOAP-Extension for Debian. Now we have the following problem, I must send an array via SOAP to an Axis-Engine and the Axis-Engine cannot understand the build xml. So I get back this Message from Axis. org.xml.sax.SAXException: No deserializer defined for array type {http://www.w3.org/2001/XMLSchema}long So we guess that php 5.0.4 makes anything wrong with the packing from an array to SOAP. It's equal which type the Array has. This artical is analog to http://bugs.php.net/bug.php?id=30352 Reproduce code: --------------- $soap_client->call('deletePhonebookEntries', array($id,$pwd,array(1,2,3))); <wsdl:message name="deletePhonebookEntriesRequest"> <wsdl:part name="cust_id" type="xsd:long" /> <wsdl:part name="cust_password" type="xsd:string" /> <wsdl:part name="cust_phonebook_ids" type="impl:ArrayOf_xsd_long" /> </wsdl:message> <wsdl:message name="deletePhonebookEntriesResponse"> <wsdl:part name="deletePhonebookEntriesReturn" type="xsd:long" /> </wsdl:message> <wsdl:operation name="deletePhonebookEntries" parameterOrder="cust_id cust_password cust_phonebook_ids"> <wsdl:input message="impl:deletePhonebookEntriesRequest" name="deletePhonebookEntriesRequest" /> <wsdl:output message="impl:deletePhonebookEntriesResponse" name="deletePhonebookEntriesResponse" /> <wsdl:fault message="impl:SystemFault" name="SystemFault" /> <wsdl:fault message="impl:ClientFault" name="ClientFault" /> </wsdl:operation>