You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
2.2 KiB
63 lines
2.2 KiB
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
<wsdl:definitions xmlns:impl="http://helloworld.webservice.moodykettle.com"
|
|
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
|
xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://helloworld.webservice.moodykettle.com">
|
|
|
|
<wsdl:types>
|
|
<schema xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://helloworld.webservice.moodykettle.com">
|
|
<element name="productRequest">
|
|
<complexType>
|
|
<sequence>
|
|
<element name="id" type="xsd:string" />
|
|
</sequence>
|
|
</complexType>
|
|
</element>
|
|
<element name="productResponse">
|
|
<complexType>
|
|
<sequence>
|
|
<element name="id" type="xsd:string" />
|
|
<element name="description" type="xsd:string" />
|
|
<element name="price" type="xsd:int" />
|
|
</sequence>
|
|
</complexType>
|
|
</element>
|
|
</schema>
|
|
</wsdl:types>
|
|
|
|
<wsdl:message name="getProductDetails">
|
|
<wsdl:part element="impl:productRequest" name="parameters"> </wsdl:part>
|
|
</wsdl:message>
|
|
|
|
<wsdl:message name="getProductDetailsResponse">
|
|
<wsdl:part element="impl:productResponse" name="parameters"> </wsdl:part>
|
|
</wsdl:message>
|
|
|
|
<wsdl:portType name="Product">
|
|
<wsdl:operation name="getProductDetails">
|
|
<wsdl:input message="impl:getProductDetails" name="getProductDetails"> </wsdl:input>
|
|
<wsdl:output message="impl:getProductDetailsResponse" name="getProductDetailsResponse"> </wsdl:output>
|
|
</wsdl:operation>
|
|
</wsdl:portType>
|
|
|
|
<wsdl:binding name="ProductServiceSoapBinding" type="impl:Product">
|
|
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
<wsdl:operation name="getProductDetails">
|
|
<wsdlsoap:operation soapAction=""/>
|
|
<wsdl:input name="getProductDetails">
|
|
<wsdlsoap:body use="literal"/>
|
|
</wsdl:input>
|
|
<wsdl:output name="getProductDetailsResponse">
|
|
<wsdlsoap:body use="literal"/>
|
|
</wsdl:output>
|
|
</wsdl:operation>
|
|
</wsdl:binding>
|
|
|
|
<wsdl:service name="ProductService">
|
|
<wsdl:port binding="impl:ProductServiceSoapBinding" name="ProductPort">
|
|
<wsdlsoap:address location="http://localhost:8080/WebService/services/Product"/>
|
|
</wsdl:port>
|
|
</wsdl:service>
|
|
|
|
</wsdl:definitions>
|