xref: /php-src/ext/soap/tests/gh9720.wsdl (revision e440e37f)
1<?xml version="1.0" encoding="utf-8"?>
2<definitions name="soapService" targetNamespace="urn:soapService" xmlns:typens="urn:soapService" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/">
3  <message name="openSession">
4    <part name="user" type="xsd:string" />
5  </message>
6  <message name="openSessionResponse">
7    <part name="status" type="xsd:string" />
8    <part name="error_code" type="xsd:string" />
9  </message>
10  <portType name="soapServicePortType">
11    <operation name="openSession">
12      <documentation>Service Call: openSession</documentation>
13      <input message="typens:openSession" />
14      <output message="typens:openSessionResponse" />
15    </operation>
16  </portType>
17  <binding name="soapServiceBinding" type="typens:soapServicePortType">
18    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
19    <operation name="openSession">
20      <soap:operation soapAction="urn:openSession" />
21      <input>
22        <soap:body namespace="urn:soapService" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
23      </input>
24      <output>
25        <soap:body namespace="urn:soapService" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
26      </output>
27    </operation>
28  </binding>
29  <service name="soapServiceService">
30    <port name="soapServicePort" binding="typens:soapServiceBinding">
31      <soap:address location="###PHP_SELF###" />
32    </port>
33  </service>
34</definitions>