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

root/trunk/test/wsdl/datetime/datetime.wsdl

Revision 1520, 1.7 kB (checked in by nahi, 4 years ago)

removed svn:executable

  • Property svn:eol-style set to native
  • Property svn:keywords set to author date id revision
Line 
1 <?xml version="1.0" encoding="UTF-8"?>
2 <wsdl:definitions name = "datetime"
3     targetNamespace="urn:jp.gr.jin.rrr.example.datetime"
4     xmlns:tns="urn:jp.gr.jin.rrr.example.datetime"
5     xmlns="http://schemas.xmlsoap.org/wsdl/"
6     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
7     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
8     xmlns:xsd="http://www.w3.org/2001/XMLSchema">
9
10   <wsdl:message name="nowRequest">
11     <wsdl:part name="now" type="xsd:dateTime"/>
12   </wsdl:message>
13
14   <wsdl:message name="nowResponse">
15     <wsdl:part name="now" type="xsd:dateTime"/>
16   </wsdl:message>
17
18   <wsdl:portType name="DatetimePortType">
19     <wsdl:operation name="now">
20       <wsdl:input message="tns:nowRequest" name="nowRequest"/>
21       <wsdl:output message="tns:nowResponse" name="nowResponse"/>
22     </wsdl:operation>
23   </wsdl:portType>
24
25   <wsdl:binding name="DatetimeBinding" type="tns:DatetimePortType">
26     <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
27     <wsdl:operation name="now">
28       <soap:operation soapAction=""/>
29       <wsdl:input name="nowRequest">
30         <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
31             namespace="urn:jp.gr.jin.rrr.example.datetime" use="encoded"/>
32       </wsdl:input>
33       <wsdl:output name="nowResponse">
34         <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
35             namespace="urn:jp.gr.jin.rrr.example.datetime" use="encoded"/>
36       </wsdl:output>
37     </wsdl:operation>
38   </wsdl:binding>
39
40   <wsdl:service name="DatetimeService">
41     <wsdl:port binding="tns:DatetimeBinding" name="DatetimePort">
42       <soap:address location="http://localhost:10080/"/>
43     </wsdl:port>
44   </wsdl:service>
45 </wsdl:definitions>
Note: See TracBrowser for help on using the browser.