xref: /PHP-5.5/ext/soap/tests/bugs/bug66112.wsdl (revision 552e8b2b)
1<?xml version="1.0" encoding="UTF-8"?>
2<wsdl:definitions xmlns:tns="uri:mist" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="test" targetNamespace="uri:mist">
3  <wsdl:types>
4    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="uri:mist">
5      <xs:complexType name="T1">
6        <xs:sequence>
7          <xs:element name="A" type="xsd:string"/><xs:element name="B" type="xsd:string"/>
8        </xs:sequence>
9      </xs:complexType>
10      <xs:element name="Request" type="tns:T1"/><xs:element name="Response" type="tns:T1"/>
11    </xs:schema>
12  </wsdl:types>
13  <wsdl:message name="Request">
14    <wsdl:part name="Request" element="tns:Request"/>
15  </wsdl:message>
16  <wsdl:message name="Response">
17    <wsdl:part name="Response" element="tns:Response"/>
18  </wsdl:message>
19  <wsdl:portType name="test">
20    <wsdl:operation name="Mist">
21      <wsdl:input message="tns:Request"/>
22      <wsdl:output message="tns:Response"/>
23    </wsdl:operation>
24  </wsdl:portType>
25  <wsdl:binding name="test" type="tns:test">
26    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
27    <wsdl:operation name="Mist">
28      <soap:operation soapAction="Mist"/>
29      <wsdl:input>
30        <soap:body use="literal"/>
31      </wsdl:input>
32      <wsdl:output>
33        <soap:body use="literal"/>
34      </wsdl:output>
35    </wsdl:operation>
36  </wsdl:binding>
37  <wsdl:service name="test">
38    <wsdl:port name="test" binding="tns:test">
39      <soap:address location="http://127.0.0.1:81/mist.php"/>
40    </wsdl:port>
41  </wsdl:service>
42</wsdl:definitions>
43