<definitions name="HelloWorldService"
targetNamespace="http://www.dineshonjava.com/wsdl/HelloWorldService.wsdl"
xmlns="http://schemas.xmlsoap.org/wsdl/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:tns="http://www.dineshonjava.com/wsdl/HelloWorldService.wsdl"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<message name="SayHelloRequest">
<part name="firstName" type="xsd:string"/>
</message>
<message name="SayHelloResponse">
<part name="greeting" type="xsd:string"/>
</message>
<portType name="HelloWorld_PortType">
<operation name="sayHelloWorld">
<input message="tns:SayHelloRequest"/>
<output message="tns:SayHelloResponse"/>
</operation>
</portType>
<binding name="HelloWorld_Binding" type="tns:HelloWorld_PortType">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="sayHelloWorld">
<soap:operation soapAction="sayHelloWorld"/>
<input>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:examples:helloworldservice"
use="encoded"/>
</input>
<output>
<soap:body
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
namespace="urn:dineshonjava:helloworldservice"
use="encoded"/>
</output>
</operation>
</binding>
<service name="HelloWorld_Service">
<documentation>WSDL File for HelloWorldService</documentation>
<port binding="tns:HelloWorld_Binding" name="HelloWorld_Port">
<soap:address
location="http://www.dineshonjava.com/SayHelloWorld/">
</port>
</service>
</definitions>

Labels: WSDL