Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:s0="http://test.asmody.me/" name="WebService1" targetNamespace="http://test.asmody.me/" xmlns="http://schemas.xmlsoap.org/wsdl/">
- <types>
- <xs:schema elementFormDefault="qualified" targetNamespace="http://test.asmody.me/" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="hello">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="0" maxOccurs="1" name="name" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="helloResponse">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="0" maxOccurs="1" name="helloResult" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="oneObject">
- <xs:complexType />
- </xs:element>
- <xs:complexType name="SampleData">
- <xs:sequence>
- <xs:element minOccurs="1" maxOccurs="1" name="dateField" type="xs:dateTime" />
- <xs:element minOccurs="0" maxOccurs="1" name="stringField" type="xs:string" />
- <xs:element minOccurs="1" maxOccurs="1" name="doubleField" type="xs:double" />
- <xs:element minOccurs="1" maxOccurs="1" name="intField" type="xs:int" />
- </xs:sequence>
- </xs:complexType>
- <xs:element name="oneObjectResponse">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="0" maxOccurs="1" name="oneObjectResult" type="s0:SampleData" />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="manyObjects">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="1" maxOccurs="1" name="howMany" type="xs:int" />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:complexType name="ArrayOfSampleData">
- <xs:sequence>
- <xs:element minOccurs="0" maxOccurs="unbounded" name="SampleData" nillable="true" type="s0:SampleData" />
- </xs:sequence>
- </xs:complexType>
- <xs:element name="manyObjectsResponse">
- <xs:complexType>
- <xs:sequence>
- <xs:element minOccurs="0" maxOccurs="1" name="manyObjectsResult" type="s0:ArrayOfSampleData" />
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="string" nillable="true" type="xs:string" />
- <xs:element name="SampleData" nillable="true" type="s0:SampleData" />
- <xs:element name="ArrayOfSampleData" nillable="true" type="s0:ArrayOfSampleData" />
- </xs:schema>
- </types>
- <message name="helloSoapIn">
- <part name="parameters" element="s0:hello" />
- </message>
- <message name="helloSoapOut">
- <part name="parameters" element="s0:helloResponse" />
- </message>
- <message name="oneObjectSoapIn">
- <part name="parameters" element="s0:oneObject" />
- </message>
- <message name="oneObjectSoapOut">
- <part name="parameters" element="s0:oneObjectResponse" />
- </message>
- <message name="manyObjectsSoapIn">
- <part name="parameters" element="s0:manyObjects" />
- </message>
- <message name="manyObjectsSoapOut">
- <part name="parameters" element="s0:manyObjectsResponse" />
- </message>
- <message name="helloHttpGetIn">
- <part name="name" type="s:string" />
- </message>
- <message name="helloHttpGetOut">
- <part name="Body" element="s0:string" />
- </message>
- <message name="oneObjectHttpGetIn" />
- <message name="oneObjectHttpGetOut">
- <part name="Body" element="s0:SampleData" />
- </message>
- <message name="manyObjectsHttpGetIn">
- <part name="howMany" type="s:int" />
- </message>
- <message name="manyObjectsHttpGetOut">
- <part name="Body" element="s0:ArrayOfSampleData" />
- </message>
- <message name="helloHttpPostIn">
- <part name="name" type="s:string" />
- </message>
- <message name="helloHttpPostOut">
- <part name="Body" element="s0:string" />
- </message>
- <message name="oneObjectHttpPostIn" />
- <message name="oneObjectHttpPostOut">
- <part name="Body" element="s0:SampleData" />
- </message>
- <message name="manyObjectsHttpPostIn">
- <part name="howMany" type="s:int" />
- </message>
- <message name="manyObjectsHttpPostOut">
- <part name="Body" element="s0:ArrayOfSampleData" />
- </message>
- <portType name="WebService1Soap">
- <operation name="hello">
- <input message="s0:helloSoapIn" />
- <output message="s0:helloSoapOut" />
- </operation>
- <operation name="oneObject">
- <input message="s0:oneObjectSoapIn" />
- <output message="s0:oneObjectSoapOut" />
- </operation>
- <operation name="manyObjects">
- <input message="s0:manyObjectsSoapIn" />
- <output message="s0:manyObjectsSoapOut" />
- </operation>
- </portType>
- <portType name="WebService1Soap12">
- <operation name="hello">
- <input message="s0:helloSoapIn" />
- <output message="s0:helloSoapOut" />
- </operation>
- <operation name="oneObject">
- <input message="s0:oneObjectSoapIn" />
- <output message="s0:oneObjectSoapOut" />
- </operation>
- <operation name="manyObjects">
- <input message="s0:manyObjectsSoapIn" />
- <output message="s0:manyObjectsSoapOut" />
- </operation>
- </portType>
- <portType name="WebService1HttpGet">
- <operation name="hello">
- <input message="s0:helloHttpGetIn" />
- <output message="s0:helloHttpGetOut" />
- </operation>
- <operation name="oneObject">
- <input message="s0:oneObjectHttpGetIn" />
- <output message="s0:oneObjectHttpGetOut" />
- </operation>
- <operation name="manyObjects">
- <input message="s0:manyObjectsHttpGetIn" />
- <output message="s0:manyObjectsHttpGetOut" />
- </operation>
- </portType>
- <portType name="WebService1HttpPost">
- <operation name="hello">
- <input message="s0:helloHttpPostIn" />
- <output message="s0:helloHttpPostOut" />
- </operation>
- <operation name="oneObject">
- <input message="s0:oneObjectHttpPostIn" />
- <output message="s0:oneObjectHttpPostOut" />
- </operation>
- <operation name="manyObjects">
- <input message="s0:manyObjectsHttpPostIn" />
- <output message="s0:manyObjectsHttpPostOut" />
- </operation>
- </portType>
- <binding name="WebService1Soap" type="s0:WebService1Soap">
- <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <operation name="hello">
- <soap:operation soapAction="http://test.asmody.me/hello" style="document" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- <operation name="oneObject">
- <soap:operation soapAction="http://test.asmody.me/oneObject" style="document" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- <operation name="manyObjects">
- <soap:operation soapAction="http://test.asmody.me/manyObjects" style="document" />
- <input>
- <soap:body use="literal" />
- </input>
- <output>
- <soap:body use="literal" />
- </output>
- </operation>
- </binding>
- <binding name="WebService1Soap12" type="s0:WebService1Soap12">
- <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <operation name="hello">
- <soap12:operation soapAction="http://test.asmody.me/hello" style="document" />
- <input>
- <soap12:body use="literal" />
- </input>
- <output>
- <soap12:body use="literal" />
- </output>
- </operation>
- <operation name="oneObject">
- <soap12:operation soapAction="http://test.asmody.me/oneObject" style="document" />
- <input>
- <soap12:body use="literal" />
- </input>
- <output>
- <soap12:body use="literal" />
- </output>
- </operation>
- <operation name="manyObjects">
- <soap12:operation soapAction="http://test.asmody.me/manyObjects" style="document" />
- <input>
- <soap12:body use="literal" />
- </input>
- <output>
- <soap12:body use="literal" />
- </output>
- </operation>
- </binding>
- <binding name="WebService1HttpGet" type="s0:WebService1HttpGet">
- <http:binding verb="GET" />
- <operation name="hello">
- <http:operation location="/hello" />
- <input>
- <http:urlEncoded />
- </input>
- <output>
- <mime:mimeXml part="Body" />
- </output>
- </operation>
- <operation name="oneObject">
- <http:operation location="/oneObject" />
- <input>
- <http:urlEncoded />
- </input>
- <output>
- <mime:mimeXml part="Body" />
- </output>
- </operation>
- <operation name="manyObjects">
- <http:operation location="/manyObjects" />
- <input>
- <http:urlEncoded />
- </input>
- <output>
- <mime:mimeXml part="Body" />
- </output>
- </operation>
- </binding>
- <binding name="WebService1HttpPost" type="s0:WebService1HttpPost">
- <http:binding verb="POST" />
- <operation name="hello">
- <http:operation location="/hello" />
- <input>
- <mime:content type="application/x-www-form-urlencoded" />
- </input>
- <output>
- <mime:mimeXml part="Body" />
- </output>
- </operation>
- <operation name="oneObject">
- <http:operation location="/oneObject" />
- <input>
- <mime:content type="application/x-www-form-urlencoded" />
- </input>
- <output>
- <mime:mimeXml part="Body" />
- </output>
- </operation>
- <operation name="manyObjects">
- <http:operation location="/manyObjects" />
- <input>
- <mime:content type="application/x-www-form-urlencoded" />
- </input>
- <output>
- <mime:mimeXml part="Body" />
- </output>
- </operation>
- </binding>
- <service name="WebService1">
- <port name="WebService1Soap" binding="s0:WebService1Soap">
- <soap:address location="http://sakhnov:8080/WebService1.asmx" />
- </port>
- <port name="WebService1Soap12" binding="s0:WebService1Soap12">
- <soap12:address location="http://sakhnov:8080/WebService1.asmx" />
- </port>
- <port name="WebService1HttpGet" binding="s0:WebService1HttpGet">
- <http:address location="http://sakhnov:8080/WebService1.asmx" />
- </port>
- <port name="WebService1HttpPost" binding="s0:WebService1HttpPost">
- <http:address location="http://sakhnov:8080/WebService1.asmx" />
- </port>
- </service>
- </definitions>
Advertisement
Add Comment
Please, Sign In to add comment