isbm_adaptor 1.0.rc8.7 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/isbm_adaptor/channel_management.rb +67 -11
- data/lib/isbm_adaptor/client.rb +29 -8
- data/lib/isbm_adaptor/consumer_publication.rb +37 -14
- data/lib/isbm_adaptor/consumer_request.rb +24 -5
- data/lib/isbm_adaptor/provider_publication.rb +2 -1
- data/lib/isbm_adaptor/provider_request.rb +20 -5
- data/lib/isbm_adaptor/version.rb +1 -1
- data/wsdls/{ISBMChannelManagementService.wsdl → ChannelManagementService.wsdl} +33 -53
- data/wsdls/{ISBMConsumerPublicationService.wsdl → ConsumerPublicationService.wsdl} +102 -104
- data/wsdls/{ISBMConsumerRequestService.wsdl → ConsumerRequestService.wsdl} +105 -81
- data/wsdls/{ISBMProviderPublicationService.wsdl → ProviderPublicationService.wsdl} +49 -73
- data/wsdls/{ISBMProviderRequestService.wsdl → ProviderRequestService.wsdl} +74 -104
- metadata +62 -48
@@ -1,24 +1,24 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
2
|
<!--
|
3
|
-
|
3
|
+
ws-ISBM 1.0 Consumer Request Service
|
4
4
|
|
5
|
-
|
5
|
+
Copyright MIMOSA 2014. All Rights Reserved.
|
6
|
+
License information for this file is provided in the file "LICENSE.txt" that is provided with this download package.
|
6
7
|
|
7
|
-
For support, more information, or to report errors, please contact MIMOSA at http://www.mimosa.org
|
8
|
+
For support, more information, or to report errors, please contact MIMOSA at http://www.mimosa.org/contact.
|
8
9
|
-->
|
9
10
|
<wsdl:definitions
|
10
11
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
11
12
|
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
12
13
|
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
|
13
14
|
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
14
|
-
xmlns:isbm="http://www.openoandm.org/
|
15
|
-
targetNamespace="http://www.openoandm.org/
|
16
|
-
name="
|
15
|
+
xmlns:isbm="http://www.openoandm.org/ws-isbm/"
|
16
|
+
targetNamespace="http://www.openoandm.org/ws-isbm/"
|
17
|
+
name="ConsumerRequestService">
|
17
18
|
|
18
19
|
<wsdl:types>
|
19
|
-
<xs:schema elementFormDefault="qualified" targetNamespace="http://www.openoandm.org/
|
20
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://www.openoandm.org/ws-isbm/">
|
20
21
|
<!-- Types -->
|
21
|
-
|
22
22
|
<xs:element name="MessageContent">
|
23
23
|
<xs:complexType>
|
24
24
|
<xs:sequence>
|
@@ -34,12 +34,11 @@
|
|
34
34
|
</xs:complexType>
|
35
35
|
|
36
36
|
<!-- Parameter elements -->
|
37
|
-
|
38
37
|
<xs:element name="OpenConsumerRequestSession">
|
39
38
|
<xs:complexType>
|
40
39
|
<xs:sequence>
|
41
40
|
<xs:element minOccurs="1" maxOccurs="1" name="ChannelURI" type="xs:string"/>
|
42
|
-
<xs:element minOccurs="0" maxOccurs="1" name="
|
41
|
+
<xs:element minOccurs="0" maxOccurs="1" name="ListenerURL" type="xs:string"/>
|
43
42
|
</xs:sequence>
|
44
43
|
</xs:complexType>
|
45
44
|
</xs:element>
|
@@ -56,6 +55,7 @@
|
|
56
55
|
<xs:element minOccurs="1" maxOccurs="1" name="SessionID" type="xs:string"/>
|
57
56
|
<xs:element minOccurs="1" maxOccurs="1" ref="isbm:MessageContent"/>
|
58
57
|
<xs:element minOccurs="1" maxOccurs="1" name="Topic" type="xs:string"/>
|
58
|
+
<xs:element minOccurs="0" maxOccurs="1" name="Expiry" type="xs:duration"/>
|
59
59
|
</xs:sequence>
|
60
60
|
</xs:complexType>
|
61
61
|
</xs:element>
|
@@ -66,6 +66,17 @@
|
|
66
66
|
</xs:sequence>
|
67
67
|
</xs:complexType>
|
68
68
|
</xs:element>
|
69
|
+
<xs:element name="ExpireRequest">
|
70
|
+
<xs:complexType>
|
71
|
+
<xs:sequence>
|
72
|
+
<xs:element minOccurs="1" maxOccurs="1" name="SessionID" type="xs:string"/>
|
73
|
+
<xs:element minOccurs="1" maxOccurs="1" name="MessageID" type="xs:string"/>
|
74
|
+
</xs:sequence>
|
75
|
+
</xs:complexType>
|
76
|
+
</xs:element>
|
77
|
+
<xs:element name="ExpireRequestResponse">
|
78
|
+
<xs:complexType/>
|
79
|
+
</xs:element>
|
69
80
|
<xs:element name="ReadResponse">
|
70
81
|
<xs:complexType>
|
71
82
|
<xs:sequence>
|
@@ -104,27 +115,14 @@
|
|
104
115
|
</xs:element>
|
105
116
|
|
106
117
|
<!-- Fault elements -->
|
107
|
-
|
108
118
|
<xs:element name="ChannelFault">
|
109
|
-
<xs:complexType
|
110
|
-
<xs:sequence>
|
111
|
-
<xs:element minOccurs="1" maxOccurs="1" name="Description" type="xs:string"/>
|
112
|
-
</xs:sequence>
|
113
|
-
</xs:complexType>
|
119
|
+
<xs:complexType/>
|
114
120
|
</xs:element>
|
115
|
-
<xs:element name="
|
116
|
-
<xs:complexType
|
117
|
-
<xs:sequence>
|
118
|
-
<xs:element minOccurs="1" maxOccurs="1" name="Description" type="xs:string"/>
|
119
|
-
</xs:sequence>
|
120
|
-
</xs:complexType>
|
121
|
+
<xs:element name="OperationFault">
|
122
|
+
<xs:complexType/>
|
121
123
|
</xs:element>
|
122
|
-
<xs:element name="
|
123
|
-
<xs:complexType
|
124
|
-
<xs:sequence>
|
125
|
-
<xs:element minOccurs="1" maxOccurs="1" name="Description" type="xs:string"/>
|
126
|
-
</xs:sequence>
|
127
|
-
</xs:complexType>
|
124
|
+
<xs:element name="SessionFault">
|
125
|
+
<xs:complexType/>
|
128
126
|
</xs:element>
|
129
127
|
</xs:schema>
|
130
128
|
</wsdl:types>
|
@@ -141,6 +139,12 @@
|
|
141
139
|
<wsdl:message name="PostRequestOut">
|
142
140
|
<wsdl:part name="parameters" element="isbm:PostRequestResponse"/>
|
143
141
|
</wsdl:message>
|
142
|
+
<wsdl:message name="ExpireRequestIn">
|
143
|
+
<wsdl:part name="parameters" element="isbm:ExpireRequest"/>
|
144
|
+
</wsdl:message>
|
145
|
+
<wsdl:message name="ExpireRequestOut">
|
146
|
+
<wsdl:part name="parameters" element="isbm:ExpireRequestResponse"/>
|
147
|
+
</wsdl:message>
|
144
148
|
<wsdl:message name="ReadResponseIn">
|
145
149
|
<wsdl:part name="parameters" element="isbm:ReadResponse"/>
|
146
150
|
</wsdl:message>
|
@@ -162,51 +166,57 @@
|
|
162
166
|
<wsdl:message name="ChannelFault">
|
163
167
|
<wsdl:part name="parameters" element="isbm:ChannelFault"/>
|
164
168
|
</wsdl:message>
|
165
|
-
<wsdl:message name="
|
166
|
-
<wsdl:part name="parameters" element="isbm:
|
169
|
+
<wsdl:message name="OperationFault">
|
170
|
+
<wsdl:part name="parameters" element="isbm:OperationFault"/>
|
167
171
|
</wsdl:message>
|
168
|
-
<wsdl:message name="
|
169
|
-
<wsdl:part name="parameters" element="isbm:
|
172
|
+
<wsdl:message name="SessionFault">
|
173
|
+
<wsdl:part name="parameters" element="isbm:SessionFault"/>
|
170
174
|
</wsdl:message>
|
171
175
|
|
172
|
-
<wsdl:portType name="
|
176
|
+
<wsdl:portType name="ConsumerRequestService">
|
173
177
|
<wsdl:operation name="OpenConsumerRequestSession">
|
174
178
|
<wsdl:documentation>Opens a consumer request session for a channel for posting requests and reading responses.</wsdl:documentation>
|
175
179
|
<wsdl:input message="isbm:OpenConsumerRequestSessionIn"/>
|
176
180
|
<wsdl:output message="isbm:OpenConsumerRequestSessionOut"/>
|
177
181
|
<wsdl:fault name="ChannelFault" message="isbm:ChannelFault"/>
|
178
|
-
<wsdl:fault name="
|
182
|
+
<wsdl:fault name="OperationFault" message="isbm:OperationFault"/>
|
179
183
|
</wsdl:operation>
|
180
184
|
<wsdl:operation name="PostRequest">
|
181
185
|
<wsdl:documentation>Posts a request message on a channel.</wsdl:documentation>
|
182
186
|
<wsdl:input message="isbm:PostRequestIn"/>
|
183
187
|
<wsdl:output message="isbm:PostRequestOut"/>
|
184
|
-
<wsdl:fault name="
|
188
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
189
|
+
</wsdl:operation>
|
190
|
+
<wsdl:operation name="ExpireRequest">
|
191
|
+
<wsdl:documentation>Expires a posted request message.</wsdl:documentation>
|
192
|
+
<wsdl:input message="isbm:ExpireRequestIn"/>
|
193
|
+
<wsdl:output message="isbm:ExpireRequestOut"/>
|
194
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
185
195
|
</wsdl:operation>
|
186
196
|
<wsdl:operation name="ReadResponse">
|
187
197
|
<wsdl:documentation>Returns the first response message in the message queue for the session. Note: this service does not remove the message from the message queue.</wsdl:documentation>
|
188
198
|
<wsdl:input message="isbm:ReadResponseIn"/>
|
189
199
|
<wsdl:output message="isbm:ReadResponseOut"/>
|
190
|
-
<wsdl:fault name="
|
200
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
191
201
|
</wsdl:operation>
|
192
202
|
<wsdl:operation name="RemoveResponse">
|
193
203
|
<wsdl:documentation>Deletes the first request message in the message queue for the session.</wsdl:documentation>
|
194
204
|
<wsdl:input message="isbm:RemoveResponseIn"/>
|
195
205
|
<wsdl:output message="isbm:RemoveResponseOut"/>
|
196
|
-
<wsdl:fault name="
|
206
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
197
207
|
</wsdl:operation>
|
198
208
|
<wsdl:operation name="CloseConsumerRequestSession">
|
199
209
|
<wsdl:documentation>Closes a consumer request session.</wsdl:documentation>
|
200
210
|
<wsdl:input message="isbm:CloseConsumerRequestSessionIn"/>
|
201
211
|
<wsdl:output message="isbm:CloseConsumerRequestSessionOut"/>
|
202
|
-
<wsdl:fault name="
|
212
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
203
213
|
</wsdl:operation>
|
204
214
|
</wsdl:portType>
|
205
215
|
|
206
|
-
<wsdl:binding name="
|
216
|
+
<wsdl:binding name="ConsumerRequestServiceSoap" type="isbm:ConsumerRequestService">
|
207
217
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
208
218
|
<wsdl:operation name="OpenConsumerRequestSession">
|
209
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
219
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/OpenConsumerRequestSession" style="document"/>
|
210
220
|
<wsdl:input>
|
211
221
|
<soap:body use="literal"/>
|
212
222
|
</wsdl:input>
|
@@ -216,64 +226,76 @@
|
|
216
226
|
<wsdl:fault name="ChannelFault">
|
217
227
|
<soap:fault name="ChannelFault" use="literal"/>
|
218
228
|
</wsdl:fault>
|
219
|
-
<wsdl:fault name="
|
220
|
-
<soap:fault name="
|
229
|
+
<wsdl:fault name="OperationFault">
|
230
|
+
<soap:fault name="OperationFault" use="literal"/>
|
221
231
|
</wsdl:fault>
|
222
232
|
</wsdl:operation>
|
223
233
|
<wsdl:operation name="PostRequest">
|
224
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
234
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/PostRequest" style="document"/>
|
235
|
+
<wsdl:input>
|
236
|
+
<soap:body use="literal"/>
|
237
|
+
</wsdl:input>
|
238
|
+
<wsdl:output>
|
239
|
+
<soap:body use="literal"/>
|
240
|
+
</wsdl:output>
|
241
|
+
<wsdl:fault name="SessionFault">
|
242
|
+
<soap:fault name="SessionFault" use="literal"/>
|
243
|
+
</wsdl:fault>
|
244
|
+
</wsdl:operation>
|
245
|
+
<wsdl:operation name="ExpireRequest">
|
246
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/ExpireRequest" style="document"/>
|
225
247
|
<wsdl:input>
|
226
248
|
<soap:body use="literal"/>
|
227
249
|
</wsdl:input>
|
228
250
|
<wsdl:output>
|
229
251
|
<soap:body use="literal"/>
|
230
252
|
</wsdl:output>
|
231
|
-
<wsdl:fault name="
|
232
|
-
<soap:fault name="
|
253
|
+
<wsdl:fault name="SessionFault">
|
254
|
+
<soap:fault name="SessionFault" use="literal"/>
|
233
255
|
</wsdl:fault>
|
234
256
|
</wsdl:operation>
|
235
257
|
<wsdl:operation name="ReadResponse">
|
236
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
258
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/ReadResponse" style="document"/>
|
237
259
|
<wsdl:input>
|
238
260
|
<soap:body use="literal"/>
|
239
261
|
</wsdl:input>
|
240
262
|
<wsdl:output>
|
241
263
|
<soap:body use="literal"/>
|
242
264
|
</wsdl:output>
|
243
|
-
<wsdl:fault name="
|
244
|
-
<soap:fault name="
|
265
|
+
<wsdl:fault name="SessionFault">
|
266
|
+
<soap:fault name="SessionFault" use="literal"/>
|
245
267
|
</wsdl:fault>
|
246
268
|
</wsdl:operation>
|
247
269
|
<wsdl:operation name="RemoveResponse">
|
248
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
270
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/RemoveResponse" style="document"/>
|
249
271
|
<wsdl:input>
|
250
272
|
<soap:body use="literal"/>
|
251
273
|
</wsdl:input>
|
252
274
|
<wsdl:output>
|
253
275
|
<soap:body use="literal"/>
|
254
276
|
</wsdl:output>
|
255
|
-
<wsdl:fault name="
|
256
|
-
<soap:fault name="
|
277
|
+
<wsdl:fault name="SessionFault">
|
278
|
+
<soap:fault name="SessionFault" use="literal"/>
|
257
279
|
</wsdl:fault>
|
258
280
|
</wsdl:operation>
|
259
281
|
<wsdl:operation name="CloseConsumerRequestSession">
|
260
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
282
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/CloseConsumerRequestSession" style="document"/>
|
261
283
|
<wsdl:input>
|
262
284
|
<soap:body use="literal"/>
|
263
285
|
</wsdl:input>
|
264
286
|
<wsdl:output>
|
265
287
|
<soap:body use="literal"/>
|
266
288
|
</wsdl:output>
|
267
|
-
<wsdl:fault name="
|
268
|
-
<soap:fault name="
|
289
|
+
<wsdl:fault name="SessionFault">
|
290
|
+
<soap:fault name="SessionFault" use="literal"/>
|
269
291
|
</wsdl:fault>
|
270
292
|
</wsdl:operation>
|
271
293
|
</wsdl:binding>
|
272
294
|
|
273
|
-
<wsdl:binding name="
|
295
|
+
<wsdl:binding name="ConsumerRequestServiceSoap12" type="isbm:ConsumerRequestService">
|
274
296
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
275
297
|
<wsdl:operation name="OpenConsumerRequestSession">
|
276
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
298
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/OpenConsumerRequestSession" style="document"/>
|
277
299
|
<wsdl:input>
|
278
300
|
<soap12:body use="literal"/>
|
279
301
|
</wsdl:input>
|
@@ -283,67 +305,69 @@
|
|
283
305
|
<wsdl:fault name="ChannelFault">
|
284
306
|
<soap12:fault name="ChannelFault" use="literal"/>
|
285
307
|
</wsdl:fault>
|
286
|
-
<wsdl:fault name="
|
287
|
-
<soap12:fault name="
|
308
|
+
<wsdl:fault name="OperationFault">
|
309
|
+
<soap12:fault name="OperationFault" use="literal"/>
|
288
310
|
</wsdl:fault>
|
289
311
|
</wsdl:operation>
|
290
312
|
<wsdl:operation name="PostRequest">
|
291
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
313
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/PostRequest" style="document"/>
|
314
|
+
<wsdl:input>
|
315
|
+
<soap12:body use="literal"/>
|
316
|
+
</wsdl:input>
|
317
|
+
<wsdl:output>
|
318
|
+
<soap12:body use="literal"/>
|
319
|
+
</wsdl:output>
|
320
|
+
<wsdl:fault name="SessionFault">
|
321
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
322
|
+
</wsdl:fault>
|
323
|
+
</wsdl:operation>
|
324
|
+
<wsdl:operation name="ExpireRequest">
|
325
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/ExpireRequest" style="document"/>
|
292
326
|
<wsdl:input>
|
293
327
|
<soap12:body use="literal"/>
|
294
328
|
</wsdl:input>
|
295
329
|
<wsdl:output>
|
296
330
|
<soap12:body use="literal"/>
|
297
331
|
</wsdl:output>
|
298
|
-
<wsdl:fault name="
|
299
|
-
<soap12:fault name="
|
332
|
+
<wsdl:fault name="SessionFault">
|
333
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
300
334
|
</wsdl:fault>
|
301
335
|
</wsdl:operation>
|
302
336
|
<wsdl:operation name="ReadResponse">
|
303
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
337
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/ReadResponse" style="document"/>
|
304
338
|
<wsdl:input>
|
305
339
|
<soap12:body use="literal"/>
|
306
340
|
</wsdl:input>
|
307
341
|
<wsdl:output>
|
308
342
|
<soap12:body use="literal"/>
|
309
343
|
</wsdl:output>
|
310
|
-
<wsdl:fault name="
|
311
|
-
<soap12:fault name="
|
344
|
+
<wsdl:fault name="SessionFault">
|
345
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
312
346
|
</wsdl:fault>
|
313
347
|
</wsdl:operation>
|
314
348
|
<wsdl:operation name="RemoveResponse">
|
315
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
349
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/RemoveResponse" style="document"/>
|
316
350
|
<wsdl:input>
|
317
351
|
<soap12:body use="literal"/>
|
318
352
|
</wsdl:input>
|
319
353
|
<wsdl:output>
|
320
354
|
<soap12:body use="literal"/>
|
321
355
|
</wsdl:output>
|
322
|
-
<wsdl:fault name="
|
323
|
-
<soap12:fault name="
|
356
|
+
<wsdl:fault name="SessionFault">
|
357
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
324
358
|
</wsdl:fault>
|
325
359
|
</wsdl:operation>
|
326
360
|
<wsdl:operation name="CloseConsumerRequestSession">
|
327
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
361
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/CloseConsumerRequestSession" style="document"/>
|
328
362
|
<wsdl:input>
|
329
363
|
<soap12:body use="literal"/>
|
330
364
|
</wsdl:input>
|
331
365
|
<wsdl:output>
|
332
366
|
<soap12:body use="literal"/>
|
333
367
|
</wsdl:output>
|
334
|
-
<wsdl:fault name="
|
335
|
-
<soap12:fault name="
|
368
|
+
<wsdl:fault name="SessionFault">
|
369
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
336
370
|
</wsdl:fault>
|
337
371
|
</wsdl:operation>
|
338
372
|
</wsdl:binding>
|
339
|
-
|
340
|
-
<wsdl:service name="ISBMConsumerRequestService">
|
341
|
-
<wsdl:port name="ISBMConsumerRequestServiceSoap" binding="isbm:ISBMConsumerRequestServiceSoap">
|
342
|
-
<soap:address location="http://localhost/ISBMConsumerRequestService"/>
|
343
|
-
</wsdl:port>
|
344
|
-
<wsdl:port name="ISBMConsumerRequestServiceSoap12" binding="isbm:ISBMConsumerRequestServiceSoap12">
|
345
|
-
<soap12:address location="http://localhost/ISBMConsumerRequestService"/>
|
346
|
-
</wsdl:port>
|
347
|
-
</wsdl:service>
|
348
|
-
|
349
|
-
</wsdl:definitions>
|
373
|
+
</wsdl:definitions>
|
@@ -1,24 +1,24 @@
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
2
2
|
<!--
|
3
|
-
|
3
|
+
ws-ISBM 1.0 Provider Publication Service
|
4
4
|
|
5
|
-
|
5
|
+
Copyright MIMOSA 2014. All Rights Reserved.
|
6
|
+
License information for this file is provided in the file "LICENSE.txt" that is provided with this download package.
|
6
7
|
|
7
|
-
For support, more information, or to report errors, please contact MIMOSA at http://www.mimosa.org
|
8
|
+
For support, more information, or to report errors, please contact MIMOSA at http://www.mimosa.org/contact.
|
8
9
|
-->
|
9
10
|
<wsdl:definitions
|
10
11
|
xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
11
12
|
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
12
13
|
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
|
13
14
|
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
14
|
-
xmlns:isbm="http://www.openoandm.org/
|
15
|
-
targetNamespace="http://www.openoandm.org/
|
16
|
-
name="
|
15
|
+
xmlns:isbm="http://www.openoandm.org/ws-isbm/"
|
16
|
+
targetNamespace="http://www.openoandm.org/ws-isbm/"
|
17
|
+
name="ProviderPublicationService">
|
17
18
|
|
18
19
|
<wsdl:types>
|
19
|
-
<xs:schema elementFormDefault="qualified" targetNamespace="http://www.openoandm.org/
|
20
|
+
<xs:schema elementFormDefault="qualified" targetNamespace="http://www.openoandm.org/ws-isbm/">
|
20
21
|
<!-- Types -->
|
21
|
-
|
22
22
|
<xs:element name="MessageContent">
|
23
23
|
<xs:complexType>
|
24
24
|
<xs:sequence>
|
@@ -28,7 +28,6 @@
|
|
28
28
|
</xs:element>
|
29
29
|
|
30
30
|
<!-- Parameter elements -->
|
31
|
-
|
32
31
|
<xs:element name="OpenPublicationSession">
|
33
32
|
<xs:complexType>
|
34
33
|
<xs:sequence>
|
@@ -83,27 +82,14 @@
|
|
83
82
|
</xs:element>
|
84
83
|
|
85
84
|
<!-- Fault elements -->
|
86
|
-
|
87
85
|
<xs:element name="ChannelFault">
|
88
|
-
<xs:complexType
|
89
|
-
<xs:sequence>
|
90
|
-
<xs:element minOccurs="1" maxOccurs="1" name="Description" type="xs:string"/>
|
91
|
-
</xs:sequence>
|
92
|
-
</xs:complexType>
|
86
|
+
<xs:complexType/>
|
93
87
|
</xs:element>
|
94
|
-
<xs:element name="
|
95
|
-
<xs:complexType
|
96
|
-
<xs:sequence>
|
97
|
-
<xs:element minOccurs="1" maxOccurs="1" name="Description" type="xs:string"/>
|
98
|
-
</xs:sequence>
|
99
|
-
</xs:complexType>
|
88
|
+
<xs:element name="OperationFault">
|
89
|
+
<xs:complexType/>
|
100
90
|
</xs:element>
|
101
|
-
<xs:element name="
|
102
|
-
<xs:complexType
|
103
|
-
<xs:sequence>
|
104
|
-
<xs:element minOccurs="1" maxOccurs="1" name="Description" type="xs:string"/>
|
105
|
-
</xs:sequence>
|
106
|
-
</xs:complexType>
|
91
|
+
<xs:element name="SessionFault">
|
92
|
+
<xs:complexType/>
|
107
93
|
</xs:element>
|
108
94
|
</xs:schema>
|
109
95
|
</wsdl:types>
|
@@ -135,45 +121,45 @@
|
|
135
121
|
<wsdl:message name="ChannelFault">
|
136
122
|
<wsdl:part name="parameters" element="isbm:ChannelFault"/>
|
137
123
|
</wsdl:message>
|
138
|
-
<wsdl:message name="
|
139
|
-
<wsdl:part name="parameters" element="isbm:
|
124
|
+
<wsdl:message name="OperationFault">
|
125
|
+
<wsdl:part name="parameters" element="isbm:OperationFault"/>
|
140
126
|
</wsdl:message>
|
141
|
-
<wsdl:message name="
|
142
|
-
<wsdl:part name="parameters" element="isbm:
|
127
|
+
<wsdl:message name="SessionFault">
|
128
|
+
<wsdl:part name="parameters" element="isbm:SessionFault"/>
|
143
129
|
</wsdl:message>
|
144
130
|
|
145
|
-
<wsdl:portType name="
|
131
|
+
<wsdl:portType name="ProviderPublicationService">
|
146
132
|
<wsdl:operation name="OpenPublicationSession">
|
147
133
|
<wsdl:documentation>Opens a publication session for a channel.</wsdl:documentation>
|
148
134
|
<wsdl:input message="isbm:OpenPublicationSessionIn"/>
|
149
135
|
<wsdl:output message="isbm:OpenPublicationSessionOut"/>
|
150
136
|
<wsdl:fault name="ChannelFault" message="isbm:ChannelFault"/>
|
151
|
-
<wsdl:fault name="
|
137
|
+
<wsdl:fault name="OperationFault" message="isbm:OperationFault"/>
|
152
138
|
</wsdl:operation>
|
153
139
|
<wsdl:operation name="PostPublication">
|
154
140
|
<wsdl:documentation>Posts a publication message on a channel.</wsdl:documentation>
|
155
141
|
<wsdl:input message="isbm:PostPublicationIn"/>
|
156
142
|
<wsdl:output message="isbm:PostPublicationOut"/>
|
157
|
-
<wsdl:fault name="
|
143
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
158
144
|
</wsdl:operation>
|
159
145
|
<wsdl:operation name="ExpirePublication">
|
160
146
|
<wsdl:documentation>Expires a posted publication.</wsdl:documentation>
|
161
147
|
<wsdl:input message="isbm:ExpirePublicationIn"/>
|
162
148
|
<wsdl:output message="isbm:ExpirePublicationOut"/>
|
163
|
-
<wsdl:fault name="
|
149
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
164
150
|
</wsdl:operation>
|
165
151
|
<wsdl:operation name="ClosePublicationSession">
|
166
152
|
<wsdl:documentation>Closes a publication session.</wsdl:documentation>
|
167
153
|
<wsdl:input message="isbm:ClosePublicationSessionIn"/>
|
168
154
|
<wsdl:output message="isbm:ClosePublicationSessionOut"/>
|
169
|
-
<wsdl:fault name="
|
155
|
+
<wsdl:fault name="SessionFault" message="isbm:SessionFault"/>
|
170
156
|
</wsdl:operation>
|
171
157
|
</wsdl:portType>
|
172
158
|
|
173
|
-
<wsdl:binding name="
|
159
|
+
<wsdl:binding name="ProviderPublicationServiceSoap" type="isbm:ProviderPublicationService">
|
174
160
|
<soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
175
161
|
<wsdl:operation name="OpenPublicationSession">
|
176
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
162
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/OpenPublicationSession" style="document"/>
|
177
163
|
<wsdl:input>
|
178
164
|
<soap:body use="literal"/>
|
179
165
|
</wsdl:input>
|
@@ -183,52 +169,52 @@
|
|
183
169
|
<wsdl:fault name="ChannelFault">
|
184
170
|
<soap:fault name="ChannelFault" use="literal"/>
|
185
171
|
</wsdl:fault>
|
186
|
-
<wsdl:fault name="
|
187
|
-
<soap:fault name="
|
172
|
+
<wsdl:fault name="OperationFault">
|
173
|
+
<soap:fault name="OperationFault" use="literal"/>
|
188
174
|
</wsdl:fault>
|
189
175
|
</wsdl:operation>
|
190
176
|
<wsdl:operation name="PostPublication">
|
191
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
177
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/PostPublication" style="document"/>
|
192
178
|
<wsdl:input>
|
193
179
|
<soap:body use="literal"/>
|
194
180
|
</wsdl:input>
|
195
181
|
<wsdl:output>
|
196
182
|
<soap:body use="literal"/>
|
197
183
|
</wsdl:output>
|
198
|
-
<wsdl:fault name="
|
199
|
-
<soap:fault name="
|
184
|
+
<wsdl:fault name="SessionFault">
|
185
|
+
<soap:fault name="SessionFault" use="literal"/>
|
200
186
|
</wsdl:fault>
|
201
187
|
</wsdl:operation>
|
202
188
|
<wsdl:operation name="ExpirePublication">
|
203
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
189
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/ExpirePublication" style="document"/>
|
204
190
|
<wsdl:input>
|
205
191
|
<soap:body use="literal"/>
|
206
192
|
</wsdl:input>
|
207
193
|
<wsdl:output>
|
208
194
|
<soap:body use="literal"/>
|
209
195
|
</wsdl:output>
|
210
|
-
<wsdl:fault name="
|
211
|
-
<soap:fault name="
|
196
|
+
<wsdl:fault name="SessionFault">
|
197
|
+
<soap:fault name="SessionFault" use="literal"/>
|
212
198
|
</wsdl:fault>
|
213
199
|
</wsdl:operation>
|
214
200
|
<wsdl:operation name="ClosePublicationSession">
|
215
|
-
<soap:operation soapAction="http://www.openoandm.org/
|
201
|
+
<soap:operation soapAction="http://www.openoandm.org/ws-isbm/ClosePublicationSession" style="document"/>
|
216
202
|
<wsdl:input>
|
217
203
|
<soap:body use="literal"/>
|
218
204
|
</wsdl:input>
|
219
205
|
<wsdl:output>
|
220
206
|
<soap:body use="literal"/>
|
221
207
|
</wsdl:output>
|
222
|
-
<wsdl:fault name="
|
223
|
-
<soap:fault name="
|
208
|
+
<wsdl:fault name="SessionFault">
|
209
|
+
<soap:fault name="SessionFault" use="literal"/>
|
224
210
|
</wsdl:fault>
|
225
211
|
</wsdl:operation>
|
226
212
|
</wsdl:binding>
|
227
213
|
|
228
|
-
<wsdl:binding name="
|
214
|
+
<wsdl:binding name="ProviderPublicationServiceSoap12" type="isbm:ProviderPublicationService">
|
229
215
|
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http"/>
|
230
216
|
<wsdl:operation name="OpenPublicationSession">
|
231
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
217
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/OpenPublicationSession" style="document"/>
|
232
218
|
<wsdl:input>
|
233
219
|
<soap12:body use="literal"/>
|
234
220
|
</wsdl:input>
|
@@ -238,55 +224,45 @@
|
|
238
224
|
<wsdl:fault name="ChannelFault">
|
239
225
|
<soap12:fault name="ChannelFault" use="literal"/>
|
240
226
|
</wsdl:fault>
|
241
|
-
<wsdl:fault name="
|
242
|
-
<soap12:fault name="
|
227
|
+
<wsdl:fault name="OperationFault">
|
228
|
+
<soap12:fault name="OperationFault" use="literal"/>
|
243
229
|
</wsdl:fault>
|
244
230
|
</wsdl:operation>
|
245
231
|
<wsdl:operation name="PostPublication">
|
246
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
232
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/PostPublication" style="document"/>
|
247
233
|
<wsdl:input>
|
248
234
|
<soap12:body use="literal"/>
|
249
235
|
</wsdl:input>
|
250
236
|
<wsdl:output>
|
251
237
|
<soap12:body use="literal"/>
|
252
238
|
</wsdl:output>
|
253
|
-
<wsdl:fault name="
|
254
|
-
<soap12:fault name="
|
239
|
+
<wsdl:fault name="SessionFault">
|
240
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
255
241
|
</wsdl:fault>
|
256
242
|
</wsdl:operation>
|
257
243
|
<wsdl:operation name="ExpirePublication">
|
258
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
244
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/ExpirePublication" style="document"/>
|
259
245
|
<wsdl:input>
|
260
246
|
<soap12:body use="literal"/>
|
261
247
|
</wsdl:input>
|
262
248
|
<wsdl:output>
|
263
249
|
<soap12:body use="literal"/>
|
264
250
|
</wsdl:output>
|
265
|
-
<wsdl:fault name="
|
266
|
-
<soap12:fault name="
|
251
|
+
<wsdl:fault name="SessionFault">
|
252
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
267
253
|
</wsdl:fault>
|
268
254
|
</wsdl:operation>
|
269
255
|
<wsdl:operation name="ClosePublicationSession">
|
270
|
-
<soap12:operation soapAction="http://www.openoandm.org/
|
256
|
+
<soap12:operation soapAction="http://www.openoandm.org/ws-isbm/ClosePublicationSession" style="document"/>
|
271
257
|
<wsdl:input>
|
272
258
|
<soap12:body use="literal"/>
|
273
259
|
</wsdl:input>
|
274
260
|
<wsdl:output>
|
275
261
|
<soap12:body use="literal"/>
|
276
262
|
</wsdl:output>
|
277
|
-
<wsdl:fault name="
|
278
|
-
<soap12:fault name="
|
263
|
+
<wsdl:fault name="SessionFault">
|
264
|
+
<soap12:fault name="SessionFault" use="literal"/>
|
279
265
|
</wsdl:fault>
|
280
266
|
</wsdl:operation>
|
281
267
|
</wsdl:binding>
|
282
|
-
|
283
|
-
<wsdl:service name="ISBMProviderPublicationService">
|
284
|
-
<wsdl:port name="ISBMProviderPublicationServiceSoap" binding="isbm:ISBMProviderPublicationServiceSoap">
|
285
|
-
<soap:address location="http://localhost/ISBMProviderPublicationService"/>
|
286
|
-
</wsdl:port>
|
287
|
-
<wsdl:port name="ISBMProviderPublicationServiceSoap12" binding="isbm:ISBMProviderPublicationServiceSoap12">
|
288
|
-
<soap12:address location="http://localhost/ISBMProviderPublicationService"/>
|
289
|
-
</wsdl:port>
|
290
|
-
</wsdl:service>
|
291
|
-
|
292
|
-
</wsdl:definitions>
|
268
|
+
</wsdl:definitions>
|