File: InheritanceTest.wsdl

package info (click to toggle)
axis 1.4-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,100 kB
  • sloc: java: 129,124; xml: 10,602; jsp: 983; sh: 84; cs: 36; makefile: 18
file content (84 lines) | stat: -rw-r--r-- 3,005 bytes parent folder | download | duplicates (10)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?xml version="1.0" ?>

<!-- This WSDL contains the WSDL for testing inherited service definition interfaces -->

<definitions name="urn:InheritanceTest"
             targetNamespace="urn:InheritanceTest2"
             xmlns:tns="urn:InheritanceTest2"
             xmlns:typens="urn:InheritanceTest2"
             xmlns:xsd="http://www.w3.org/1999/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/">

  <!-- message declns -->  
  <message name="getRealtimeLastTradePriceResponse">
     <part name="price" type="xsd:float"/>
  </message>

  <message name="getRealtimeLastTradePriceRequest">
     <part name="tickerSymbol" type="xsd:string"/>
  </message>

  <message name="getLastTradePriceRequest">
     <part name="tickerSymbol" type="xsd:string"/>
  </message>

  <message name="getLastTradePriceResponse">
     <part name="price" type="xsd:float"/>
  </message>

  <!-- port type declns -->
  <portType name="InheritancePortType">
    <operation name="getLastTradePrice">
               parameterOrder="tickerSymbol">
      <input message="tns:getLastTradePriceRequest"/>
      <output message="tns:getLastTradePriceResponse"/>
    </operation>
    <operation name="getRealtimeLastTradePrice">
      <input message="tns:getRealtimeLastTradePriceRequest"/>
      <output message="tns:getRealtimeLastTradePriceResponse"/>
    </operation>
  </portType>

  <!-- binding declns -->
  <binding name="InheritanceSoapBinding" type="tns:InheritancePortType">
    <soap:binding style="rpc"
                  transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="getLastTradePrice">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="encoded"
                   namespace="urn:InheritanceTest"
                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
        <soap:body use="encoded"
                   namespace="urn:InheritanceTest"
                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
    <operation name="getRealtimeLastTradePrice">
      <soap:operation soapAction=""/>
      <input>
        <soap:body use="encoded"
                   namespace="urn:InheritanceTest"
                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
        <soap:body use="encoded"
                   namespace="urn:InheritanceTest"
                   encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
  </binding>

  <!-- service decln -->
  <service name="InheritanceTest">
    <port name="InheritanceTest" binding="tns:InheritanceSoapBinding">
      <soap:address location="http://localhost:8080/axis/services/InheritanceTest"/>
    </port>
  </service>

</definitions>