Return to schema067.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / schema |
1.1 misho 1: --TEST-- 2: SOAP XML Schema 67: Attribute with fixed value (2) 3: --SKIPIF-- 4: <?php require_once('skipif.inc'); ?> 5: --FILE-- 6: <?php 7: include "test_schema.inc"; 8: $schema = <<<EOF 9: <complexType name="testType"> 10: <attribute name="str" type="string"/> 11: <attribute name="int" type="int" fixed="5"/> 12: </complexType> 13: EOF; 14: test_schema($schema,'type="tns:testType"',(object)array("str"=>"str","int"=>5)); 15: echo "ok"; 16: ?> 17: --EXPECTF-- 18: <?xml version="1.0" encoding="UTF-8"?> 19: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam str="str" int="5" xsi:type="ns1:testType"/></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope> 20: object(stdClass)#%d (2) { 21: ["str"]=> 22: string(3) "str" 23: ["int"]=> 24: int(5) 25: } 26: ok