1--TEST-- 2SOAP XML Schema 15: simpleType/union (inline type) 3--EXTENSIONS-- 4soap 5xml 6--FILE-- 7<?php 8include "test_schema.inc"; 9$schema = <<<EOF 10 <simpleType name="testType"> 11 <union> 12 <simpleType> 13 <restriction base="string"/> 14 </simpleType> 15 <simpleType> 16 <restriction base="int"/> 17 </simpleType> 18 <simpleType> 19 <restriction base="float"/> 20 </simpleType> 21 </union> 22 </simpleType> 23EOF; 24test_schema($schema,'type="tns:testType"',"str"); 25echo "ok"; 26?> 27--EXPECT-- 28<?xml version="1.0" encoding="UTF-8"?> 29<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 xsi:type="ns1:testType">str</testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope> 30string(3) "str" 31ok 32