Advertisement
UweBoehm

SoapViaAxis2ServiceImpl.wsdl

Feb 5th, 2013
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?><wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns1="http://org.apache.axis2/xsd" xmlns:ns="http://esb" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://esb">
  2.     <wsdl:documentation>
  3.         Please Type your service description here
  4.     </wsdl:documentation>
  5.     <wsdl:types>
  6.         <xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://esb">
  7.             <xs:element name="mySoapServiceTest">
  8.                 <xs:complexType>
  9.                     <xs:sequence>
  10.                         <xs:element minOccurs="0" name="test" nillable="true" type="xs:string"/>
  11.                     </xs:sequence>
  12.                 </xs:complexType>
  13.             </xs:element>
  14.             <xs:element name="mySoapServiceTestResponse">
  15.                 <xs:complexType>
  16.                     <xs:sequence>
  17.                         <xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
  18.                     </xs:sequence>
  19.                 </xs:complexType>
  20.             </xs:element>
  21.         </xs:schema>
  22.     </wsdl:types>
  23.     <wsdl:message name="mySoapServiceTestRequest">
  24.         <wsdl:part name="parameters" element="ns:mySoapServiceTest"/>
  25.     </wsdl:message>
  26.     <wsdl:message name="mySoapServiceTestResponse">
  27.         <wsdl:part name="parameters" element="ns:mySoapServiceTestResponse"/>
  28.     </wsdl:message>
  29.     <wsdl:portType name="SoapViaAxis2ServiceImplPortType">
  30.         <wsdl:operation name="mySoapServiceTest">
  31.             <wsdl:input message="ns:mySoapServiceTestRequest" wsaw:Action="urn:mySoapServiceTest"/>
  32.             <wsdl:output message="ns:mySoapServiceTestResponse" wsaw:Action="urn:mySoapServiceTestResponse"/>
  33.         </wsdl:operation>
  34.     </wsdl:portType>
  35.     <wsdl:binding name="SoapViaAxis2ServiceImplSoap11Binding" type="ns:SoapViaAxis2ServiceImplPortType">
  36.         <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
  37.         <wsdl:operation name="mySoapServiceTest">
  38.             <soap:operation soapAction="urn:mySoapServiceTest" style="document"/>
  39.             <wsdl:input>
  40.                 <soap:body use="literal"/>
  41.             </wsdl:input>
  42.             <wsdl:output>
  43.                 <soap:body use="literal"/>
  44.             </wsdl:output>
  45.         </wsdl:operation>
  46.     </wsdl:binding>
  47.     <wsdl:binding name="SoapViaAxis2ServiceImplSoap12Binding" type="ns:SoapViaAxis2ServiceImplPortType">
  48.         <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
  49.         <wsdl:operation name="mySoapServiceTest">
  50.             <soap12:operation soapAction="urn:mySoapServiceTest" style="document"/>
  51.             <wsdl:input>
  52.                 <soap12:body use="literal"/>
  53.             </wsdl:input>
  54.             <wsdl:output>
  55.                 <soap12:body use="literal"/>
  56.             </wsdl:output>
  57.         </wsdl:operation>
  58.     </wsdl:binding>
  59.     <wsdl:binding name="SoapViaAxis2ServiceImplHttpBinding" type="ns:SoapViaAxis2ServiceImplPortType">
  60.         <http:binding verb="POST"/>
  61.         <wsdl:operation name="mySoapServiceTest">
  62.             <http:operation location="mySoapServiceTest"/>
  63.             <wsdl:input>
  64.                 <mime:content type="application/xml" part="parameters"/>
  65.             </wsdl:input>
  66.             <wsdl:output>
  67.                 <mime:content type="application/xml" part="parameters"/>
  68.             </wsdl:output>
  69.         </wsdl:operation>
  70.     </wsdl:binding>
  71.     <wsdl:service name="SoapViaAxis2ServiceImpl">
  72.         <wsdl:port name="SoapViaAxis2ServiceImplHttpSoap11Endpoint" binding="ns:SoapViaAxis2ServiceImplSoap11Binding">
  73.             <soap:address location="http://localhost:8080/SoapViaAxis2/services/SoapViaAxis2ServiceImpl.SoapViaAxis2ServiceImplHttpSoap11Endpoint/"/>
  74.         </wsdl:port>
  75.         <wsdl:port name="SoapViaAxis2ServiceImplHttpSoap12Endpoint" binding="ns:SoapViaAxis2ServiceImplSoap12Binding">
  76.             <soap12:address location="http://localhost:8080/SoapViaAxis2/services/SoapViaAxis2ServiceImpl.SoapViaAxis2ServiceImplHttpSoap12Endpoint/"/>
  77.         </wsdl:port>
  78.         <wsdl:port name="SoapViaAxis2ServiceImplHttpEndpoint" binding="ns:SoapViaAxis2ServiceImplHttpBinding">
  79.             <http:address location="http://localhost:8080/SoapViaAxis2/services/SoapViaAxis2ServiceImpl.SoapViaAxis2ServiceImplHttpEndpoint/"/>
  80.         </wsdl:port>
  81.     </wsdl:service>
  82. </wsdl:definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement