-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelloServices.wsdl
22 lines (22 loc) · 1.14 KB
/
HelloServices.wsdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version='1.0' encoding='UTF-8'?>
<wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://hello.dew.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:ns2="http://schemas.xmlsoap.org/soap/http" xmlns:ns1="http://ws.dew.org/" name="hello" targetNamespace="http://hello.dew.org/">
<wsdl:import location="IHelloService.wsdl" namespace="http://ws.dew.org/">
</wsdl:import>
<wsdl:binding name="helloSoapBinding" type="ns1:IHelloService">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="hello">
<soap:operation soapAction="" style="document"/>
<wsdl:input name="hello">
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output name="helloResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="hello">
<wsdl:port binding="tns:helloSoapBinding" name="HelloServicesPort">
<soap:address location="http://localhost:8080/wservices/hello/HelloServices"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>