|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-09-18 10:57 UTC] kim at datatal dot se
[2009-10-28 13:55 UTC] jsd dot bugs dot php dot net at bvac dot co dot za
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 21:00:01 2025 UTC |
Description: ------------ Returning from a method invoked over SOAP RPC with a datatype of anyType to a .NET client application will generate an error when the datatype in PHP is an array with values of different types. As specified in the XML Schema document there something known as anyType which is a close approximation to the urType/ur-type. Validation fails in the .NET client due to SOAP returning a datatype of ur-type and not anyType. It works when all the values in the array is of the same type, since the array will become of the type of the values instead of a generic/abstract type. Reproduce code: --------------- Create a web service with the following in the WSDL: <message name="theMethodResponse"> <part name="theMethodReturn" type="xsd:anyType"/> </message> <portType name="thePort"> <operation name="theMethod"> <output message="typens:theMethodResponse"/> </operation> </portType> In the SOAP service implementation: public function theMethod() { return array("value", 1234); } Expected result: ---------------- The expected result returned from the method in C# is a type of object[]. Actual result: -------------- An exception specifying that 'ur-type' is not defined in the XML schema in the following response: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP- ENV="http://schemas.xmlsoap.org/soap/envelope/"; xmlns:ns1="urn:smsservice" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">; <SOAP-ENV:Body> <ns1:theMethodResponse> <theMethodReturn SOAP-ENC:arrayType="xsd:ur-type[2]" xsi:type="SOAP- ENC:Array"> <item xsi:type="xsd:string">value</item> <item xsi:type="xsd:int">1234</item> </theMethodReturn> </ns1: theMethodResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope>