<?xml version="1.0"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="localhost" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" name="PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotations" targetNamespace="localhost">
<types>
<xsd:schema targetNamespace="localhost">
<xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
</xsd:schema>
</types>
<portType name="PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotationsPort">
<operation name="add">
<documentation>Adds two numbers.</documentation>
<input message="tns:addIn"/>
<output message="tns:addOut"/>
</operation>
</portType>
<binding name="PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotationsBinding" type="tns:PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotationsPort">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="add">
<soap:operation soapAction="localhost#add"/>
<input>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="localhost"/>
</input>
<output>
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="localhost"/>
</output>
</operation>
</binding>
<message name="addIn">
<part name="p1" type="xsd:float"/>
<part name="p2" type="xsd:float"/>
</message>
<message name="addOut">
<part name="return" type="xsd:float"/>
</message>
<service name="PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotationsService">
<port name="PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotationsPort" binding="tns:PHP2WSDL.Test.Fixtures.TestSimpleClassWithSoapTagAnnotationsBinding">
<soap:address location="localhost"/>
</port>
</service>
</definitions>
|