|
Ant example source code file (HelloWorld.wsdl)
The HelloWorld.wsdl source code<?xml version="1.0" encoding="UTF-8"?> <definitions name="HelloWorld" targetNamespace="http://hello.jaxrpc.samples/" xmlns:tns="http://hello.jaxrpc.samples/" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"> <types /> <message name="sayHello"> <part name="String_1" type="xsd:string" /> </message> <message name="sayHelloResponse"> <part name="result" type="xsd:string" /> </message> <portType name="Hello"> <operation name="sayHello" parameterOrder="String_1"> <input message="tns:sayHello" /> <output message="tns:sayHelloResponse" /> </operation> </portType> <binding name="HelloBinding" type="tns:Hello"> <operation name="sayHello"> <input> <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://hello.jaxrpc.samples/" /> </input> <output> <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" use="encoded" namespace="http://hello.jaxrpc.samples/" /> </output> <soap:operation soapAction="" /> </operation> <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" /> </binding> <service name="HelloWorld"> <port name="HelloPort" binding="tns:HelloBinding"> <soap:address location="http://localhost:8080/axis/Hello" /> </port> </service> </definitions> Other Ant examples (source code examples)Here is a short list of links related to this Ant HelloWorld.wsdl source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.