git-cpan-module: SOAP-WSDL git-cpan-version: 2.00_29 git-cpan-authorid: MKUTTER git-cpan-file: authors/id/M/MK/MKUTTER/SOAP-WSDL-2.00_29.tar.gz
60 lines
2.0 KiB
XML
60 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<wsdl:definitions name="WSDL_1"
|
|
targetNamespace="http://www.example.org/WSDL_1/"
|
|
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
|
xmlns:tns="http://www.example.org/WSDL_1/"
|
|
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
|
|
<wsdl:types>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
|
targetNamespace="http://www.example.org/WSDL_1/">
|
|
<xsd:element name="NewOperation">
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:element name="in" type="xsd:string"></xsd:element>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
<xsd:element name="NewOperationResponse">
|
|
<xsd:complexType>
|
|
<xsd:sequence>
|
|
<xsd:element name="out" type="xsd:string"></xsd:element>
|
|
</xsd:sequence>
|
|
</xsd:complexType>
|
|
</xsd:element>
|
|
</xsd:schema>
|
|
</wsdl:types>
|
|
<wsdl:message name="NewOperationRequest">
|
|
<wsdl:part name="parameters" element="tns:NewOperation"></wsdl:part>
|
|
</wsdl:message>
|
|
<wsdl:message name="NewOperationResponse">
|
|
<wsdl:part name="parameters"
|
|
element="tns:NewOperationResponse">
|
|
</wsdl:part>
|
|
</wsdl:message>
|
|
<wsdl:portType name="NewPortType">
|
|
<wsdl:operation name="NewOperation">
|
|
<wsdl:input message="tns:NewOperationRequest"></wsdl:input>
|
|
<wsdl:output message="tns:NewOperationResponse"></wsdl:output>
|
|
</wsdl:operation>
|
|
</wsdl:portType>
|
|
<wsdl:binding name="NewBinding" type="tns:NewPortType">
|
|
<soap:binding style="document"
|
|
transport="http://schemas.xmlsoap.org/soap/http" />
|
|
<wsdl:operation name="NewOperation">
|
|
<soap:operation
|
|
soapAction="http://www.example.org/WSDL_1/NewOperation" />
|
|
<wsdl:input>
|
|
<soap:body use="literal" />
|
|
</wsdl:input>
|
|
<wsdl:output>
|
|
<soap:body use="literal" />
|
|
</wsdl:output>
|
|
</wsdl:operation>
|
|
</wsdl:binding>
|
|
<wsdl:service name="NewService">
|
|
<wsdl:port name="NewPort" binding="tns:BadBinding">
|
|
<soap:address location="http://www.example.org/"></soap:address>
|
|
</wsdl:port>
|
|
</wsdl:service>
|
|
</wsdl:definitions> |