1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00

Missing files were added

This commit is contained in:
Dmitry Stogov
2005-04-18 07:54:46 +00:00
parent 4e04b5b5fb
commit ba22efa25c
4 changed files with 56 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
<?xml version="1.0"?>
<definitions name="SoapInterop" targetNamespace="http://soapinterop.org/definitions/"
xmlns:wsdlns="http://soapinterop.org/definitions/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types/>
<message name="echoStringRequest">
<part name="x" type="xsd:string"/>
</message>
<message name="echoStringResponse">
<part name="Result" type="xsd:string"/>
</message>
<portType name="SoapInteropImport1PortType">
<operation name="echoString" parameterOrder="x">
<input message="wsdlns:echoStringRequest"/>
<output message="wsdlns:echoStringResponse"/>
</operation>
</portType>
</definitions>

View File

@@ -0,0 +1,22 @@
<?xml version="1.0"?>
<definitions name="SoapInterop" targetNamespace="http://soapinterop.org/definitions/"
xmlns:wsdlns="http://soapinterop.org/definitions/"
xmlns:typens="http://soapinterop.org/xsd"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<import location="import2B.xsd" namespace="http://soapinterop.org/xsd" />
<message name='Server.echoStruct'>
<part name='inputStruct' type='typens:SOAPStruct'/>
</message>
<message name='Server.echoStructResponse'>
<part name='Result' type='typens:SOAPStruct'/>
</message>
<portType name="SoapInteropImport2PortType">
<operation name='echoStruct' parameterOrder='inputStruct'>
<input message='wsdlns:Server.echoStruct' />
<output message='wsdlns:Server.echoStructResponse' />
</operation>
</portType>
</definitions>

View File

@@ -0,0 +1,12 @@
<?xml version="1.0"?>
<schema targetNamespace='http://soapinterop.org/xsd'
xmlns='http://www.w3.org/2001/XMLSchema'
elementFormDefault='unqualified'>
<complexType name="SOAPStruct">
<all>
<element name="varString" type="string" />
<element name="varInt" type="int" />
<element name="varFloat" type="float" />
</all>
</complexType>
</schema>

View File

@@ -13,7 +13,7 @@ echo "ok\n";
?>
--EXPECT--
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd"><SOAP-ENV:Body><ns1:x_Document ns1:ID="1">Test Document Here</ns1:x_Document></SOAP-ENV:Body></SOAP-ENV:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd"><SOAP-ENV:Body><ns1:x_Document ID="1">Test Document Here</ns1:x_Document></SOAP-ENV:Body></SOAP-ENV:Envelope>
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd"><SOAP-ENV:Body><ns1:result_Document ns1:ID="1">Test Document Here</ns1:result_Document></SOAP-ENV:Body></SOAP-ENV:Envelope>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd"><SOAP-ENV:Body><ns1:result_Document ID="1">Test Document Here</ns1:result_Document></SOAP-ENV:Body></SOAP-ENV:Envelope>
ok