File: simpledoc.wsdl

package info (click to toggle)
libaws 20.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,656 kB
  • sloc: ada: 95,505; python: 2,270; ansic: 1,017; makefile: 829; xml: 235; javascript: 202; java: 112; sh: 106
file content (61 lines) | stat: -rw-r--r-- 1,982 bytes parent folder | download | duplicates (2)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions name="GetCasService"
                  targetNamespace="http://simple.doc.net/sd"
                  xmlns:tns="http://simple.doc.net/sd"
                  xmlns="http://schemas.xmlsoap.org/wsdl/"
                  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
  <wsdl:types>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <xsd:element name="myMethod">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="x" type="xsd:int"/>
            <xsd:element name="y" type="xsd:float"/>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
      <xsd:element name="myMethodResponse">
        <xsd:complexType/>
      </xsd:element>
    </xsd:schema>
  </wsdl:types>

  <wsdl:message name="myMethodRequest">
    <wsdl:part name="parameters" element="myMethod"/>
  </wsdl:message>

  <wsdl:message name="empty">
    <wsdl:part name="parameters" element="myMethodResponse"/>
  </wsdl:message>

  <wsdl:portType name="SimpleDocPortType">
    <wsdl:operation name="call">
      <wsdl:input message="tns:myMethodRequest"/>
      <wsdl:output message="tns:empty"/>
    </wsdl:operation>
  </wsdl:portType>

<wsdl:binding name="SimpleDocBinding" type="tns:SimpleDocPortType">
  <soap:binding style="document"
                transport="http://schemas.xmlsoap.org/soap/http" />

  <wsdl:operation name="call">
    <soap:operation soapAction="call" />
    <wsdl:input>
      <soap:body use="literal" />
    </wsdl:input>
    <wsdl:output>
      <soap:body use="literal" />
    </wsdl:output>
  </wsdl:operation>
</wsdl:binding>

<wsdl:service name="SimpleDocService">
  <wsdl:port name="SimpleDocPort" binding="tns:SimpleDocBinding">
    <soap:address location="http://localhost:1234" />
  </wsdl:port>
</wsdl:service>

</wsdl:definitions>