File: service.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 (66 lines) | stat: -rw-r--r-- 2,098 bytes parent folder | download | duplicates (3)
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
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>

<wsdl:definitions name="TestWebService"
                  targetNamespace="http://aws.demo.com/getSrc"
                  xmlns="http://schemas.xmlsoap.org/wsdl/"
                  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
                  xmlns:gc="http://aws.demo.com/getSrv"
                  xmlns:scall="http://aws.demo.com/scall"
                  xmlns:xs="http://www.w3.org/2001/XMLSchema"
                  xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
                  xmlns:dt="http://aws.demo.com/dataTypes">

  <!-- The WSDL types -->

  <wsdl:types>
    <xs:schema version="1.0" elementFormDefault="qualified">
      <xs:import namespace="http://aws.demo.com/scall"
                 schemaLocation="scall.xsd" />
    </xs:schema>
  </wsdl:types>

  <!-- The WSDL messages -->

  <wsdl:message name="GetSrvWebService_Request">
    <part name="wsGetSrvRequest" element="scall:WsGetSrvRequest" />
  </wsdl:message>

  <wsdl:message name="GetSrvWebService_Response">
    <part name="wsGetSrvResponse" element="scall:WsGetSrvResponse" />
  </wsdl:message>

  <!-- The WSDL Port Types -->

  <wsdl:portType name="ScallWebService">
    <wsdl:operation name="wsGetSrvRequest">
      <wsdl:input message="gc:GetSrvWebService_Request" />
      <wsdl:output message="gc:GetSrvWebService_Response" />
    </wsdl:operation>
  </wsdl:portType>

  <!-- The WSDL Bindings -->

  <wsdl:binding name="ScallWebServiceBinding" type="gc:ScallWebService">
    <soap:binding style="rpc"
                  transport="http://schemas.xmlsoap.org/soap/http" />

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

  <!-- The WSDL Services -->

  <wsdl:service name="ScallService">
    <port name="ScallPort" binding="gc:ScallWebServiceBinding">
      <soap:address location="http://localhost" />
    </port>
  </wsdl:service>

</wsdl:definitions>