Skip to main content
summaryrefslogtreecommitdiffstats
blob: e47b966616cb7d24f1f701cc98007cb062575aeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<definitions 
        xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
        xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
        xmlns:s="http://www.w3.org/2001/XMLSchema" 
        xmlns:s0="http://tempuri.org/" 
        xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
        xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" 
        xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" 
        targetNamespace="http://tempuri.org/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <documentation>
  </documentation>
  <import namespace="http://tempuri.org/2018a" location="2018a.wsdl"/>
  <import namespace="http://tempuri.org/2018b" location="2018b.wsdl"/>
  <types/>
  
  <message name="echoStringIn">
    <part name="parameters" type="s:string"/>
  </message>
  <message name="echoStringOut">
    <part name="parameters" type="s:string" />
  </message>
  <portType name="EchoPortType">
    <operation name="echoString" parameterOrder="parameters">
      <input message="s0:echoStringIn" />
      <output message="s0:echoStringOut" />
    </operation>
   </portType>
  <binding name="EchoBinding" type="s0:EchoPortType">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    <operation name="echoString">
      <soap:operation soapAction="http://tempuri.org/echoString" style="rpc" />
      <input>
        <soap:body use="literal" namespace="htp://org.org"/>
      </input>
      <output>
        <soap:body use="literal" namespace="htp://org.org" />
      </output>
    </operation>
 </binding>
  <service name="EchoService">
    <port name="EchoPort" binding="s0:EchoBinding">
      <soap:address location="http://tempuri.org/"/>
    </port>
  </service>
</definitions>

Back to the top