Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <wsdl:definitions
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
- xmlns:sch="http://www.codingspace.it/calculatorws"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.codingspace.it/calculatorws" targetNamespace="http://www.codingspace.it/calculatorws">
- <wsdl:types>
- <xsd:schema
- xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"
- targetNamespace="http://www.codingspace.it/calculatorws">
- <xsd:element name="Add">
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element name="intA" type="xsd:int"/>
- <xsd:element name="intB" type="xsd:int"/>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- <xsd:element name="AddResponse">
- <xsd:complexType>
- <xsd:sequence>
- <xsd:element name="addResult" type="xsd:int"/>
- </xsd:sequence>
- </xsd:complexType>
- </xsd:element>
- </xsd:schema>
- </wsdl:types>
- <wsdl:message name="AddResponse">
- <wsdl:part element="tns:AddResponse" name="AddResponse"></wsdl:part>
- </wsdl:message>
- <wsdl:portType name="Calculatorws">
- <wsdl:operation name="Add">
- <wsdl:output message="tns:AddResponse" name="AddResponse"></wsdl:output>
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="CalculatorwsSoap11" type="tns:Calculatorws">
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <wsdl:operation name="Add">
- <soap:operation soapAction=""/>
- <wsdl:output name="AddResponse">
- <soap:body use="literal"/>
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="CalculatorwsService">
- <wsdl:port binding="tns:CalculatorwsSoap11" name="CalculatorwsSoap11">
- <soap:address location="/ws"/>
- </wsdl:port>
- </wsdl:service>
- </wsdl:definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement