| <?xml version="1.0" ?> |
| |
| <definitions name="urn:AddressFetcher" |
| targetNamespace="urn:AddressFetcher2" |
| xmlns:tns="urn:AddressFetcher2" |
| xmlns:typens="urn:AddressFetcher2" |
| xmlns:xsd="http://www.w3.org/1999/XMLSchema" |
| xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" |
| xmlns="http://schemas.xmlsoap.org/wsdl/"> |
| |
| <!-- type defs --> |
| <types> |
| <xsd:schema targetNamespace="urn:AddressFetcher2" |
| xmlns:xsd="http://www.w3.org/1999/XMLSchema"> |
| |
| <xsd:include schemaLocation="address/Address.xsd"/> |
| |
| </xsd:schema> |
| </types> |
| |
| <!-- message declns --> |
| <message name="AddEntryRequest"> |
| <part name="name" type="xsd:string"/> |
| <part name="address" type="typens:address"/> |
| </message> |
| |
| <message name="GetAddressFromNameRequest"> |
| <part name="name" type="xsd:string"/> |
| </message> |
| |
| <message name="GetAddressFromNameResponse"> |
| <part name="address" type="typens:address"/> |
| </message> |
| |
| <!-- port type declns --> |
| <portType name="AddressBook"> |
| <operation name="addEntry"> |
| <input message="tns:AddEntryRequest"/> |
| </operation> |
| <operation name="getAddressFromName"> |
| <input message="tns:GetAddressFromNameRequest"/> |
| <output message="tns:GetAddressFromNameResponse"/> |
| </operation> |
| </portType> |
| |
| <!-- binding declns --> |
| <binding name="AddressBookSOAPBinding" type="tns:AddressBook"> |
| <soap:binding style="rpc" |
| transport="http://schemas.xmlsoap.org/soap/http"/> |
| <operation name="addEntry"> |
| <soap:operation soapAction=""/> |
| <input> |
| <soap:body use="encoded" |
| namespace="urn:AddressFetcher2" |
| encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> |
| </input> |
| <output> |
| <soap:body use="encoded" |
| namespace="urn:AddressFetcher2" |
| encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> |
| </output> |
| </operation> |
| <operation name="getAddressFromName"> |
| <soap:operation soapAction=""/> |
| <input> |
| <soap:body use="encoded" |
| namespace="urn:AddressFetcher2" |
| encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> |
| </input> |
| <output> |
| <soap:body use="encoded" |
| namespace="urn:AddressFetcher2" |
| encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> |
| </output> |
| </operation> |
| </binding> |
| |
| <!-- service decln --> |
| <service name="IncludeTest"> |
| <port name="IncludeTest" binding="tns:AddressBookSOAPBinding"> |
| <soap:address location="http://localhost:8080/axis/services/IncludeTest"/> |
| </port> |
| </service> |
| |
| </definitions> |
| |