summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl
blob: ab9529e4563e0b4fdd29e401ec16cba191704c8b (plain)
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"?>
<definitions xmlns:tns="http://xmlsoap.org/Ping"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
targetNamespace="http://xmlsoap.org/Ping" name="Ping">
    <types>
        <schema targetNamespace="http://xmlsoap.org/Ping"
        xmlns="http://www.w3.org/2001/XMLSchema"
        elementFormDefault="qualified">
            <complexType name="ping">
                <sequence>
                    <element name="scenario" type="xsd:string"
                    nillable="true"/>
                    <element name="origin" type="xsd:string"
                    nillable="true"/>
                    <element name="text" type="xsd:string"
                    nillable="true"/>
                </sequence>
            </complexType>
            <complexType name="pingResponse">
                <sequence>
                    <element name="scenario" type="xsd:string"
                    nillable="true"/>
                    <element name="origin" type="xsd:string"
                    nillable="true"/>
                    <element name="text" type="xsd:string"
                    nillable="true"/>
                </sequence>
            </complexType>
            <element name="Ping" type="tns:ping"/>
            <element name="PingResponse" type="tns:pingResponse"/>
        </schema>
    </types>
    <message name="PingRequest">
        <part name="ping" element="tns:Ping"/>
    </message>
    <message name="PingResponse">
        <part name="pingResponse" element="tns:PingResponse"/>
    </message>
    <portType name="PingPort">
        <operation name="Ping">
            <input message="tns:PingRequest"/>
            <output message="tns:PingResponse"/>
        </operation>
    </portType>
    <binding name="PingBinding" type="tns:PingPort">
        <soap:binding style="document"
        transport="http://schemas.xmlsoap.org/soap/http"/>
        <operation name="Ping">
            <soap:operation/>
            <input>
                <soap:body use="literal"/>
            </input>
            <output>
                <soap:body use="literal"/>
            </output>
        </operation>
    </binding>
    <service name="PingService">
        <port name="PingPort" binding="tns:PingBinding">
            <soap:address
            location="http://127.0.0.1:8080/axis/services/PingPort"/>
        </port>
    </service>
</definitions>