Exemple de base
Service web minimaliste : Echo proposant une opération echo
Echo.wsdl
1<?xml version="1.0" encoding="UTF-8"?>
2<wsdl:definitions
3targetNamespace="http://localhost:8080/axis/services/Echo"
4xmlns="http://schemas.xmlsoap.org/wsdl/"
5xmlns:apachesoap="http://xml.apache.org/xml-soap"
6xmlns:impl="http://localhost:8080/axis/services/Echo"
7xmlns:intf="http://localhost:8080/axis/services/Echo"
8xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
9xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
10 xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/"
11 xmlns:xsd="http://www.w3.org/2001/XMLSchema">
12 <wsdl:message name="echoResponse">
13 <wsdl:part name="echoReturn" type="xsd:string"/>
14 </wsdl:message>
15 <wsdl:message name="echoRequest">
16 <wsdl:part name="in0" type="xsd:string"/>
17 </wsdl:message>
18 <wsdl:portType name="Echo">
19 <wsdl:operation name="echo" parameterOrder="in0">
20 <wsdl:input message="impl:echoRequest" name="echoRequest"/>
21 <wsdl:output message="impl:echoResponse" name="echoResponse"/>
22 </wsdl:operation>
23 </wsdl:portType>
Services Web – SOAP en Java – p.5/71