Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: d41147f7ce26db4fcece217a2fbdd5500a490ab8 (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/2105a" location="2105a.wsdl"/>
  <types/>
  <import namespace="http://tempuri.org/2105b" location="2105b.wsdl"/>

  <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