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
|
<!-- Published by JAX-WS RI (http://jax-ws.java.net). RI's version is JAX-WS RI 2.2.9-b130926.1035 svn-revision#5f6196f2b90e9460065a4c2f4e30e065b245e51e. -->
<!-- Generated by JAX-WS RI (http://jax-ws.java.net). RI's version is JAX-WS RI 2.2.9-b130926.1035 svn-revision#5f6196f2b90e9460065a4c2f4e30e065b245e51e. -->
<definitions
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
xmlns:wsp="http://www.w3.org/ns/ws-policy"
xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy"
xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://hello/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://hello/"
name="HelloImplService">
<types>
<xsd:schema>
<xsd:import namespace="http://hello/" schemaLocation="hello.xsd"/>
</xsd:schema>
</types>
<message name="getHelloAsString">
<part name="arg0" type="xsd:string"/>
</message>
<message name="getHelloAsStringResponse">
<part name="return" type="xsd:string"/>
</message>
<message name="HelloError">
<part name="fault" element="tns:HelloError"/>
</message>
<message name="HelloByeError">
<part name="fault" element="tns:HelloByeError"/>
</message>
<portType name="Hello">
<operation name="getHelloAsString">
<input wsam:Action="http://hello/Hello/getHelloAsStringRequest"
message="tns:getHelloAsString"/>
<output wsam:Action="http://hello/Hello/getHelloAsStringResponse"
message="tns:getHelloAsStringResponse"/>
<fault message="tns:HelloError" name="HelloError"
wsam:Action="http://hello/Hello/getHelloAsString/Fault/HelloError"/>
<fault message="tns:HelloByeError" name="HelloByeError"
wsam:Action="http://hello/Hello/getHelloAsString/Fault/HelloByeError"/>
</operation>
</portType>
<binding name="HelloImplPortBinding" type="tns:Hello">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
<operation name="getHelloAsString">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal" namespace="http://hello/"/>
</input>
<output>
<soap:body use="literal" namespace="http://hello/"/>
</output>
<fault name="HelloError">
<soap:fault name="HelloError" use="literal"/>
</fault>
<fault name="HelloByeError">
<soap:fault name="HelloByeError" use="literal"/>
</fault>
</operation>
</binding>
<service name="HelloImplService">
<port name="HelloImplPort" binding="tns:HelloImplPortBinding">
<soap:address location="http://localhost:9999/ws/hello"/>
</port>
</service>
</definitions>
|