Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

root/trunk/test/wsdl/document/ping_nosoapaction.wsdl

Revision 1808, 2.5 kB (checked in by nahi, 2 years ago)
  • previous commit includes a fix to allow 'encodingStyle=""'. cloese #342.
Line 
1 <?xml version="1.0" encoding="utf-8"?>
2 <definitions xmlns:tns="http://xmlsoap.org/Ping"
3 xmlns="http://schemas.xmlsoap.org/wsdl/"
4 xmlns:xsd="http://www.w3.org/2001/XMLSchema"
5 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
6 targetNamespace="http://xmlsoap.org/Ping" name="Ping">
7     <types>
8         <schema targetNamespace="http://xmlsoap.org/Ping"
9         xmlns="http://www.w3.org/2001/XMLSchema"
10         elementFormDefault="qualified">
11             <complexType name="ping">
12                 <sequence>
13                     <element name="scenario" type="xsd:string"
14                     nillable="true"/>
15                     <element name="origin" type="xsd:string"
16                     nillable="true"/>
17                     <element name="text" type="xsd:string"
18                     nillable="true"/>
19                 </sequence>
20             </complexType>
21             <complexType name="pingResponse">
22                 <sequence>
23                     <element name="scenario" type="xsd:string"
24                     nillable="true"/>
25                     <element name="origin" type="xsd:string"
26                     nillable="true"/>
27                     <element name="text" type="xsd:string"
28                     nillable="true"/>
29                 </sequence>
30             </complexType>
31             <element name="Ping" type="tns:ping"/>
32             <element name="PingResponse" type="tns:pingResponse"/>
33         </schema>
34     </types>
35     <message name="PingRequest">
36         <part name="ping" element="tns:Ping"/>
37     </message>
38     <message name="PingResponse">
39         <part name="pingResponse" element="tns:PingResponse"/>
40     </message>
41     <portType name="PingPort">
42         <operation name="Ping">
43             <input message="tns:PingRequest"/>
44             <output message="tns:PingResponse"/>
45         </operation>
46     </portType>
47     <binding name="PingBinding" type="tns:PingPort">
48         <soap:binding style="document"
49         transport="http://schemas.xmlsoap.org/soap/http"/>
50         <operation name="Ping">
51             <soap:operation/>
52             <input>
53                 <soap:body use="literal" encodingStyle="" />
54             </input>
55             <output>
56                 <soap:body use="literal"/>
57             </output>
58         </operation>
59     </binding>
60     <service name="PingService">
61         <port name="PingPort" binding="tns:PingBinding">
62             <soap:address
63             location="http://127.0.0.1:8080/axis/services/PingPort"/>
64         </port>
65     </service>
66 </definitions>
Note: See TracBrowser for help on using the browser.