blob: 1e27996e258708d855c2d55b21cf727bf04fe353 [file] [log] [blame]
Davanum Srinivasd63f72d2003-01-03 14:23:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<definitions
3 xmlns="http://schemas.xmlsoap.org/wsdl/"
4 targetNamespace="http://wdls.error/OperationWithUndefinedMessage"
5 xmlns:tns="http://wdls.error/OperationWithUndefinedMessage"
6 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
7 xmlns:xsd="http://www.w3.org/2000/10/XMLSchema"
8>
9
10
11 <message name="CityTemperatureForecastRequest">
12 <part name="body" type="xsd:string" />
13 </message>
14
15
16 <message name="CityTemperatureForecastResponse">
17 <part name="body" type="xsd:float" />
18 </message>
19
20 <message name="NoSuchCity">
21 <part name="body" type="xsd:string" />
22 </message>
23
24
25 <portType name="CityTemperatureForecast">
26 <operation name="GetCityTemperatureForecast">
27 <input message="tns:CityTemperatureForecastRequest" />
28 <output message="tns:CityTemperatureForecastResponse" />
29 <fault message="tns:NoSuchCity" />
30 <!-- missing message attribute -->
31 <fault />
32 </operation>
33 </portType>
34
35
36 <binding name="CityTemperatureForecastBinding" type="tns:CityTemperatureForecast">
37 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
38 <operation name="GetCityTemperatureForecast">
39 <soap:operation/>
40 <input>
41 <soap:body use="encoded"
42 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
43 </input>
44 <output>
45 <soap:body use="encoded"
46 encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
47 </output>
48 </operation>>
49 </binding>
50
51
52 <service name="WeatherForecastService">
53 <port name="CityTemperatureForecast" binding="tns:CityTemperatureForecastBinding">
54 <soap:address location="http://localhost:9090/axis/services/WeatherForecastService"/>
55 </port>
56 </service>
57</definitions>