sekken 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.travis.yml +11 -0
- data/.yardopts +6 -0
- data/CONTRIBUTING.md +46 -0
- data/Gemfile +27 -0
- data/MIT-LICENSE +20 -0
- data/README.md +28 -0
- data/Rakefile +21 -0
- data/donate.png +0 -0
- data/lib/sekken.rb +75 -0
- data/lib/sekken/envelope.rb +92 -0
- data/lib/sekken/errors.rb +9 -0
- data/lib/sekken/example_message.rb +41 -0
- data/lib/sekken/httpclient.rb +35 -0
- data/lib/sekken/importer.rb +77 -0
- data/lib/sekken/message.rb +135 -0
- data/lib/sekken/operation.rb +100 -0
- data/lib/sekken/resolver.rb +20 -0
- data/lib/sekken/response.rb +50 -0
- data/lib/sekken/version.rb +5 -0
- data/lib/sekken/wsdl.rb +86 -0
- data/lib/sekken/wsdl/binding.rb +64 -0
- data/lib/sekken/wsdl/binding_operation.rb +85 -0
- data/lib/sekken/wsdl/document.rb +83 -0
- data/lib/sekken/wsdl/document_collection.rb +61 -0
- data/lib/sekken/wsdl/input_output.rb +84 -0
- data/lib/sekken/wsdl/message.rb +38 -0
- data/lib/sekken/wsdl/operation.rb +47 -0
- data/lib/sekken/wsdl/port.rb +29 -0
- data/lib/sekken/wsdl/port_type.rb +38 -0
- data/lib/sekken/wsdl/port_type_operation.rb +42 -0
- data/lib/sekken/wsdl/service.rb +55 -0
- data/lib/sekken/xml/attribute.rb +13 -0
- data/lib/sekken/xml/element.rb +82 -0
- data/lib/sekken/xml/element_builder.rb +220 -0
- data/lib/sekken/xs/schema.rb +57 -0
- data/lib/sekken/xs/schema_collection.rb +49 -0
- data/lib/sekken/xs/types.rb +272 -0
- data/sekken.gemspec +42 -0
- data/spec/fixtures/response/another_soap_fault.xml +14 -0
- data/spec/fixtures/response/authentication.xml +14 -0
- data/spec/fixtures/response/header.xml +13 -0
- data/spec/fixtures/response/list.xml +18 -0
- data/spec/fixtures/response/multi_ref.xml +39 -0
- data/spec/fixtures/response/soap_fault.xml +8 -0
- data/spec/fixtures/response/soap_fault12.xml +18 -0
- data/spec/fixtures/response/taxcloud.xml +1 -0
- data/spec/fixtures/wsdl/amazon.wsdl +1920 -0
- data/spec/fixtures/wsdl/arrays_with_attributes.wsdl +117 -0
- data/spec/fixtures/wsdl/authentication.wsdl +63 -0
- data/spec/fixtures/wsdl/awse.wsdl +1510 -0
- data/spec/fixtures/wsdl/betfair.wsdl +2981 -0
- data/spec/fixtures/wsdl/blz_service.wsdl +88 -0
- data/spec/fixtures/wsdl/bookt/bookt.wsdl +11 -0
- data/spec/fixtures/wsdl/bookt/bookt0.xsd +433 -0
- data/spec/fixtures/wsdl/bookt/bookt1.xsd +42 -0
- data/spec/fixtures/wsdl/bookt/bookt10.xsd +38 -0
- data/spec/fixtures/wsdl/bookt/bookt11.xsd +17 -0
- data/spec/fixtures/wsdl/bookt/bookt12.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt13.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt14.xsd +27 -0
- data/spec/fixtures/wsdl/bookt/bookt15.xsd +28 -0
- data/spec/fixtures/wsdl/bookt/bookt2.wsdl +243 -0
- data/spec/fixtures/wsdl/bookt/bookt2.xsd +81 -0
- data/spec/fixtures/wsdl/bookt/bookt3.wsdl +286 -0
- data/spec/fixtures/wsdl/bookt/bookt3.xsd +61 -0
- data/spec/fixtures/wsdl/bookt/bookt4.xsd +35 -0
- data/spec/fixtures/wsdl/bookt/bookt5.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt6.xsd +26 -0
- data/spec/fixtures/wsdl/bookt/bookt7.xsd +18 -0
- data/spec/fixtures/wsdl/bookt/bookt8.xsd +22 -0
- data/spec/fixtures/wsdl/bookt/bookt9.xsd +29 -0
- data/spec/fixtures/wsdl/bronto.wsdl +3285 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange.wsdl +104 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange0.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange1.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.wsdl +119 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange2.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange3.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange4.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange5.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange6.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange7.xsd +1 -0
- data/spec/fixtures/wsdl/bydexchange/bydexchange8.xsd +1 -0
- data/spec/fixtures/wsdl/crowd.wsdl +2437 -0
- data/spec/fixtures/wsdl/data_exchange.wsdl +98 -0
- data/spec/fixtures/wsdl/document_literal_wrapped.wsdl +153 -0
- data/spec/fixtures/wsdl/economic.wsdl +65660 -0
- data/spec/fixtures/wsdl/edialog.wsdl +13148 -0
- data/spec/fixtures/wsdl/email_verification.wsdl +394 -0
- data/spec/fixtures/wsdl/equifax.wsdl +794 -0
- data/spec/fixtures/wsdl/geotrust.wsdl +156 -0
- data/spec/fixtures/wsdl/interhome.wsdl +2137 -0
- data/spec/fixtures/wsdl/iws.wsdl +695 -0
- data/spec/fixtures/wsdl/jetairways.wsdl +156 -0
- data/spec/fixtures/wsdl/jira.wsdl +3890 -0
- data/spec/fixtures/wsdl/juniper.wsdl +215 -0
- data/spec/fixtures/wsdl/namespaced_actions.wsdl +307 -0
- data/spec/fixtures/wsdl/oracle.wsdl +3629 -0
- data/spec/fixtures/wsdl/ratp.wsdl +955 -0
- data/spec/fixtures/wsdl/rio2/rio2.wsdl +74 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.wsdl +55 -0
- data/spec/fixtures/wsdl/rio2/rio2_0.xsd +58 -0
- data/spec/fixtures/wsdl/rio2/rio2_1.xsd +41 -0
- data/spec/fixtures/wsdl/rio2/rio2_2.xsd +222 -0
- data/spec/fixtures/wsdl/rio2/rio2_3.xsd +10 -0
- data/spec/fixtures/wsdl/rpc_literal.wsdl +105 -0
- data/spec/fixtures/wsdl/spyne.wsdl +70 -0
- data/spec/fixtures/wsdl/stockquote.wsdl +124 -0
- data/spec/fixtures/wsdl/taxcloud.wsdl +934 -0
- data/spec/fixtures/wsdl/team_software/team_software.wsdl +542 -0
- data/spec/fixtures/wsdl/team_software/team_software0.xsd +448 -0
- data/spec/fixtures/wsdl/team_software/team_software1.xsd +41 -0
- data/spec/fixtures/wsdl/team_software/team_software2.xsd +258 -0
- data/spec/fixtures/wsdl/team_software/team_software3.xsd +14 -0
- data/spec/fixtures/wsdl/telefonkatalogen.wsdl +45 -0
- data/spec/fixtures/wsdl/temperature.wsdl +136 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth.wsdl +157 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth1.xsd +210 -0
- data/spec/fixtures/wsdl/wasmuth/wasmuth2.xsd +549 -0
- data/spec/fixtures/wsdl/xignite.wsdl +3470 -0
- data/spec/fixtures/wsdl/yahoo.wsdl +2425 -0
- data/spec/fixtures/wsdl/zanox_export_service.xml +520 -0
- data/spec/integration/amazon_spec.rb +51 -0
- data/spec/integration/authentication_spec.rb +38 -0
- data/spec/integration/awse_spec.rb +95 -0
- data/spec/integration/betfair_spec.rb +179 -0
- data/spec/integration/blz_service_spec.rb +46 -0
- data/spec/integration/bookt_spec.rb +59 -0
- data/spec/integration/bronto_spec.rb +178 -0
- data/spec/integration/bydexchange_spec.rb +40 -0
- data/spec/integration/crowd_spec.rb +44 -0
- data/spec/integration/data_exchange_spec.rb +27 -0
- data/spec/integration/document_literal_spec.rb +104 -0
- data/spec/integration/economic_spec.rb +64 -0
- data/spec/integration/email_verification_spec.rb +82 -0
- data/spec/integration/equifax_spec.rb +216 -0
- data/spec/integration/geotrust_spec.rb +17 -0
- data/spec/integration/interhome_spec.rb +156 -0
- data/spec/integration/iws_spec.rb +27 -0
- data/spec/integration/jetairways_spec.rb +142 -0
- data/spec/integration/jira_spec.rb +27 -0
- data/spec/integration/juniper_spec.rb +20 -0
- data/spec/integration/namespaced_actions_spec.rb +37 -0
- data/spec/integration/oracle_spec.rb +61 -0
- data/spec/integration/ratp_spec.rb +178 -0
- data/spec/integration/rio2_spec.rb +56 -0
- data/spec/integration/rpc_literal_spec.rb +101 -0
- data/spec/integration/spyne_spec.rb +60 -0
- data/spec/integration/stockquote_spec.rb +46 -0
- data/spec/integration/taxcloud_spec.rb +45 -0
- data/spec/integration/team_software_spec.rb +51 -0
- data/spec/integration/telefonkatalogen_spec.rb +42 -0
- data/spec/integration/temperature_spec.rb +71 -0
- data/spec/integration/wasmuth_spec.rb +47 -0
- data/spec/integration/xignite_spec.rb +112 -0
- data/spec/integration/yahoo_spec.rb +116 -0
- data/spec/sekken/httpclient_spec.rb +41 -0
- data/spec/sekken/operation/build_spec.rb +308 -0
- data/spec/sekken/operation/document_literal_spec.rb +53 -0
- data/spec/sekken/operation/example_body_spec.rb +95 -0
- data/spec/sekken/operation/rpc_literal_spec.rb +50 -0
- data/spec/sekken/operation_spec.rb +169 -0
- data/spec/sekken/resolver_spec.rb +38 -0
- data/spec/sekken/response_spec.rb +17 -0
- data/spec/sekken/wsdl/document_spec.rb +191 -0
- data/spec/sekken/wsdl_spec.rb +46 -0
- data/spec/sekken/xs/complex_type_spec.rb +197 -0
- data/spec/sekken/xs/element_spec.rb +82 -0
- data/spec/sekken/xs/simple_type_spec.rb +39 -0
- data/spec/sekken_spec.rb +128 -0
- data/spec/spec_helper.rb +37 -0
- data/spec/support/fixture.rb +19 -0
- data/spec/support/http_mock.rb +43 -0
- metadata +344 -0
@@ -0,0 +1,955 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- http://www.ratp.fr/wsiv/services/Wsiv?wsdl -->
|
3
|
+
<wsdl:definitions targetNamespace="http://wsiv.ratp.fr" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:ns0="http://wsiv.ratp.fr/xsd" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:ns1="http://wsiv.ratp.fr" xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
|
4
|
+
<wsdl:documentation>
|
5
|
+
RATP : Web Service Information Voyageur
|
6
|
+
</wsdl:documentation>
|
7
|
+
<wsdl:types>
|
8
|
+
<xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://wsiv.ratp.fr/xsd" xmlns:ax21="http://wsiv.ratp.fr/xsd">
|
9
|
+
<xs:complexType name="GeoPoint">
|
10
|
+
<xs:sequence>
|
11
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
12
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
13
|
+
<xs:element minOccurs="0" name="nameSuffix" nillable="true" type="xs:string"/>
|
14
|
+
<xs:element minOccurs="0" name="type" nillable="true" type="xs:string"/>
|
15
|
+
<xs:element minOccurs="0" name="x" type="xs:double"/>
|
16
|
+
<xs:element minOccurs="0" name="y" type="xs:double"/>
|
17
|
+
</xs:sequence>
|
18
|
+
</xs:complexType>
|
19
|
+
<xs:complexType name="Line">
|
20
|
+
<xs:sequence>
|
21
|
+
<xs:element minOccurs="0" name="code" nillable="true" type="xs:string"/>
|
22
|
+
<xs:element minOccurs="0" name="codeStif" nillable="true" type="xs:string"/>
|
23
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
24
|
+
<xs:element minOccurs="0" name="image" nillable="true" type="xs:string"/>
|
25
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
26
|
+
<xs:element minOccurs="0" name="realm" nillable="true" type="xs:string"/>
|
27
|
+
<xs:element minOccurs="0" name="reseau" nillable="true" type="ax21:Reseau"/>
|
28
|
+
</xs:sequence>
|
29
|
+
</xs:complexType>
|
30
|
+
<xs:complexType name="Reseau">
|
31
|
+
<xs:sequence>
|
32
|
+
<xs:element minOccurs="0" name="code" nillable="true" type="xs:string"/>
|
33
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
34
|
+
<xs:element minOccurs="0" name="image" nillable="true" type="xs:string"/>
|
35
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
36
|
+
</xs:sequence>
|
37
|
+
</xs:complexType>
|
38
|
+
<xs:complexType name="WrDirections">
|
39
|
+
<xs:sequence>
|
40
|
+
<xs:element minOccurs="0" name="ambiguityMessage" nillable="true" type="xs:string"/>
|
41
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousLines" nillable="true" type="ax21:Line"/>
|
42
|
+
<xs:element minOccurs="0" name="argumentLine" nillable="true" type="ax21:Line"/>
|
43
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="directions" nillable="true" type="ax21:Direction"/>
|
44
|
+
</xs:sequence>
|
45
|
+
</xs:complexType>
|
46
|
+
<xs:complexType name="Direction">
|
47
|
+
<xs:sequence>
|
48
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ax21:Line"/>
|
49
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
50
|
+
<xs:element minOccurs="0" name="sens" nillable="true" type="xs:string"/>
|
51
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stationsEndLine" nillable="true" type="ax21:Station"/>
|
52
|
+
</xs:sequence>
|
53
|
+
</xs:complexType>
|
54
|
+
<xs:complexType name="Station">
|
55
|
+
<xs:sequence>
|
56
|
+
<xs:element minOccurs="0" name="direction" nillable="true" type="ax21:Direction"/>
|
57
|
+
<xs:element minOccurs="0" name="geoPointA" nillable="true" type="ax21:GeoPoint"/>
|
58
|
+
<xs:element minOccurs="0" name="geoPointR" nillable="true" type="ax21:GeoPoint"/>
|
59
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
60
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="idsNextA" nillable="true" type="xs:string"/>
|
61
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="idsNextR" nillable="true" type="xs:string"/>
|
62
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ax21:Line"/>
|
63
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
64
|
+
<xs:element minOccurs="0" name="stationArea" nillable="true" type="ax21:StationArea"/>
|
65
|
+
</xs:sequence>
|
66
|
+
</xs:complexType>
|
67
|
+
<xs:complexType name="StationArea">
|
68
|
+
<xs:sequence>
|
69
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="access" nillable="true" type="ax21:StationAcces"/>
|
70
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
71
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
72
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stations" nillable="true" type="ax21:Station"/>
|
73
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="tarifsToParis" nillable="true" type="ax21:Tarif"/>
|
74
|
+
<xs:element minOccurs="0" name="zoneCarteOrange" nillable="true" type="xs:string"/>
|
75
|
+
</xs:sequence>
|
76
|
+
</xs:complexType>
|
77
|
+
<xs:complexType name="StationAcces">
|
78
|
+
<xs:sequence>
|
79
|
+
<xs:element minOccurs="0" name="address" nillable="true" type="xs:string"/>
|
80
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
81
|
+
<xs:element minOccurs="0" name="index" nillable="true" type="xs:string"/>
|
82
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
83
|
+
<xs:element minOccurs="0" name="timeDaysLabel" nillable="true" type="xs:string"/>
|
84
|
+
<xs:element minOccurs="0" name="timeDaysStatus" nillable="true" type="xs:string"/>
|
85
|
+
<xs:element minOccurs="0" name="timeEnd" nillable="true" type="xs:string"/>
|
86
|
+
<xs:element minOccurs="0" name="timeStart" nillable="true" type="xs:string"/>
|
87
|
+
<xs:element minOccurs="0" name="x" type="xs:double"/>
|
88
|
+
<xs:element minOccurs="0" name="y" type="xs:double"/>
|
89
|
+
</xs:sequence>
|
90
|
+
</xs:complexType>
|
91
|
+
<xs:complexType name="Tarif">
|
92
|
+
<xs:sequence>
|
93
|
+
<xs:element minOccurs="0" name="demiTarif" type="xs:float"/>
|
94
|
+
<xs:element minOccurs="0" name="pleinTarif" type="xs:float"/>
|
95
|
+
<xs:element minOccurs="0" name="viaLine" nillable="true" type="ax21:Line"/>
|
96
|
+
<xs:element minOccurs="0" name="viaReseau" nillable="true" type="ax21:Reseau"/>
|
97
|
+
</xs:sequence>
|
98
|
+
</xs:complexType>
|
99
|
+
<xs:complexType name="WrItineraries">
|
100
|
+
<xs:sequence>
|
101
|
+
<xs:element minOccurs="0" name="ambiguityMessage" nillable="true" type="xs:string"/>
|
102
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousGeoPointsEnd" nillable="true" type="ax21:GeoPoint"/>
|
103
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousGeoPointsStart" nillable="true" type="ax21:GeoPoint"/>
|
104
|
+
<xs:element minOccurs="0" name="argumentDate" nillable="true" type="xs:string"/>
|
105
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="itineraries" nillable="true" type="ax21:Itinerary"/>
|
106
|
+
</xs:sequence>
|
107
|
+
</xs:complexType>
|
108
|
+
<xs:complexType name="Itinerary">
|
109
|
+
<xs:sequence>
|
110
|
+
<xs:element minOccurs="0" name="dateEnd" nillable="true" type="xs:string"/>
|
111
|
+
<xs:element minOccurs="0" name="dateStart" nillable="true" type="xs:string"/>
|
112
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="durationsTransit" nillable="true" type="xs:int"/>
|
113
|
+
<xs:element minOccurs="0" name="geoPointEnd" nillable="true" type="ax21:GeoPoint"/>
|
114
|
+
<xs:element minOccurs="0" name="geoPointStart" nillable="true" type="ax21:GeoPoint"/>
|
115
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="missions" nillable="true" type="ax21:Mission"/>
|
116
|
+
<xs:element minOccurs="0" name="tarif" nillable="true" type="ax21:Tarif"/>
|
117
|
+
</xs:sequence>
|
118
|
+
</xs:complexType>
|
119
|
+
<xs:complexType name="Mission">
|
120
|
+
<xs:sequence>
|
121
|
+
<xs:element minOccurs="0" name="code" nillable="true" type="xs:string"/>
|
122
|
+
<xs:element minOccurs="0" name="direction" nillable="true" type="ax21:Direction"/>
|
123
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
124
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ax21:Line"/>
|
125
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="perturbations" nillable="true" type="ax21:Perturbation"/>
|
126
|
+
<xs:element minOccurs="0" name="stationEndLine" nillable="true" type="ax21:Station"/>
|
127
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stations" nillable="true" type="ax21:Station"/>
|
128
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stationsDates" nillable="true" type="xs:string"/>
|
129
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stationsMessages" nillable="true" type="xs:string"/>
|
130
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stationsPlatforms" nillable="true" type="xs:string"/>
|
131
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stationsStops" nillable="true" type="xs:boolean"/>
|
132
|
+
</xs:sequence>
|
133
|
+
</xs:complexType>
|
134
|
+
<xs:complexType name="Perturbation">
|
135
|
+
<xs:sequence>
|
136
|
+
<xs:element minOccurs="0" name="cause" nillable="true" type="ax21:PerturbationCause"/>
|
137
|
+
<xs:element minOccurs="0" name="consequence" nillable="true" type="ax21:PerturbationConsequence"/>
|
138
|
+
<xs:element minOccurs="0" name="dateEnd" nillable="true" type="xs:string"/>
|
139
|
+
<xs:element minOccurs="0" name="dateStart" nillable="true" type="xs:string"/>
|
140
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
141
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="incidents" nillable="true" type="ax21:PerturbationIncident"/>
|
142
|
+
<xs:element minOccurs="0" name="level" nillable="true" type="xs:string"/>
|
143
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ax21:Line"/>
|
144
|
+
<xs:element minOccurs="0" name="media" nillable="true" type="xs:string"/>
|
145
|
+
<xs:element minOccurs="0" name="message" nillable="true" type="ax21:PerturbationMessage"/>
|
146
|
+
<xs:element minOccurs="0" name="source" nillable="true" type="xs:string"/>
|
147
|
+
<xs:element minOccurs="0" name="station" nillable="true" type="ax21:Station"/>
|
148
|
+
<xs:element minOccurs="0" name="status" nillable="true" type="xs:string"/>
|
149
|
+
<xs:element minOccurs="0" name="timeEnd" nillable="true" type="xs:string"/>
|
150
|
+
<xs:element minOccurs="0" name="timeStart" nillable="true" type="xs:string"/>
|
151
|
+
<xs:element minOccurs="0" name="title" nillable="true" type="xs:string"/>
|
152
|
+
</xs:sequence>
|
153
|
+
</xs:complexType>
|
154
|
+
<xs:complexType name="PerturbationCause">
|
155
|
+
<xs:sequence>
|
156
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
157
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
158
|
+
<xs:element minOccurs="0" name="parentId" nillable="true" type="xs:string"/>
|
159
|
+
<xs:element minOccurs="0" name="parentName" nillable="true" type="xs:string"/>
|
160
|
+
</xs:sequence>
|
161
|
+
</xs:complexType>
|
162
|
+
<xs:complexType name="PerturbationConsequence">
|
163
|
+
<xs:sequence>
|
164
|
+
<xs:element minOccurs="0" name="code" nillable="true" type="xs:string"/>
|
165
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
166
|
+
<xs:element minOccurs="0" name="level" nillable="true" type="xs:string"/>
|
167
|
+
<xs:element minOccurs="0" name="name" nillable="true" type="xs:string"/>
|
168
|
+
</xs:sequence>
|
169
|
+
</xs:complexType>
|
170
|
+
<xs:complexType name="PerturbationIncident">
|
171
|
+
<xs:sequence>
|
172
|
+
<xs:element minOccurs="0" name="date" nillable="true" type="xs:string"/>
|
173
|
+
<xs:element minOccurs="0" name="id" nillable="true" type="xs:string"/>
|
174
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="incidentLines" nillable="true" type="ax21:PerturbationIncidentLine"/>
|
175
|
+
<xs:element minOccurs="0" name="messageGlobal" nillable="true" type="ax21:PerturbationMessage"/>
|
176
|
+
<xs:element minOccurs="0" name="status" nillable="true" type="xs:string"/>
|
177
|
+
</xs:sequence>
|
178
|
+
</xs:complexType>
|
179
|
+
<xs:complexType name="PerturbationIncidentLine">
|
180
|
+
<xs:sequence>
|
181
|
+
<xs:element minOccurs="0" name="consequence" nillable="true" type="ax21:PerturbationConsequence"/>
|
182
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ax21:Line"/>
|
183
|
+
<xs:element minOccurs="0" name="messageLarge" nillable="true" type="ax21:PerturbationMessage"/>
|
184
|
+
<xs:element minOccurs="0" name="messageMedium" nillable="true" type="ax21:PerturbationMessage"/>
|
185
|
+
<xs:element minOccurs="0" name="messageShort" nillable="true" type="ax21:PerturbationMessage"/>
|
186
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stations" nillable="true" type="ax21:Station"/>
|
187
|
+
</xs:sequence>
|
188
|
+
</xs:complexType>
|
189
|
+
<xs:complexType name="PerturbationMessage">
|
190
|
+
<xs:sequence>
|
191
|
+
<xs:element minOccurs="0" name="mediaSpecific" type="xs:boolean"/>
|
192
|
+
<xs:element minOccurs="0" name="text" nillable="true" type="xs:string"/>
|
193
|
+
<xs:element minOccurs="0" name="type" nillable="true" type="xs:string"/>
|
194
|
+
<xs:element minOccurs="0" name="updated" type="xs:boolean"/>
|
195
|
+
</xs:sequence>
|
196
|
+
</xs:complexType>
|
197
|
+
<xs:complexType name="WrMission">
|
198
|
+
<xs:sequence>
|
199
|
+
<xs:element minOccurs="0" name="ambiguityMessage" nillable="true" type="xs:string"/>
|
200
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousLines" nillable="true" type="ax21:Line"/>
|
201
|
+
<xs:element minOccurs="0" name="argumentDate" nillable="true" type="xs:string"/>
|
202
|
+
<xs:element minOccurs="0" name="argumentLine" nillable="true" type="ax21:Line"/>
|
203
|
+
<xs:element minOccurs="0" name="mission" nillable="true" type="ax21:Mission"/>
|
204
|
+
</xs:sequence>
|
205
|
+
</xs:complexType>
|
206
|
+
<xs:complexType name="WrMissions">
|
207
|
+
<xs:sequence>
|
208
|
+
<xs:element minOccurs="0" name="ambiguityMessage" nillable="true" type="xs:string"/>
|
209
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousDirections" nillable="true" type="ax21:Direction"/>
|
210
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousLines" nillable="true" type="ax21:Line"/>
|
211
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousStations" nillable="true" type="ax21:Station"/>
|
212
|
+
<xs:element minOccurs="0" name="argumentDate" nillable="true" type="xs:string"/>
|
213
|
+
<xs:element minOccurs="0" name="argumentDirection" nillable="true" type="ax21:Direction"/>
|
214
|
+
<xs:element minOccurs="0" name="argumentLine" nillable="true" type="ax21:Line"/>
|
215
|
+
<xs:element minOccurs="0" name="argumentStation" nillable="true" type="ax21:Station"/>
|
216
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="missions" nillable="true" type="ax21:Mission"/>
|
217
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="perturbations" nillable="true" type="ax21:Perturbation"/>
|
218
|
+
</xs:sequence>
|
219
|
+
</xs:complexType>
|
220
|
+
<xs:complexType name="WrPerturbations">
|
221
|
+
<xs:sequence>
|
222
|
+
<xs:element minOccurs="0" name="argumentMedia" nillable="true" type="xs:string"/>
|
223
|
+
<xs:element minOccurs="0" name="argumentSource" nillable="true" type="xs:string"/>
|
224
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="perturbations" nillable="true" type="ax21:Perturbation"/>
|
225
|
+
</xs:sequence>
|
226
|
+
</xs:complexType>
|
227
|
+
<xs:complexType name="WrStationAreas">
|
228
|
+
<xs:sequence>
|
229
|
+
<xs:element minOccurs="0" name="ambiguityMessage" nillable="true" type="xs:string"/>
|
230
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousGeoPoints" nillable="true" type="ax21:GeoPoint"/>
|
231
|
+
<xs:element minOccurs="0" name="argumentGeoPoint" nillable="true" type="ax21:GeoPoint"/>
|
232
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="distances" nillable="true" type="xs:int"/>
|
233
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stationAreas" nillable="true" type="ax21:StationArea"/>
|
234
|
+
</xs:sequence>
|
235
|
+
</xs:complexType>
|
236
|
+
<xs:complexType name="WrStations">
|
237
|
+
<xs:sequence>
|
238
|
+
<xs:element minOccurs="0" name="ambiguityMessage" nillable="true" type="xs:string"/>
|
239
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousGeoPoints" nillable="true" type="ax21:GeoPoint"/>
|
240
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="ambiguousLines" nillable="true" type="ax21:Line"/>
|
241
|
+
<xs:element minOccurs="0" name="argumentDirection" nillable="true" type="ax21:Direction"/>
|
242
|
+
<xs:element minOccurs="0" name="argumentGeoPoint" nillable="true" type="ax21:GeoPoint"/>
|
243
|
+
<xs:element minOccurs="0" name="argumentLine" nillable="true" type="ax21:Line"/>
|
244
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="distances" nillable="true" type="xs:int"/>
|
245
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="stations" nillable="true" type="ax21:Station"/>
|
246
|
+
</xs:sequence>
|
247
|
+
</xs:complexType>
|
248
|
+
</xs:schema>
|
249
|
+
<xs:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://wsiv.ratp.fr" xmlns:ns="http://wsiv.ratp.fr">
|
250
|
+
<xs:element name="getGeoPoints">
|
251
|
+
<xs:complexType>
|
252
|
+
<xs:sequence>
|
253
|
+
<xs:element minOccurs="0" name="gp" nillable="true" type="ns0:GeoPoint"/>
|
254
|
+
<xs:element minOccurs="0" name="limit" type="xs:int"/>
|
255
|
+
</xs:sequence>
|
256
|
+
</xs:complexType>
|
257
|
+
</xs:element>
|
258
|
+
<xs:element name="getGeoPointsResponse">
|
259
|
+
<xs:complexType>
|
260
|
+
<xs:sequence>
|
261
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="ns0:GeoPoint"/>
|
262
|
+
</xs:sequence>
|
263
|
+
</xs:complexType>
|
264
|
+
</xs:element>
|
265
|
+
<xs:element name="getLines">
|
266
|
+
<xs:complexType>
|
267
|
+
<xs:sequence>
|
268
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ns0:Line"/>
|
269
|
+
</xs:sequence>
|
270
|
+
</xs:complexType>
|
271
|
+
</xs:element>
|
272
|
+
<xs:element name="getLinesResponse">
|
273
|
+
<xs:complexType>
|
274
|
+
<xs:sequence>
|
275
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="ns0:Line"/>
|
276
|
+
</xs:sequence>
|
277
|
+
</xs:complexType>
|
278
|
+
</xs:element>
|
279
|
+
<xs:element name="getDirections">
|
280
|
+
<xs:complexType>
|
281
|
+
<xs:sequence>
|
282
|
+
<xs:element minOccurs="0" name="line" nillable="true" type="ns0:Line"/>
|
283
|
+
</xs:sequence>
|
284
|
+
</xs:complexType>
|
285
|
+
</xs:element>
|
286
|
+
<xs:element name="getDirectionsResponse">
|
287
|
+
<xs:complexType>
|
288
|
+
<xs:sequence>
|
289
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrDirections"/>
|
290
|
+
</xs:sequence>
|
291
|
+
</xs:complexType>
|
292
|
+
</xs:element>
|
293
|
+
<xs:element name="getItineraries">
|
294
|
+
<xs:complexType>
|
295
|
+
<xs:sequence>
|
296
|
+
<xs:element minOccurs="0" name="gpStart" nillable="true" type="ns0:GeoPoint"/>
|
297
|
+
<xs:element minOccurs="0" name="gpEnd" nillable="true" type="ns0:GeoPoint"/>
|
298
|
+
<xs:element minOccurs="0" name="gpVia" nillable="true" type="ns0:GeoPoint"/>
|
299
|
+
<xs:element minOccurs="0" name="dateStartOrEnd" nillable="true" type="xs:string"/>
|
300
|
+
<xs:element minOccurs="0" name="isDateStart" type="xs:boolean"/>
|
301
|
+
<xs:element minOccurs="0" name="reseauOrGroup" nillable="true" type="xs:string"/>
|
302
|
+
<xs:element minOccurs="0" name="travelType" nillable="true" type="xs:string"/>
|
303
|
+
<xs:element minOccurs="0" name="isDetail" type="xs:boolean"/>
|
304
|
+
</xs:sequence>
|
305
|
+
</xs:complexType>
|
306
|
+
</xs:element>
|
307
|
+
<xs:element name="getItinerariesResponse">
|
308
|
+
<xs:complexType>
|
309
|
+
<xs:sequence>
|
310
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrItineraries"/>
|
311
|
+
</xs:sequence>
|
312
|
+
</xs:complexType>
|
313
|
+
</xs:element>
|
314
|
+
<xs:element name="getMission">
|
315
|
+
<xs:complexType>
|
316
|
+
<xs:sequence>
|
317
|
+
<xs:element minOccurs="0" name="mission" nillable="true" type="ns0:Mission"/>
|
318
|
+
<xs:element minOccurs="0" name="date" nillable="true" type="xs:string"/>
|
319
|
+
<xs:element minOccurs="0" name="stationAll" type="xs:boolean"/>
|
320
|
+
<xs:element minOccurs="0" name="stationSortAlpha" type="xs:boolean"/>
|
321
|
+
</xs:sequence>
|
322
|
+
</xs:complexType>
|
323
|
+
</xs:element>
|
324
|
+
<xs:element name="getMissionResponse">
|
325
|
+
<xs:complexType>
|
326
|
+
<xs:sequence>
|
327
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrMission"/>
|
328
|
+
</xs:sequence>
|
329
|
+
</xs:complexType>
|
330
|
+
</xs:element>
|
331
|
+
<xs:element name="getMissionsFirstLast">
|
332
|
+
<xs:complexType>
|
333
|
+
<xs:sequence>
|
334
|
+
<xs:element minOccurs="0" name="station" nillable="true" type="ns0:Station"/>
|
335
|
+
<xs:element minOccurs="0" name="direction" nillable="true" type="ns0:Direction"/>
|
336
|
+
<xs:element minOccurs="0" name="date" nillable="true" type="xs:string"/>
|
337
|
+
</xs:sequence>
|
338
|
+
</xs:complexType>
|
339
|
+
</xs:element>
|
340
|
+
<xs:element name="getMissionsFirstLastResponse">
|
341
|
+
<xs:complexType>
|
342
|
+
<xs:sequence>
|
343
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrMissions"/>
|
344
|
+
</xs:sequence>
|
345
|
+
</xs:complexType>
|
346
|
+
</xs:element>
|
347
|
+
<xs:element name="getMissionsFrequency">
|
348
|
+
<xs:complexType>
|
349
|
+
<xs:sequence>
|
350
|
+
<xs:element minOccurs="0" name="station" nillable="true" type="ns0:Station"/>
|
351
|
+
<xs:element minOccurs="0" name="direction" nillable="true" type="ns0:Direction"/>
|
352
|
+
<xs:element minOccurs="0" name="stationEndLine" nillable="true" type="ns0:Station"/>
|
353
|
+
<xs:element minOccurs="0" name="stationEnd" nillable="true" type="ns0:Station"/>
|
354
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="datesStart" nillable="true" type="xs:string"/>
|
355
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="datesEnd" nillable="true" type="xs:string"/>
|
356
|
+
</xs:sequence>
|
357
|
+
</xs:complexType>
|
358
|
+
</xs:element>
|
359
|
+
<xs:element name="getMissionsFrequencyResponse">
|
360
|
+
<xs:complexType>
|
361
|
+
<xs:sequence>
|
362
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrMissions"/>
|
363
|
+
</xs:sequence>
|
364
|
+
</xs:complexType>
|
365
|
+
</xs:element>
|
366
|
+
<xs:element name="getMissionsNext">
|
367
|
+
<xs:complexType>
|
368
|
+
<xs:sequence>
|
369
|
+
<xs:element minOccurs="0" name="station" nillable="true" type="ns0:Station"/>
|
370
|
+
<xs:element minOccurs="0" name="direction" nillable="true" type="ns0:Direction"/>
|
371
|
+
<xs:element minOccurs="0" name="dateStart" nillable="true" type="xs:string"/>
|
372
|
+
<xs:element minOccurs="0" name="limit" type="xs:int"/>
|
373
|
+
</xs:sequence>
|
374
|
+
</xs:complexType>
|
375
|
+
</xs:element>
|
376
|
+
<xs:element name="getMissionsNextResponse">
|
377
|
+
<xs:complexType>
|
378
|
+
<xs:sequence>
|
379
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrMissions"/>
|
380
|
+
</xs:sequence>
|
381
|
+
</xs:complexType>
|
382
|
+
</xs:element>
|
383
|
+
<xs:element name="getPerturbations">
|
384
|
+
<xs:complexType>
|
385
|
+
<xs:sequence>
|
386
|
+
<xs:element minOccurs="0" name="perturbation" nillable="true" type="ns0:Perturbation"/>
|
387
|
+
<xs:element minOccurs="0" name="isXmlText" type="xs:boolean"/>
|
388
|
+
</xs:sequence>
|
389
|
+
</xs:complexType>
|
390
|
+
</xs:element>
|
391
|
+
<xs:element name="getPerturbationsResponse">
|
392
|
+
<xs:complexType>
|
393
|
+
<xs:sequence>
|
394
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrPerturbations"/>
|
395
|
+
</xs:sequence>
|
396
|
+
</xs:complexType>
|
397
|
+
</xs:element>
|
398
|
+
<xs:element name="getStationAreas">
|
399
|
+
<xs:complexType>
|
400
|
+
<xs:sequence>
|
401
|
+
<xs:element minOccurs="0" name="stationArea" nillable="true" type="ns0:StationArea"/>
|
402
|
+
<xs:element minOccurs="0" name="gp" nillable="true" type="ns0:GeoPoint"/>
|
403
|
+
<xs:element minOccurs="0" name="distance" type="xs:int"/>
|
404
|
+
<xs:element minOccurs="0" name="limit" type="xs:int"/>
|
405
|
+
<xs:element minOccurs="0" name="sortAlpha" type="xs:boolean"/>
|
406
|
+
</xs:sequence>
|
407
|
+
</xs:complexType>
|
408
|
+
</xs:element>
|
409
|
+
<xs:element name="getStationAreasResponse">
|
410
|
+
<xs:complexType>
|
411
|
+
<xs:sequence>
|
412
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrStationAreas"/>
|
413
|
+
</xs:sequence>
|
414
|
+
</xs:complexType>
|
415
|
+
</xs:element>
|
416
|
+
<xs:element name="getStations">
|
417
|
+
<xs:complexType>
|
418
|
+
<xs:sequence>
|
419
|
+
<xs:element minOccurs="0" name="station" nillable="true" type="ns0:Station"/>
|
420
|
+
<xs:element minOccurs="0" name="gp" nillable="true" type="ns0:GeoPoint"/>
|
421
|
+
<xs:element maxOccurs="unbounded" minOccurs="0" name="distances" type="xs:int"/>
|
422
|
+
<xs:element minOccurs="0" name="limit" type="xs:int"/>
|
423
|
+
<xs:element minOccurs="0" name="sortAlpha" type="xs:boolean"/>
|
424
|
+
</xs:sequence>
|
425
|
+
</xs:complexType>
|
426
|
+
</xs:element>
|
427
|
+
<xs:element name="getStationsResponse">
|
428
|
+
<xs:complexType>
|
429
|
+
<xs:sequence>
|
430
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="ns0:WrStations"/>
|
431
|
+
</xs:sequence>
|
432
|
+
</xs:complexType>
|
433
|
+
</xs:element>
|
434
|
+
<xs:element name="getVersionResponse">
|
435
|
+
<xs:complexType>
|
436
|
+
<xs:sequence>
|
437
|
+
<xs:element minOccurs="0" name="return" nillable="true" type="xs:string"/>
|
438
|
+
</xs:sequence>
|
439
|
+
</xs:complexType>
|
440
|
+
</xs:element>
|
441
|
+
</xs:schema>
|
442
|
+
</wsdl:types>
|
443
|
+
<wsdl:message name="getDirectionsRequest">
|
444
|
+
<wsdl:part name="parameters" element="ns1:getDirections">
|
445
|
+
</wsdl:part>
|
446
|
+
</wsdl:message>
|
447
|
+
<wsdl:message name="getStationsResponse">
|
448
|
+
<wsdl:part name="parameters" element="ns1:getStationsResponse">
|
449
|
+
</wsdl:part>
|
450
|
+
</wsdl:message>
|
451
|
+
<wsdl:message name="getItinerariesRequest">
|
452
|
+
<wsdl:part name="parameters" element="ns1:getItineraries">
|
453
|
+
</wsdl:part>
|
454
|
+
</wsdl:message>
|
455
|
+
<wsdl:message name="getMissionsFrequencyRequest">
|
456
|
+
<wsdl:part name="parameters" element="ns1:getMissionsFrequency">
|
457
|
+
</wsdl:part>
|
458
|
+
</wsdl:message>
|
459
|
+
<wsdl:message name="getGeoPointsRequest">
|
460
|
+
<wsdl:part name="parameters" element="ns1:getGeoPoints">
|
461
|
+
</wsdl:part>
|
462
|
+
</wsdl:message>
|
463
|
+
<wsdl:message name="getMissionRequest">
|
464
|
+
<wsdl:part name="parameters" element="ns1:getMission">
|
465
|
+
</wsdl:part>
|
466
|
+
</wsdl:message>
|
467
|
+
<wsdl:message name="getStationAreasRequest">
|
468
|
+
<wsdl:part name="parameters" element="ns1:getStationAreas">
|
469
|
+
</wsdl:part>
|
470
|
+
</wsdl:message>
|
471
|
+
<wsdl:message name="getStationsRequest">
|
472
|
+
<wsdl:part name="parameters" element="ns1:getStations">
|
473
|
+
</wsdl:part>
|
474
|
+
</wsdl:message>
|
475
|
+
<wsdl:message name="getMissionResponse">
|
476
|
+
<wsdl:part name="parameters" element="ns1:getMissionResponse">
|
477
|
+
</wsdl:part>
|
478
|
+
</wsdl:message>
|
479
|
+
<wsdl:message name="getDirectionsResponse">
|
480
|
+
<wsdl:part name="parameters" element="ns1:getDirectionsResponse">
|
481
|
+
</wsdl:part>
|
482
|
+
</wsdl:message>
|
483
|
+
<wsdl:message name="getMissionsNextResponse">
|
484
|
+
<wsdl:part name="parameters" element="ns1:getMissionsNextResponse">
|
485
|
+
</wsdl:part>
|
486
|
+
</wsdl:message>
|
487
|
+
<wsdl:message name="getStationAreasResponse">
|
488
|
+
<wsdl:part name="parameters" element="ns1:getStationAreasResponse">
|
489
|
+
</wsdl:part>
|
490
|
+
</wsdl:message>
|
491
|
+
<wsdl:message name="getPerturbationsResponse">
|
492
|
+
<wsdl:part name="parameters" element="ns1:getPerturbationsResponse">
|
493
|
+
</wsdl:part>
|
494
|
+
</wsdl:message>
|
495
|
+
<wsdl:message name="getMissionsFirstLastRequest">
|
496
|
+
<wsdl:part name="parameters" element="ns1:getMissionsFirstLast">
|
497
|
+
</wsdl:part>
|
498
|
+
</wsdl:message>
|
499
|
+
<wsdl:message name="getGeoPointsResponse">
|
500
|
+
<wsdl:part name="parameters" element="ns1:getGeoPointsResponse">
|
501
|
+
</wsdl:part>
|
502
|
+
</wsdl:message>
|
503
|
+
<wsdl:message name="getMissionsFrequencyResponse">
|
504
|
+
<wsdl:part name="parameters" element="ns1:getMissionsFrequencyResponse">
|
505
|
+
</wsdl:part>
|
506
|
+
</wsdl:message>
|
507
|
+
<wsdl:message name="getLinesResponse">
|
508
|
+
<wsdl:part name="parameters" element="ns1:getLinesResponse">
|
509
|
+
</wsdl:part>
|
510
|
+
</wsdl:message>
|
511
|
+
<wsdl:message name="getVersionRequest">
|
512
|
+
</wsdl:message>
|
513
|
+
<wsdl:message name="getItinerariesResponse">
|
514
|
+
<wsdl:part name="parameters" element="ns1:getItinerariesResponse">
|
515
|
+
</wsdl:part>
|
516
|
+
</wsdl:message>
|
517
|
+
<wsdl:message name="getPerturbationsRequest">
|
518
|
+
<wsdl:part name="parameters" element="ns1:getPerturbations">
|
519
|
+
</wsdl:part>
|
520
|
+
</wsdl:message>
|
521
|
+
<wsdl:message name="getLinesRequest">
|
522
|
+
<wsdl:part name="parameters" element="ns1:getLines">
|
523
|
+
</wsdl:part>
|
524
|
+
</wsdl:message>
|
525
|
+
<wsdl:message name="getVersionResponse">
|
526
|
+
<wsdl:part name="parameters" element="ns1:getVersionResponse">
|
527
|
+
</wsdl:part>
|
528
|
+
</wsdl:message>
|
529
|
+
<wsdl:message name="getMissionsNextRequest">
|
530
|
+
<wsdl:part name="parameters" element="ns1:getMissionsNext">
|
531
|
+
</wsdl:part>
|
532
|
+
</wsdl:message>
|
533
|
+
<wsdl:message name="getMissionsFirstLastResponse">
|
534
|
+
<wsdl:part name="parameters" element="ns1:getMissionsFirstLastResponse">
|
535
|
+
</wsdl:part>
|
536
|
+
</wsdl:message>
|
537
|
+
<wsdl:portType name="WsivPortType">
|
538
|
+
<wsdl:operation name="getItineraries">
|
539
|
+
<wsdl:input message="ns1:getItinerariesRequest" wsaw:Action="urn:getItineraries">
|
540
|
+
</wsdl:input>
|
541
|
+
<wsdl:output message="ns1:getItinerariesResponse" wsaw:Action="urn:getItinerariesResponse">
|
542
|
+
</wsdl:output>
|
543
|
+
</wsdl:operation>
|
544
|
+
<wsdl:operation name="getMissionsFrequency">
|
545
|
+
<wsdl:input message="ns1:getMissionsFrequencyRequest" wsaw:Action="urn:getMissionsFrequency">
|
546
|
+
</wsdl:input>
|
547
|
+
<wsdl:output message="ns1:getMissionsFrequencyResponse" wsaw:Action="urn:getMissionsFrequencyResponse">
|
548
|
+
</wsdl:output>
|
549
|
+
</wsdl:operation>
|
550
|
+
<wsdl:operation name="getMissionsFirstLast">
|
551
|
+
<wsdl:input message="ns1:getMissionsFirstLastRequest" wsaw:Action="urn:getMissionsFirstLast">
|
552
|
+
</wsdl:input>
|
553
|
+
<wsdl:output message="ns1:getMissionsFirstLastResponse" wsaw:Action="urn:getMissionsFirstLastResponse">
|
554
|
+
</wsdl:output>
|
555
|
+
</wsdl:operation>
|
556
|
+
<wsdl:operation name="getStationAreas">
|
557
|
+
<wsdl:input message="ns1:getStationAreasRequest" wsaw:Action="urn:getStationAreas">
|
558
|
+
</wsdl:input>
|
559
|
+
<wsdl:output message="ns1:getStationAreasResponse" wsaw:Action="urn:getStationAreasResponse">
|
560
|
+
</wsdl:output>
|
561
|
+
</wsdl:operation>
|
562
|
+
<wsdl:operation name="getVersion">
|
563
|
+
<wsdl:input message="ns1:getVersionRequest" wsaw:Action="urn:getVersion">
|
564
|
+
</wsdl:input>
|
565
|
+
<wsdl:output message="ns1:getVersionResponse" wsaw:Action="urn:getVersionResponse">
|
566
|
+
</wsdl:output>
|
567
|
+
</wsdl:operation>
|
568
|
+
<wsdl:operation name="getLines">
|
569
|
+
<wsdl:input message="ns1:getLinesRequest" wsaw:Action="urn:getLines">
|
570
|
+
</wsdl:input>
|
571
|
+
<wsdl:output message="ns1:getLinesResponse" wsaw:Action="urn:getLinesResponse">
|
572
|
+
</wsdl:output>
|
573
|
+
</wsdl:operation>
|
574
|
+
<wsdl:operation name="getStations">
|
575
|
+
<wsdl:input message="ns1:getStationsRequest" wsaw:Action="urn:getStations">
|
576
|
+
</wsdl:input>
|
577
|
+
<wsdl:output message="ns1:getStationsResponse" wsaw:Action="urn:getStationsResponse">
|
578
|
+
</wsdl:output>
|
579
|
+
</wsdl:operation>
|
580
|
+
<wsdl:operation name="getMissionsNext">
|
581
|
+
<wsdl:input message="ns1:getMissionsNextRequest" wsaw:Action="urn:getMissionsNext">
|
582
|
+
</wsdl:input>
|
583
|
+
<wsdl:output message="ns1:getMissionsNextResponse" wsaw:Action="urn:getMissionsNextResponse">
|
584
|
+
</wsdl:output>
|
585
|
+
</wsdl:operation>
|
586
|
+
<wsdl:operation name="getDirections">
|
587
|
+
<wsdl:input message="ns1:getDirectionsRequest" wsaw:Action="urn:getDirections">
|
588
|
+
</wsdl:input>
|
589
|
+
<wsdl:output message="ns1:getDirectionsResponse" wsaw:Action="urn:getDirectionsResponse">
|
590
|
+
</wsdl:output>
|
591
|
+
</wsdl:operation>
|
592
|
+
<wsdl:operation name="getMission">
|
593
|
+
<wsdl:input message="ns1:getMissionRequest" wsaw:Action="urn:getMission">
|
594
|
+
</wsdl:input>
|
595
|
+
<wsdl:output message="ns1:getMissionResponse" wsaw:Action="urn:getMissionResponse">
|
596
|
+
</wsdl:output>
|
597
|
+
</wsdl:operation>
|
598
|
+
<wsdl:operation name="getPerturbations">
|
599
|
+
<wsdl:input message="ns1:getPerturbationsRequest" wsaw:Action="urn:getPerturbations">
|
600
|
+
</wsdl:input>
|
601
|
+
<wsdl:output message="ns1:getPerturbationsResponse" wsaw:Action="urn:getPerturbationsResponse">
|
602
|
+
</wsdl:output>
|
603
|
+
</wsdl:operation>
|
604
|
+
<wsdl:operation name="getGeoPoints">
|
605
|
+
<wsdl:input message="ns1:getGeoPointsRequest" wsaw:Action="urn:getGeoPoints">
|
606
|
+
</wsdl:input>
|
607
|
+
<wsdl:output message="ns1:getGeoPointsResponse" wsaw:Action="urn:getGeoPointsResponse">
|
608
|
+
</wsdl:output>
|
609
|
+
</wsdl:operation>
|
610
|
+
</wsdl:portType>
|
611
|
+
<wsdl:binding name="WsivHttpBinding" type="ns1:WsivPortType">
|
612
|
+
<http:binding verb="POST"/>
|
613
|
+
<wsdl:operation name="getItineraries">
|
614
|
+
<http:operation location="Wsiv/getItineraries"/>
|
615
|
+
<wsdl:input>
|
616
|
+
<mime:content part="getItineraries" type="text/xml"/>
|
617
|
+
</wsdl:input>
|
618
|
+
<wsdl:output>
|
619
|
+
<mime:content part="getItineraries" type="text/xml"/>
|
620
|
+
</wsdl:output>
|
621
|
+
</wsdl:operation>
|
622
|
+
<wsdl:operation name="getMissionsFrequency">
|
623
|
+
<http:operation location="Wsiv/getMissionsFrequency"/>
|
624
|
+
<wsdl:input>
|
625
|
+
<mime:content part="getMissionsFrequency" type="text/xml"/>
|
626
|
+
</wsdl:input>
|
627
|
+
<wsdl:output>
|
628
|
+
<mime:content part="getMissionsFrequency" type="text/xml"/>
|
629
|
+
</wsdl:output>
|
630
|
+
</wsdl:operation>
|
631
|
+
<wsdl:operation name="getMissionsFirstLast">
|
632
|
+
<http:operation location="Wsiv/getMissionsFirstLast"/>
|
633
|
+
<wsdl:input>
|
634
|
+
<mime:content part="getMissionsFirstLast" type="text/xml"/>
|
635
|
+
</wsdl:input>
|
636
|
+
<wsdl:output>
|
637
|
+
<mime:content part="getMissionsFirstLast" type="text/xml"/>
|
638
|
+
</wsdl:output>
|
639
|
+
</wsdl:operation>
|
640
|
+
<wsdl:operation name="getStationAreas">
|
641
|
+
<http:operation location="Wsiv/getStationAreas"/>
|
642
|
+
<wsdl:input>
|
643
|
+
<mime:content part="getStationAreas" type="text/xml"/>
|
644
|
+
</wsdl:input>
|
645
|
+
<wsdl:output>
|
646
|
+
<mime:content part="getStationAreas" type="text/xml"/>
|
647
|
+
</wsdl:output>
|
648
|
+
</wsdl:operation>
|
649
|
+
<wsdl:operation name="getVersion">
|
650
|
+
<http:operation location="Wsiv/getVersion"/>
|
651
|
+
<wsdl:input>
|
652
|
+
<mime:content part="getVersion" type="text/xml"/>
|
653
|
+
</wsdl:input>
|
654
|
+
<wsdl:output>
|
655
|
+
<mime:content part="getVersion" type="text/xml"/>
|
656
|
+
</wsdl:output>
|
657
|
+
</wsdl:operation>
|
658
|
+
<wsdl:operation name="getLines">
|
659
|
+
<http:operation location="Wsiv/getLines"/>
|
660
|
+
<wsdl:input>
|
661
|
+
<mime:content part="getLines" type="text/xml"/>
|
662
|
+
</wsdl:input>
|
663
|
+
<wsdl:output>
|
664
|
+
<mime:content part="getLines" type="text/xml"/>
|
665
|
+
</wsdl:output>
|
666
|
+
</wsdl:operation>
|
667
|
+
<wsdl:operation name="getStations">
|
668
|
+
<http:operation location="Wsiv/getStations"/>
|
669
|
+
<wsdl:input>
|
670
|
+
<mime:content part="getStations" type="text/xml"/>
|
671
|
+
</wsdl:input>
|
672
|
+
<wsdl:output>
|
673
|
+
<mime:content part="getStations" type="text/xml"/>
|
674
|
+
</wsdl:output>
|
675
|
+
</wsdl:operation>
|
676
|
+
<wsdl:operation name="getMissionsNext">
|
677
|
+
<http:operation location="Wsiv/getMissionsNext"/>
|
678
|
+
<wsdl:input>
|
679
|
+
<mime:content part="getMissionsNext" type="text/xml"/>
|
680
|
+
</wsdl:input>
|
681
|
+
<wsdl:output>
|
682
|
+
<mime:content part="getMissionsNext" type="text/xml"/>
|
683
|
+
</wsdl:output>
|
684
|
+
</wsdl:operation>
|
685
|
+
<wsdl:operation name="getDirections">
|
686
|
+
<http:operation location="Wsiv/getDirections"/>
|
687
|
+
<wsdl:input>
|
688
|
+
<mime:content part="getDirections" type="text/xml"/>
|
689
|
+
</wsdl:input>
|
690
|
+
<wsdl:output>
|
691
|
+
<mime:content part="getDirections" type="text/xml"/>
|
692
|
+
</wsdl:output>
|
693
|
+
</wsdl:operation>
|
694
|
+
<wsdl:operation name="getMission">
|
695
|
+
<http:operation location="Wsiv/getMission"/>
|
696
|
+
<wsdl:input>
|
697
|
+
<mime:content part="getMission" type="text/xml"/>
|
698
|
+
</wsdl:input>
|
699
|
+
<wsdl:output>
|
700
|
+
<mime:content part="getMission" type="text/xml"/>
|
701
|
+
</wsdl:output>
|
702
|
+
</wsdl:operation>
|
703
|
+
<wsdl:operation name="getPerturbations">
|
704
|
+
<http:operation location="Wsiv/getPerturbations"/>
|
705
|
+
<wsdl:input>
|
706
|
+
<mime:content part="getPerturbations" type="text/xml"/>
|
707
|
+
</wsdl:input>
|
708
|
+
<wsdl:output>
|
709
|
+
<mime:content part="getPerturbations" type="text/xml"/>
|
710
|
+
</wsdl:output>
|
711
|
+
</wsdl:operation>
|
712
|
+
<wsdl:operation name="getGeoPoints">
|
713
|
+
<http:operation location="Wsiv/getGeoPoints"/>
|
714
|
+
<wsdl:input>
|
715
|
+
<mime:content part="getGeoPoints" type="text/xml"/>
|
716
|
+
</wsdl:input>
|
717
|
+
<wsdl:output>
|
718
|
+
<mime:content part="getGeoPoints" type="text/xml"/>
|
719
|
+
</wsdl:output>
|
720
|
+
</wsdl:operation>
|
721
|
+
</wsdl:binding>
|
722
|
+
<wsdl:binding name="WsivSOAP11Binding" type="ns1:WsivPortType">
|
723
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
724
|
+
<wsdl:operation name="getItineraries">
|
725
|
+
<soap:operation soapAction="urn:getItineraries" style="document"/>
|
726
|
+
<wsdl:input>
|
727
|
+
<soap:body use="literal"/>
|
728
|
+
</wsdl:input>
|
729
|
+
<wsdl:output>
|
730
|
+
<soap:body use="literal"/>
|
731
|
+
</wsdl:output>
|
732
|
+
</wsdl:operation>
|
733
|
+
<wsdl:operation name="getMissionsFrequency">
|
734
|
+
<soap:operation soapAction="urn:getMissionsFrequency" style="document"/>
|
735
|
+
<wsdl:input>
|
736
|
+
<soap:body use="literal"/>
|
737
|
+
</wsdl:input>
|
738
|
+
<wsdl:output>
|
739
|
+
<soap:body use="literal"/>
|
740
|
+
</wsdl:output>
|
741
|
+
</wsdl:operation>
|
742
|
+
<wsdl:operation name="getMissionsFirstLast">
|
743
|
+
<soap:operation soapAction="urn:getMissionsFirstLast" style="document"/>
|
744
|
+
<wsdl:input>
|
745
|
+
<soap:body use="literal"/>
|
746
|
+
</wsdl:input>
|
747
|
+
<wsdl:output>
|
748
|
+
<soap:body use="literal"/>
|
749
|
+
</wsdl:output>
|
750
|
+
</wsdl:operation>
|
751
|
+
<wsdl:operation name="getStationAreas">
|
752
|
+
<soap:operation soapAction="urn:getStationAreas" style="document"/>
|
753
|
+
<wsdl:input>
|
754
|
+
<soap:body use="literal"/>
|
755
|
+
</wsdl:input>
|
756
|
+
<wsdl:output>
|
757
|
+
<soap:body use="literal"/>
|
758
|
+
</wsdl:output>
|
759
|
+
</wsdl:operation>
|
760
|
+
<wsdl:operation name="getVersion">
|
761
|
+
<soap:operation soapAction="urn:getVersion" style="document"/>
|
762
|
+
<wsdl:input>
|
763
|
+
<soap:body use="literal"/>
|
764
|
+
</wsdl:input>
|
765
|
+
<wsdl:output>
|
766
|
+
<soap:body use="literal"/>
|
767
|
+
</wsdl:output>
|
768
|
+
</wsdl:operation>
|
769
|
+
<wsdl:operation name="getLines">
|
770
|
+
<soap:operation soapAction="urn:getLines" style="document"/>
|
771
|
+
<wsdl:input>
|
772
|
+
<soap:body use="literal"/>
|
773
|
+
</wsdl:input>
|
774
|
+
<wsdl:output>
|
775
|
+
<soap:body use="literal"/>
|
776
|
+
</wsdl:output>
|
777
|
+
</wsdl:operation>
|
778
|
+
<wsdl:operation name="getStations">
|
779
|
+
<soap:operation soapAction="urn:getStations" style="document"/>
|
780
|
+
<wsdl:input>
|
781
|
+
<soap:body use="literal"/>
|
782
|
+
</wsdl:input>
|
783
|
+
<wsdl:output>
|
784
|
+
<soap:body use="literal"/>
|
785
|
+
</wsdl:output>
|
786
|
+
</wsdl:operation>
|
787
|
+
<wsdl:operation name="getMissionsNext">
|
788
|
+
<soap:operation soapAction="urn:getMissionsNext" style="document"/>
|
789
|
+
<wsdl:input>
|
790
|
+
<soap:body use="literal"/>
|
791
|
+
</wsdl:input>
|
792
|
+
<wsdl:output>
|
793
|
+
<soap:body use="literal"/>
|
794
|
+
</wsdl:output>
|
795
|
+
</wsdl:operation>
|
796
|
+
<wsdl:operation name="getDirections">
|
797
|
+
<soap:operation soapAction="urn:getDirections" style="document"/>
|
798
|
+
<wsdl:input>
|
799
|
+
<soap:body use="literal"/>
|
800
|
+
</wsdl:input>
|
801
|
+
<wsdl:output>
|
802
|
+
<soap:body use="literal"/>
|
803
|
+
</wsdl:output>
|
804
|
+
</wsdl:operation>
|
805
|
+
<wsdl:operation name="getMission">
|
806
|
+
<soap:operation soapAction="urn:getMission" style="document"/>
|
807
|
+
<wsdl:input>
|
808
|
+
<soap:body use="literal"/>
|
809
|
+
</wsdl:input>
|
810
|
+
<wsdl:output>
|
811
|
+
<soap:body use="literal"/>
|
812
|
+
</wsdl:output>
|
813
|
+
</wsdl:operation>
|
814
|
+
<wsdl:operation name="getPerturbations">
|
815
|
+
<soap:operation soapAction="urn:getPerturbations" style="document"/>
|
816
|
+
<wsdl:input>
|
817
|
+
<soap:body use="literal"/>
|
818
|
+
</wsdl:input>
|
819
|
+
<wsdl:output>
|
820
|
+
<soap:body use="literal"/>
|
821
|
+
</wsdl:output>
|
822
|
+
</wsdl:operation>
|
823
|
+
<wsdl:operation name="getGeoPoints">
|
824
|
+
<soap:operation soapAction="urn:getGeoPoints" style="document"/>
|
825
|
+
<wsdl:input>
|
826
|
+
<soap:body use="literal"/>
|
827
|
+
</wsdl:input>
|
828
|
+
<wsdl:output>
|
829
|
+
<soap:body use="literal"/>
|
830
|
+
</wsdl:output>
|
831
|
+
</wsdl:operation>
|
832
|
+
</wsdl:binding>
|
833
|
+
<wsdl:binding name="WsivSOAP12Binding" type="ns1:WsivPortType">
|
834
|
+
<soap12:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
835
|
+
<wsdl:operation name="getItineraries">
|
836
|
+
<soap12:operation soapAction="urn:getItineraries" style="document"/>
|
837
|
+
<wsdl:input>
|
838
|
+
<soap12:body use="literal"/>
|
839
|
+
</wsdl:input>
|
840
|
+
<wsdl:output>
|
841
|
+
<soap12:body use="literal"/>
|
842
|
+
</wsdl:output>
|
843
|
+
</wsdl:operation>
|
844
|
+
<wsdl:operation name="getMissionsFrequency">
|
845
|
+
<soap12:operation soapAction="urn:getMissionsFrequency" style="document"/>
|
846
|
+
<wsdl:input>
|
847
|
+
<soap12:body use="literal"/>
|
848
|
+
</wsdl:input>
|
849
|
+
<wsdl:output>
|
850
|
+
<soap12:body use="literal"/>
|
851
|
+
</wsdl:output>
|
852
|
+
</wsdl:operation>
|
853
|
+
<wsdl:operation name="getMissionsFirstLast">
|
854
|
+
<soap12:operation soapAction="urn:getMissionsFirstLast" style="document"/>
|
855
|
+
<wsdl:input>
|
856
|
+
<soap12:body use="literal"/>
|
857
|
+
</wsdl:input>
|
858
|
+
<wsdl:output>
|
859
|
+
<soap12:body use="literal"/>
|
860
|
+
</wsdl:output>
|
861
|
+
</wsdl:operation>
|
862
|
+
<wsdl:operation name="getStationAreas">
|
863
|
+
<soap12:operation soapAction="urn:getStationAreas" style="document"/>
|
864
|
+
<wsdl:input>
|
865
|
+
<soap12:body use="literal"/>
|
866
|
+
</wsdl:input>
|
867
|
+
<wsdl:output>
|
868
|
+
<soap12:body use="literal"/>
|
869
|
+
</wsdl:output>
|
870
|
+
</wsdl:operation>
|
871
|
+
<wsdl:operation name="getVersion">
|
872
|
+
<soap12:operation soapAction="urn:getVersion" style="document"/>
|
873
|
+
<wsdl:input>
|
874
|
+
<soap12:body use="literal"/>
|
875
|
+
</wsdl:input>
|
876
|
+
<wsdl:output>
|
877
|
+
<soap12:body use="literal"/>
|
878
|
+
</wsdl:output>
|
879
|
+
</wsdl:operation>
|
880
|
+
<wsdl:operation name="getLines">
|
881
|
+
<soap12:operation soapAction="urn:getLines" style="document"/>
|
882
|
+
<wsdl:input>
|
883
|
+
<soap12:body use="literal"/>
|
884
|
+
</wsdl:input>
|
885
|
+
<wsdl:output>
|
886
|
+
<soap12:body use="literal"/>
|
887
|
+
</wsdl:output>
|
888
|
+
</wsdl:operation>
|
889
|
+
<wsdl:operation name="getStations">
|
890
|
+
<soap12:operation soapAction="urn:getStations" style="document"/>
|
891
|
+
<wsdl:input>
|
892
|
+
<soap12:body use="literal"/>
|
893
|
+
</wsdl:input>
|
894
|
+
<wsdl:output>
|
895
|
+
<soap12:body use="literal"/>
|
896
|
+
</wsdl:output>
|
897
|
+
</wsdl:operation>
|
898
|
+
<wsdl:operation name="getMissionsNext">
|
899
|
+
<soap12:operation soapAction="urn:getMissionsNext" style="document"/>
|
900
|
+
<wsdl:input>
|
901
|
+
<soap12:body use="literal"/>
|
902
|
+
</wsdl:input>
|
903
|
+
<wsdl:output>
|
904
|
+
<soap12:body use="literal"/>
|
905
|
+
</wsdl:output>
|
906
|
+
</wsdl:operation>
|
907
|
+
<wsdl:operation name="getDirections">
|
908
|
+
<soap12:operation soapAction="urn:getDirections" style="document"/>
|
909
|
+
<wsdl:input>
|
910
|
+
<soap12:body use="literal"/>
|
911
|
+
</wsdl:input>
|
912
|
+
<wsdl:output>
|
913
|
+
<soap12:body use="literal"/>
|
914
|
+
</wsdl:output>
|
915
|
+
</wsdl:operation>
|
916
|
+
<wsdl:operation name="getMission">
|
917
|
+
<soap12:operation soapAction="urn:getMission" style="document"/>
|
918
|
+
<wsdl:input>
|
919
|
+
<soap12:body use="literal"/>
|
920
|
+
</wsdl:input>
|
921
|
+
<wsdl:output>
|
922
|
+
<soap12:body use="literal"/>
|
923
|
+
</wsdl:output>
|
924
|
+
</wsdl:operation>
|
925
|
+
<wsdl:operation name="getPerturbations">
|
926
|
+
<soap12:operation soapAction="urn:getPerturbations" style="document"/>
|
927
|
+
<wsdl:input>
|
928
|
+
<soap12:body use="literal"/>
|
929
|
+
</wsdl:input>
|
930
|
+
<wsdl:output>
|
931
|
+
<soap12:body use="literal"/>
|
932
|
+
</wsdl:output>
|
933
|
+
</wsdl:operation>
|
934
|
+
<wsdl:operation name="getGeoPoints">
|
935
|
+
<soap12:operation soapAction="urn:getGeoPoints" style="document"/>
|
936
|
+
<wsdl:input>
|
937
|
+
<soap12:body use="literal"/>
|
938
|
+
</wsdl:input>
|
939
|
+
<wsdl:output>
|
940
|
+
<soap12:body use="literal"/>
|
941
|
+
</wsdl:output>
|
942
|
+
</wsdl:operation>
|
943
|
+
</wsdl:binding>
|
944
|
+
<wsdl:service name="Wsiv">
|
945
|
+
<wsdl:port name="WsivSOAP12port_http" binding="ns1:WsivSOAP12Binding">
|
946
|
+
<soap12:address location="http://www.ratp.fr/wsiv/services/Wsiv"/>
|
947
|
+
</wsdl:port>
|
948
|
+
<wsdl:port name="WsivHttpport" binding="ns1:WsivHttpBinding">
|
949
|
+
<http:address location="http://www.ratp.fr/wsiv/services/Wsiv"/>
|
950
|
+
</wsdl:port>
|
951
|
+
<wsdl:port name="WsivSOAP11port_http" binding="ns1:WsivSOAP11Binding">
|
952
|
+
<soap:address location="http://www.ratp.fr/wsiv/services/Wsiv"/>
|
953
|
+
</wsdl:port>
|
954
|
+
</wsdl:service>
|
955
|
+
</wsdl:definitions>
|