Advertisement
neo7bf

wsdl generated

May 25th, 2023
1,455
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.76 KB | Source Code | 0 0
  1. <wsdl:definitions
  2.     xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
  3.     xmlns:sch="http://www.codingspace.it/calculatorws"
  4.     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  5.     xmlns:tns="http://www.codingspace.it/calculatorws" targetNamespace="http://www.codingspace.it/calculatorws">
  6.     <wsdl:types>
  7.         <xsd:schema
  8.             xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified"              
  9.            targetNamespace="http://www.codingspace.it/calculatorws">
  10.             <xsd:element name="Add">
  11.                 <xsd:complexType>
  12.                     <xsd:sequence>
  13.                         <xsd:element name="intA" type="xsd:int"/>
  14.                         <xsd:element name="intB" type="xsd:int"/>
  15.                     </xsd:sequence>
  16.                 </xsd:complexType>
  17.             </xsd:element>
  18.             <xsd:element name="AddResponse">
  19.                 <xsd:complexType>
  20.                     <xsd:sequence>
  21.                         <xsd:element name="addResult" type="xsd:int"/>
  22.                     </xsd:sequence>
  23.                 </xsd:complexType>
  24.             </xsd:element>
  25.         </xsd:schema>
  26.     </wsdl:types>
  27.     <wsdl:message name="AddResponse">
  28.         <wsdl:part element="tns:AddResponse" name="AddResponse"></wsdl:part>
  29.     </wsdl:message>
  30.     <wsdl:portType name="Calculatorws">
  31.         <wsdl:operation name="Add">
  32.             <wsdl:output message="tns:AddResponse" name="AddResponse"></wsdl:output>
  33.         </wsdl:operation>
  34.     </wsdl:portType>
  35.     <wsdl:binding name="CalculatorwsSoap11" type="tns:Calculatorws">
  36.         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  37.         <wsdl:operation name="Add">
  38.             <soap:operation soapAction=""/>
  39.             <wsdl:output name="AddResponse">
  40.                 <soap:body use="literal"/>
  41.             </wsdl:output>
  42.         </wsdl:operation>
  43.     </wsdl:binding>
  44.     <wsdl:service name="CalculatorwsService">
  45.         <wsdl:port binding="tns:CalculatorwsSoap11" name="CalculatorwsSoap11">
  46.             <soap:address location="/ws"/>
  47.         </wsdl:port>
  48.     </wsdl:service>
  49. </wsdl:definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement