source: release-kits/lirk3/resources/gs3-release-maker/apache-ant-1.6.5/src/etc/testcases/taskdefs/optional/dotnet/HelloWorld.wsdl@ 14982

Last change on this file since 14982 was 14982, checked in by oranfry, 16 years ago

initial import of LiRK3

File size: 1.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<definitions name="HelloWorld"
3targetNamespace="http://hello.jaxrpc.samples/"
4xmlns:tns="http://hello.jaxrpc.samples/"
5xmlns="http://schemas.xmlsoap.org/wsdl/"
6xmlns:xsd="http://www.w3.org/2001/XMLSchema"
7xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
8 <types />
9
10 <message name="sayHello">
11 <part name="String_1" type="xsd:string" />
12 </message>
13
14 <message name="sayHelloResponse">
15 <part name="result" type="xsd:string" />
16 </message>
17
18 <portType name="Hello">
19 <operation name="sayHello" parameterOrder="String_1">
20 <input message="tns:sayHello" />
21
22 <output message="tns:sayHelloResponse" />
23 </operation>
24 </portType>
25
26 <binding name="HelloBinding" type="tns:Hello">
27 <operation name="sayHello">
28 <input>
29 <soap:body
30 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
31 use="encoded" namespace="http://hello.jaxrpc.samples/" />
32 </input>
33
34 <output>
35 <soap:body
36 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
37 use="encoded" namespace="http://hello.jaxrpc.samples/" />
38 </output>
39
40 <soap:operation soapAction="" />
41 </operation>
42
43 <soap:binding transport="http://schemas.xmlsoap.org/soap/http"
44 style="rpc" />
45 </binding>
46
47 <service name="HelloWorld">
48 <port name="HelloPort" binding="tns:HelloBinding">
49 <soap:address
50 location="http://localhost:8080/axis/Hello" />
51 </port>
52 </service>
53</definitions>
54
Note: See TracBrowser for help on using the repository browser.