tomdz-soap4r 1.5.8.20111103171510 → 1.5.8.20120202093209
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.
- data/lib/wsdl/xmlSchema/importer.rb +6 -1
- metadata +457 -455
@@ -56,7 +56,12 @@ private
|
|
56
56
|
normalizedlocation = location
|
57
57
|
if location.scheme == 'file' or
|
58
58
|
(location.relative? and FileTest.exist?(location.path))
|
59
|
-
|
59
|
+
begin
|
60
|
+
content = File.open(location.path).read
|
61
|
+
rescue
|
62
|
+
# To handle cases like being embedded in a jar (for jruby)
|
63
|
+
content = File.open(location.to_s).read
|
64
|
+
end
|
60
65
|
normalizedlocation = URI.parse('file://' + File.expand_path(location.path))
|
61
66
|
elsif location.scheme and location.scheme.size == 1 and
|
62
67
|
FileTest.exist?(location.to_s)
|
metadata
CHANGED
@@ -1,488 +1,490 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tomdz-soap4r
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
prerelease:
|
5
|
+
version: 1.5.8.20120202093209
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
|
-
- Laurence A. Lee, Hiroshi NAKAMURA
|
8
|
+
- Laurence A. Lee, Hiroshi NAKAMURA
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
12
|
|
12
|
-
date:
|
13
|
+
date: 2012-02-02 00:00:00 -08:00
|
13
14
|
default_executable:
|
14
15
|
dependencies:
|
15
|
-
- !ruby/object:Gem::Dependency
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
16
|
+
- !ruby/object:Gem::Dependency
|
17
|
+
name: httpclient
|
18
|
+
prerelease: false
|
19
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
21
|
+
requirements:
|
22
|
+
- - ">="
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 2.1.5.2
|
25
|
+
type: :runtime
|
26
|
+
version_requirements: *id001
|
25
27
|
description:
|
26
|
-
email: rubyjedi@gmail.com, nahi@ruby-lang.org
|
28
|
+
email: tritonrc@gmail.com, rubyjedi@gmail.com, nahi@ruby-lang.org
|
27
29
|
executables:
|
28
|
-
- wsdl2ruby.rb
|
29
|
-
- xsd2ruby.rb
|
30
|
+
- wsdl2ruby.rb
|
31
|
+
- xsd2ruby.rb
|
30
32
|
extensions: []
|
31
33
|
|
32
34
|
extra_rdoc_files: []
|
33
35
|
|
34
36
|
files:
|
35
|
-
- bin/wsdl2ruby.rb
|
36
|
-
- bin/xsd2ruby.rb
|
37
|
-
- lib/soap/httpconfigloader.rb
|
38
|
-
- lib/soap/ns.rb
|
39
|
-
- lib/soap/
|
40
|
-
- lib/soap/
|
41
|
-
- lib/soap/
|
42
|
-
- lib/soap/
|
43
|
-
- lib/soap/
|
44
|
-
- lib/soap/
|
45
|
-
- lib/soap/
|
46
|
-
- lib/soap/
|
47
|
-
- lib/soap/
|
48
|
-
- lib/soap/
|
49
|
-
- lib/soap/
|
50
|
-
- lib/soap/
|
51
|
-
- lib/soap/
|
52
|
-
- lib/soap/
|
53
|
-
- lib/soap/
|
54
|
-
- lib/soap/
|
55
|
-
- lib/soap/
|
56
|
-
- lib/soap/
|
57
|
-
- lib/soap/
|
58
|
-
- lib/soap/
|
59
|
-
- lib/soap/
|
60
|
-
- lib/soap/
|
61
|
-
- lib/soap/
|
62
|
-
- lib/soap/
|
63
|
-
- lib/soap/
|
64
|
-
- lib/soap/
|
65
|
-
- lib/soap/
|
66
|
-
- lib/soap/mapping/
|
67
|
-
- lib/soap/mapping/
|
68
|
-
- lib/soap/
|
69
|
-
- lib/soap/
|
70
|
-
- lib/soap/
|
71
|
-
- lib/soap/
|
72
|
-
- lib/soap/
|
73
|
-
- lib/soap/
|
74
|
-
- lib/soap/
|
75
|
-
- lib/soap/
|
76
|
-
- lib/soap/rpc/
|
77
|
-
- lib/soap/rpc/
|
78
|
-
- lib/soap/rpc/
|
79
|
-
- lib/soap/
|
80
|
-
- lib/soap/
|
81
|
-
- lib/soap/
|
82
|
-
- lib/soap/
|
83
|
-
- lib/soap/
|
84
|
-
- lib/soap/
|
85
|
-
- lib/soap/
|
86
|
-
- lib/soap/filter/
|
87
|
-
- lib/soap/
|
88
|
-
- lib/soap/
|
89
|
-
- lib/xsd/ns.rb
|
90
|
-
- lib/xsd/iconvcharset.rb
|
91
|
-
- lib/xsd/qname.rb
|
92
|
-
- lib/xsd/
|
93
|
-
- lib/xsd/codegen
|
94
|
-
- lib/xsd/
|
95
|
-
- lib/xsd/
|
96
|
-
- lib/xsd/
|
97
|
-
- lib/xsd/
|
98
|
-
- lib/xsd/
|
99
|
-
- lib/xsd/
|
100
|
-
- lib/xsd/
|
101
|
-
- lib/xsd/
|
102
|
-
- lib/xsd/
|
103
|
-
- lib/xsd/
|
104
|
-
- lib/xsd/
|
105
|
-
- lib/xsd/xmlparser.rb
|
106
|
-
- lib/xsd/
|
107
|
-
- lib/xsd/
|
108
|
-
- lib/xsd/
|
109
|
-
- lib/wsdl/port.rb
|
110
|
-
- lib/wsdl/
|
111
|
-
- lib/wsdl/
|
112
|
-
- lib/wsdl/
|
113
|
-
- lib/wsdl/
|
114
|
-
- lib/wsdl/
|
115
|
-
- lib/wsdl/
|
116
|
-
- lib/wsdl/
|
117
|
-
- lib/wsdl/
|
118
|
-
- lib/wsdl/
|
119
|
-
- lib/wsdl/
|
120
|
-
- lib/wsdl/
|
121
|
-
- lib/wsdl/
|
122
|
-
- lib/wsdl/
|
123
|
-
- lib/wsdl/
|
124
|
-
- lib/wsdl/
|
125
|
-
- lib/wsdl/
|
126
|
-
- lib/wsdl/
|
127
|
-
- lib/wsdl/soap/
|
128
|
-
- lib/wsdl/soap/
|
129
|
-
- lib/wsdl/soap/
|
130
|
-
- lib/wsdl/soap/
|
131
|
-
- lib/wsdl/soap/
|
132
|
-
- lib/wsdl/soap/
|
133
|
-
- lib/wsdl/soap/
|
134
|
-
- lib/wsdl/soap/
|
135
|
-
- lib/wsdl/soap/
|
136
|
-
- lib/wsdl/
|
137
|
-
- lib/wsdl/
|
138
|
-
- lib/wsdl/
|
139
|
-
- lib/wsdl/
|
140
|
-
- lib/wsdl/
|
141
|
-
- lib/wsdl/
|
142
|
-
- lib/wsdl/
|
143
|
-
- lib/wsdl/
|
144
|
-
- lib/wsdl/
|
145
|
-
- lib/wsdl/
|
146
|
-
- lib/wsdl/
|
147
|
-
- lib/wsdl/
|
148
|
-
- lib/wsdl/
|
149
|
-
- lib/wsdl/
|
150
|
-
- lib/wsdl/
|
151
|
-
- lib/wsdl/
|
152
|
-
- lib/wsdl/
|
153
|
-
- lib/wsdl/xmlSchema/
|
154
|
-
- lib/wsdl/xmlSchema/
|
155
|
-
- lib/wsdl/xmlSchema/
|
156
|
-
- lib/wsdl/xmlSchema/
|
157
|
-
- lib/wsdl/xmlSchema/
|
158
|
-
- lib/wsdl/xmlSchema/
|
159
|
-
- lib/wsdl/xmlSchema/
|
160
|
-
- lib/wsdl/xmlSchema/
|
161
|
-
- lib/wsdl/xmlSchema/
|
162
|
-
- lib/wsdl/xmlSchema/
|
163
|
-
- lib/wsdl/xmlSchema/
|
164
|
-
- lib/wsdl/xmlSchema/
|
165
|
-
- lib/wsdl/xmlSchema/
|
166
|
-
- lib/wsdl/xmlSchema/
|
167
|
-
- lib/wsdl/xmlSchema/
|
168
|
-
- lib/wsdl/xmlSchema/
|
169
|
-
- lib/wsdl/xmlSchema/
|
170
|
-
- lib/wsdl/xmlSchema/
|
171
|
-
- lib/wsdl/xmlSchema/
|
172
|
-
- lib/wsdl/xmlSchema/
|
173
|
-
- lib/wsdl/xmlSchema/
|
174
|
-
- lib/wsdl/xmlSchema/
|
175
|
-
- lib/wsdl/xmlSchema/
|
176
|
-
- lib/wsdl/xmlSchema/
|
177
|
-
- lib/wsdl/xmlSchema/
|
178
|
-
- lib/wsdl/xmlSchema/
|
179
|
-
- lib/wsdl/xmlSchema/
|
180
|
-
- lib/wsdl/xmlSchema/
|
181
|
-
- lib/wsdl/xmlSchema/
|
182
|
-
- lib/wsdl/xmlSchema/
|
183
|
-
- lib/wsdl/xmlSchema/
|
184
|
-
- lib/wsdl/xmlSchema/
|
185
|
-
- lib/wsdl/xmlSchema/
|
186
|
-
- lib/wsdl/
|
187
|
-
- lib/wsdl/
|
188
|
-
- lib/wsdl/
|
189
|
-
- lib/wsdl/
|
190
|
-
- lib/wsdl/
|
191
|
-
- lib/wsdl/
|
192
|
-
- lib/wsdl/
|
193
|
-
- lib/wsdl/
|
194
|
-
- lib/wsdl/
|
195
|
-
- lib/wsdl/
|
196
|
-
- test/runner.rb
|
197
|
-
- test/
|
198
|
-
- test/
|
199
|
-
- test/
|
200
|
-
- test/soap/
|
201
|
-
- test/soap/
|
202
|
-
- test/soap/
|
203
|
-
- test/soap/
|
204
|
-
- test/soap/
|
205
|
-
- test/soap/
|
206
|
-
- test/soap/
|
207
|
-
- test/soap/
|
208
|
-
- test/soap/
|
209
|
-
- test/soap/
|
210
|
-
- test/soap/
|
211
|
-
- test/soap/
|
212
|
-
- test/soap/
|
213
|
-
- test/soap/
|
214
|
-
- test/soap/
|
215
|
-
- test/soap/
|
216
|
-
- test/soap/
|
217
|
-
- test/soap/
|
218
|
-
- test/soap/
|
219
|
-
- test/soap/
|
220
|
-
- test/soap/
|
221
|
-
- test/soap/
|
222
|
-
- test/soap/
|
223
|
-
- test/soap/
|
224
|
-
- test/soap/
|
225
|
-
- test/soap/
|
226
|
-
- test/soap/
|
227
|
-
- test/soap/
|
228
|
-
- test/soap/
|
229
|
-
- test/soap/
|
230
|
-
- test/soap/
|
231
|
-
- test/soap/
|
232
|
-
- test/soap/
|
233
|
-
- test/soap/
|
234
|
-
- test/soap/
|
235
|
-
- test/soap/
|
236
|
-
- test/soap/
|
237
|
-
- test/soap/
|
238
|
-
- test/soap/
|
239
|
-
- test/soap/
|
240
|
-
- test/soap/
|
241
|
-
- test/soap/
|
242
|
-
- test/soap/
|
243
|
-
- test/soap/
|
244
|
-
- test/soap/
|
245
|
-
- test/soap/
|
246
|
-
- test/soap/
|
247
|
-
- test/soap/
|
248
|
-
- test/soap/
|
249
|
-
- test/soap/
|
250
|
-
- test/soap/
|
251
|
-
- test/soap/
|
252
|
-
- test/soap/
|
253
|
-
- test/soap/
|
254
|
-
- test/soap/
|
255
|
-
- test/soap/
|
256
|
-
- test/soap/
|
257
|
-
- test/soap/
|
258
|
-
- test/soap/
|
259
|
-
- test/soap/
|
260
|
-
- test/soap/
|
261
|
-
- test/soap/
|
262
|
-
- test/soap/
|
263
|
-
- test/soap/
|
264
|
-
- test/soap/
|
265
|
-
- test/soap/wsdlDriver/
|
266
|
-
- test/soap/wsdlDriver/
|
267
|
-
- test/soap/wsdlDriver/
|
268
|
-
- test/soap/wsdlDriver/
|
269
|
-
- test/soap/wsdlDriver/
|
270
|
-
- test/
|
271
|
-
- test/
|
272
|
-
- test/
|
273
|
-
- test/sm11/
|
274
|
-
- test/sm11/
|
275
|
-
- test/sm11/
|
276
|
-
- test/sm11/
|
277
|
-
- test/
|
278
|
-
- test/xsd/test_noencoding.rb
|
279
|
-
- test/xsd/test_xmlschemaparser.rb
|
280
|
-
- test/xsd/
|
281
|
-
- test/xsd/
|
282
|
-
- test/xsd/
|
283
|
-
- test/xsd/
|
284
|
-
- test/xsd/
|
285
|
-
- test/xsd/
|
286
|
-
- test/xsd/xsd2ruby/
|
287
|
-
- test/xsd/xsd2ruby/
|
288
|
-
- test/xsd/xsd2ruby/
|
289
|
-
- test/xsd/
|
290
|
-
- test/xsd/
|
291
|
-
- test/interopR2/rwikiInteropService.rb
|
292
|
-
- test/interopR2/clientXMLRPC-EPI.rb
|
293
|
-
- test/interopR2/clientOracle.rb
|
294
|
-
- test/interopR2/simonReg.rb
|
295
|
-
- test/interopR2/clientBEAWebLogic.rb
|
296
|
-
- test/interopR2/clienteSOAP.rb
|
297
|
-
- test/interopR2/clientMSSOAPToolkit2.0.rb
|
298
|
-
- test/interopR2/test.sh
|
299
|
-
- test/interopR2/README.txt
|
300
|
-
- test/interopR2/iSimonReg.rb
|
301
|
-
- test/interopR2/clientKafkaXSLT.rb
|
302
|
-
- test/interopR2/client4S4C.rb
|
303
|
-
- test/interopR2/clientApacheSOAP.rb
|
304
|
-
- test/interopR2/base.rb
|
305
|
-
- test/interopR2/clientSOAP4R.rb
|
306
|
-
- test/interopR2/clientFrontier.rb
|
307
|
-
- test/interopR2/clientBase.rb
|
308
|
-
- test/interopR2/clientHP.rb
|
309
|
-
- test/interopR2/interopService.rb
|
310
|
-
- test/interopR2/clientSQLData.rb
|
311
|
-
- test/interopR2/clientNuWave.rb
|
312
|
-
- test/interopR2/clientSOAP__Lite.rb
|
313
|
-
- test/interopR2/clientEasySoap.rb
|
314
|
-
- test/interopR2/clientWingfoot.rb
|
315
|
-
- test/interopR2/clientWebMethods.rb
|
316
|
-
- test/interopR2/clientCapeConnect.rb
|
317
|
-
- test/interopR2/clientPhalanx.rb
|
318
|
-
- test/interopR2/clientXMLBus.rb
|
319
|
-
- test/interopR2/clientGLUE.rb
|
320
|
-
- test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
|
321
|
-
- test/interopR2/server.rb
|
322
|
-
- test/interopR2/clientASP.NET.rb
|
323
|
-
- test/interopR2/client.rb
|
324
|
-
- test/interopR2/clientApacheAxis.rb
|
325
|
-
- test/interopR2/clientDelphi.rb
|
326
|
-
- test/interopR2/clientgSOAP.rb
|
327
|
-
- test/interopR2/clientSun.rb
|
328
|
-
- test/interopR2/clientZSI.rb
|
329
|
-
- test/interopR2/clientJSOAP.rb
|
330
|
-
- test/interopR2/clientWASPC.rb
|
331
|
-
- test/interopR2/interopResultBase.rb
|
332
|
-
- test/interopR2/clientWhiteMesa.rb
|
333
|
-
- test/interopR2/clientXSOAP.rb
|
334
|
-
- test/interopR2/server.cgi
|
335
|
-
- test/interopR2/clientSpray2001.rb
|
336
|
-
- test/interopR2/clientSilverStream.rb
|
337
|
-
- test/interopR2/clientSIMACE.rb
|
338
|
-
- test/interopR2/clientPEAR.rb
|
339
|
-
- test/interopR2/client.NetRemoting.rb
|
340
|
-
- test/interopR2/clientVWOpentalkSoap.rb
|
341
|
-
- test/interopR2/clientWASP.rb
|
342
|
-
- test/interopR2/client4S4C2.rb
|
343
|
-
- test/interopR2/clientJAX-RPC.rb
|
344
|
-
- test/interopR2/clientNuSOAP.rb
|
345
|
-
- test/interopR2/clientkSOAP.rb
|
346
|
-
- test/interopR2/clientMSSOAPToolkit3.0.rb
|
347
|
-
- test/interopR2/SOAPBuildersInterop_R2.wsdl
|
348
|
-
- test/interopR2/clientOpenLink.rb
|
349
|
-
- test/wsdl/
|
350
|
-
- test/wsdl/
|
351
|
-
- test/wsdl/
|
352
|
-
- test/wsdl/
|
353
|
-
- test/wsdl/
|
354
|
-
- test/wsdl/
|
355
|
-
- test/wsdl/
|
356
|
-
- test/wsdl/
|
357
|
-
- test/wsdl/
|
358
|
-
- test/wsdl/
|
359
|
-
- test/wsdl/
|
360
|
-
- test/wsdl/
|
361
|
-
- test/wsdl/
|
362
|
-
- test/wsdl/soap/
|
363
|
-
- test/wsdl/soap/
|
364
|
-
- test/wsdl/soap/wsdl2ruby/
|
365
|
-
- test/wsdl/soap/wsdl2ruby/
|
366
|
-
- test/wsdl/soap/wsdl2ruby/
|
367
|
-
- test/wsdl/soap/wsdl2ruby/
|
368
|
-
- test/wsdl/soap/wsdl2ruby/
|
369
|
-
- test/wsdl/soap/wsdl2ruby/
|
370
|
-
- test/wsdl/soap/wsdl2ruby/
|
371
|
-
- test/wsdl/soap/wsdl2ruby/
|
372
|
-
- test/wsdl/soap/
|
373
|
-
- test/wsdl/
|
374
|
-
- test/wsdl/
|
375
|
-
- test/wsdl/
|
376
|
-
- test/wsdl/
|
377
|
-
- test/wsdl/
|
378
|
-
- test/wsdl/
|
379
|
-
- test/wsdl/
|
380
|
-
- test/wsdl/any/
|
381
|
-
- test/wsdl/
|
382
|
-
- test/wsdl/
|
383
|
-
- test/wsdl/
|
384
|
-
- test/wsdl/
|
385
|
-
- test/wsdl/
|
386
|
-
- test/wsdl/simpletype/
|
387
|
-
- test/wsdl/simpletype/
|
388
|
-
- test/wsdl/simpletype/rpc/
|
389
|
-
- test/wsdl/simpletype/rpc/
|
390
|
-
- test/wsdl/simpletype/rpc/
|
391
|
-
- test/wsdl/
|
392
|
-
- test/wsdl/
|
393
|
-
- test/wsdl/
|
394
|
-
- test/wsdl/
|
395
|
-
- test/wsdl/
|
396
|
-
- test/wsdl/
|
397
|
-
- test/wsdl/
|
398
|
-
- test/wsdl/
|
399
|
-
- test/wsdl/
|
400
|
-
- test/wsdl/raa/
|
401
|
-
- test/wsdl/raa/
|
402
|
-
- test/wsdl/
|
403
|
-
- test/wsdl/
|
404
|
-
- test/wsdl/
|
405
|
-
- test/wsdl/
|
406
|
-
- test/wsdl/
|
407
|
-
- test/wsdl/document/
|
408
|
-
- test/wsdl/document/
|
409
|
-
- test/wsdl/document/
|
410
|
-
- test/wsdl/
|
411
|
-
- test/wsdl/
|
412
|
-
- test/wsdl/
|
413
|
-
- test/wsdl/
|
414
|
-
- test/wsdl/
|
415
|
-
- test/wsdl/
|
416
|
-
- test/wsdl/
|
417
|
-
- test/wsdl/
|
418
|
-
- test/wsdl/
|
419
|
-
- test/wsdl/
|
420
|
-
- test/wsdl/
|
421
|
-
- test/wsdl/
|
422
|
-
- test/wsdl/
|
423
|
-
- test/wsdl/
|
424
|
-
- test/wsdl/
|
425
|
-
- test/wsdl/
|
426
|
-
- test/wsdl/datetime/
|
427
|
-
- test/wsdl/datetime/
|
428
|
-
- test/wsdl/datetime/
|
429
|
-
- test/wsdl/
|
430
|
-
- test/wsdl/
|
431
|
-
- test/wsdl/oneway/
|
432
|
-
- test/wsdl/
|
433
|
-
- test/wsdl/fault/
|
434
|
-
- test/wsdl/fault/
|
435
|
-
- test/wsdl/fault/
|
436
|
-
- test/wsdl/
|
437
|
-
- test/wsdl/rpc/
|
438
|
-
- test/wsdl/rpc/
|
439
|
-
- test/wsdl/rpc/
|
440
|
-
- test/wsdl/
|
441
|
-
- test/wsdl/soaptype/
|
442
|
-
- test/wsdl/
|
443
|
-
- test/wsdl/overload/
|
444
|
-
- test/wsdl/overload/
|
445
|
-
- test/wsdl/overload/
|
446
|
-
- test/wsdl/overload/
|
447
|
-
- test/wsdl/
|
448
|
-
- test/wsdl/map/
|
449
|
-
- test/wsdl/map/
|
450
|
-
- test/wsdl/
|
451
|
-
- test/wsdl/choice/test_choice.rb
|
452
|
-
- test/wsdl/choice/choice.wsdl
|
453
|
-
- test/wsdl/simplecontent/simplecontent.wsdl
|
454
|
-
- test/wsdl/simplecontent/test_simplecontent.rb
|
455
|
-
- test/wsdl/qualified/test_qualified.rb
|
456
|
-
- test/wsdl/qualified/lp.wsdl
|
457
|
-
- test/wsdl/qualified/lp.xsd
|
458
|
-
- test/wsdl/qualified/np.wsdl
|
459
|
-
- test/wsdl/qualified/test_unqualified.rb
|
460
|
-
- test/interopR4/client.rb
|
461
|
-
has_rdoc:
|
462
|
-
homepage:
|
37
|
+
- bin/wsdl2ruby.rb
|
38
|
+
- bin/xsd2ruby.rb
|
39
|
+
- lib/soap/httpconfigloader.rb
|
40
|
+
- lib/soap/ns.rb
|
41
|
+
- lib/soap/marshal.rb
|
42
|
+
- lib/soap/property.rb
|
43
|
+
- lib/soap/attrproxy.rb
|
44
|
+
- lib/soap/mapping.rb
|
45
|
+
- lib/soap/netHttpClient.rb
|
46
|
+
- lib/soap/parser.rb
|
47
|
+
- lib/soap/streamHandler.rb
|
48
|
+
- lib/soap/nestedexception.rb
|
49
|
+
- lib/soap/attachment.rb
|
50
|
+
- lib/soap/proxy.rb
|
51
|
+
- lib/soap/processor.rb
|
52
|
+
- lib/soap/filter.rb
|
53
|
+
- lib/soap/baseData.rb
|
54
|
+
- lib/soap/generator.rb
|
55
|
+
- lib/soap/mimemessage.rb
|
56
|
+
- lib/soap/soap.rb
|
57
|
+
- lib/soap/element.rb
|
58
|
+
- lib/soap/wsdlDriver.rb
|
59
|
+
- lib/soap/version.rb
|
60
|
+
- lib/soap/header/mappinghandler.rb
|
61
|
+
- lib/soap/header/handlerset.rb
|
62
|
+
- lib/soap/header/simplehandler.rb
|
63
|
+
- lib/soap/header/handler.rb
|
64
|
+
- lib/soap/encodingstyle/literalHandler.rb
|
65
|
+
- lib/soap/encodingstyle/soapHandler.rb
|
66
|
+
- lib/soap/encodingstyle/handler.rb
|
67
|
+
- lib/soap/encodingstyle/aspDotNetHandler.rb
|
68
|
+
- lib/soap/mapping/encodedregistry.rb
|
69
|
+
- lib/soap/mapping/wsdlencodedregistry.rb
|
70
|
+
- lib/soap/mapping/factory.rb
|
71
|
+
- lib/soap/mapping/typeMap.rb
|
72
|
+
- lib/soap/mapping/mapping.rb
|
73
|
+
- lib/soap/mapping/literalregistry.rb
|
74
|
+
- lib/soap/mapping/schemadefinition.rb
|
75
|
+
- lib/soap/mapping/rubytypeFactory.rb
|
76
|
+
- lib/soap/mapping/wsdlliteralregistry.rb
|
77
|
+
- lib/soap/mapping/registry.rb
|
78
|
+
- lib/soap/rpc/httpserver.rb
|
79
|
+
- lib/soap/rpc/standaloneServer.rb
|
80
|
+
- lib/soap/rpc/soaplet.rb
|
81
|
+
- lib/soap/rpc/proxy.rb
|
82
|
+
- lib/soap/rpc/rpc.rb
|
83
|
+
- lib/soap/rpc/driver.rb
|
84
|
+
- lib/soap/rpc/cgistub.rb
|
85
|
+
- lib/soap/rpc/router.rb
|
86
|
+
- lib/soap/rpc/methodDef.rb
|
87
|
+
- lib/soap/rpc/element.rb
|
88
|
+
- lib/soap/filter/handler.rb
|
89
|
+
- lib/soap/filter/streamhandler.rb
|
90
|
+
- lib/soap/filter/filterchain.rb
|
91
|
+
- lib/xsd/ns.rb
|
92
|
+
- lib/xsd/iconvcharset.rb
|
93
|
+
- lib/xsd/qname.rb
|
94
|
+
- lib/xsd/mapping.rb
|
95
|
+
- lib/xsd/codegen.rb
|
96
|
+
- lib/xsd/namedelements.rb
|
97
|
+
- lib/xsd/xmlparser.rb
|
98
|
+
- lib/xsd/datatypes.rb
|
99
|
+
- lib/xsd/datatypes1999.rb
|
100
|
+
- lib/xsd/charset.rb
|
101
|
+
- lib/xsd/codegen/gensupport.rb
|
102
|
+
- lib/xsd/codegen/moduledef.rb
|
103
|
+
- lib/xsd/codegen/classdef.rb
|
104
|
+
- lib/xsd/codegen/commentdef.rb
|
105
|
+
- lib/xsd/codegen/methoddef.rb
|
106
|
+
- lib/xsd/xmlparser/xmlscanner.rb
|
107
|
+
- lib/xsd/xmlparser/rexmlparser.rb
|
108
|
+
- lib/xsd/xmlparser/parser.rb
|
109
|
+
- lib/xsd/xmlparser/libxmlparser.rb
|
110
|
+
- lib/xsd/xmlparser/xmlparser.rb
|
111
|
+
- lib/wsdl/port.rb
|
112
|
+
- lib/wsdl/portType.rb
|
113
|
+
- lib/wsdl/data.rb
|
114
|
+
- lib/wsdl/types.rb
|
115
|
+
- lib/wsdl/parser.rb
|
116
|
+
- lib/wsdl/param.rb
|
117
|
+
- lib/wsdl/message.rb
|
118
|
+
- lib/wsdl/documentation.rb
|
119
|
+
- lib/wsdl/part.rb
|
120
|
+
- lib/wsdl/service.rb
|
121
|
+
- lib/wsdl/operationBinding.rb
|
122
|
+
- lib/wsdl/importer.rb
|
123
|
+
- lib/wsdl/info.rb
|
124
|
+
- lib/wsdl/wsdl.rb
|
125
|
+
- lib/wsdl/import.rb
|
126
|
+
- lib/wsdl/binding.rb
|
127
|
+
- lib/wsdl/definitions.rb
|
128
|
+
- lib/wsdl/operation.rb
|
129
|
+
- lib/wsdl/soap/classNameCreator.rb
|
130
|
+
- lib/wsdl/soap/data.rb
|
131
|
+
- lib/wsdl/soap/cgiStubCreator.rb
|
132
|
+
- lib/wsdl/soap/servantSkeltonCreator.rb
|
133
|
+
- lib/wsdl/soap/classDefCreator.rb
|
134
|
+
- lib/wsdl/soap/complexType.rb
|
135
|
+
- lib/wsdl/soap/standaloneServerStubCreator.rb
|
136
|
+
- lib/wsdl/soap/body.rb
|
137
|
+
- lib/wsdl/soap/driverCreator.rb
|
138
|
+
- lib/wsdl/soap/clientSkeltonCreator.rb
|
139
|
+
- lib/wsdl/soap/wsdl2ruby.rb
|
140
|
+
- lib/wsdl/soap/fault.rb
|
141
|
+
- lib/wsdl/soap/header.rb
|
142
|
+
- lib/wsdl/soap/methodDefCreator.rb
|
143
|
+
- lib/wsdl/soap/mappingRegistryCreatorSupport.rb
|
144
|
+
- lib/wsdl/soap/mappingRegistryCreator.rb
|
145
|
+
- lib/wsdl/soap/headerfault.rb
|
146
|
+
- lib/wsdl/soap/classDefCreatorSupport.rb
|
147
|
+
- lib/wsdl/soap/literalMappingRegistryCreator.rb
|
148
|
+
- lib/wsdl/soap/binding.rb
|
149
|
+
- lib/wsdl/soap/encodedMappingRegistryCreator.rb
|
150
|
+
- lib/wsdl/soap/element.rb
|
151
|
+
- lib/wsdl/soap/servletStubCreator.rb
|
152
|
+
- lib/wsdl/soap/definitions.rb
|
153
|
+
- lib/wsdl/soap/operation.rb
|
154
|
+
- lib/wsdl/soap/address.rb
|
155
|
+
- lib/wsdl/xmlSchema/complexExtension.rb
|
156
|
+
- lib/wsdl/xmlSchema/maxinclusive.rb
|
157
|
+
- lib/wsdl/xmlSchema/sequence.rb
|
158
|
+
- lib/wsdl/xmlSchema/list.rb
|
159
|
+
- lib/wsdl/xmlSchema/anyAttribute.rb
|
160
|
+
- lib/wsdl/xmlSchema/all.rb
|
161
|
+
- lib/wsdl/xmlSchema/whitespace.rb
|
162
|
+
- lib/wsdl/xmlSchema/importHandler.rb
|
163
|
+
- lib/wsdl/xmlSchema/length.rb
|
164
|
+
- lib/wsdl/xmlSchema/schema.rb
|
165
|
+
- lib/wsdl/xmlSchema/data.rb
|
166
|
+
- lib/wsdl/xmlSchema/ref.rb
|
167
|
+
- lib/wsdl/xmlSchema/unique.rb
|
168
|
+
- lib/wsdl/xmlSchema/complexType.rb
|
169
|
+
- lib/wsdl/xmlSchema/parser.rb
|
170
|
+
- lib/wsdl/xmlSchema/attributeGroup.rb
|
171
|
+
- lib/wsdl/xmlSchema/content.rb
|
172
|
+
- lib/wsdl/xmlSchema/simpleRestriction.rb
|
173
|
+
- lib/wsdl/xmlSchema/attribute.rb
|
174
|
+
- lib/wsdl/xmlSchema/pattern.rb
|
175
|
+
- lib/wsdl/xmlSchema/annotation.rb
|
176
|
+
- lib/wsdl/xmlSchema/fractiondigits.rb
|
177
|
+
- lib/wsdl/xmlSchema/union.rb
|
178
|
+
- lib/wsdl/xmlSchema/minexclusive.rb
|
179
|
+
- lib/wsdl/xmlSchema/complexRestriction.rb
|
180
|
+
- lib/wsdl/xmlSchema/choice.rb
|
181
|
+
- lib/wsdl/xmlSchema/group.rb
|
182
|
+
- lib/wsdl/xmlSchema/maxlength.rb
|
183
|
+
- lib/wsdl/xmlSchema/simpleExtension.rb
|
184
|
+
- lib/wsdl/xmlSchema/xsd2ruby.rb
|
185
|
+
- lib/wsdl/xmlSchema/simpleContent.rb
|
186
|
+
- lib/wsdl/xmlSchema/simpleType.rb
|
187
|
+
- lib/wsdl/xmlSchema/importer.rb
|
188
|
+
- lib/wsdl/xmlSchema/minlength.rb
|
189
|
+
- lib/wsdl/xmlSchema/mininclusive.rb
|
190
|
+
- lib/wsdl/xmlSchema/import.rb
|
191
|
+
- lib/wsdl/xmlSchema/totaldigits.rb
|
192
|
+
- lib/wsdl/xmlSchema/maxexclusive.rb
|
193
|
+
- lib/wsdl/xmlSchema/enumeration.rb
|
194
|
+
- lib/wsdl/xmlSchema/include.rb
|
195
|
+
- lib/wsdl/xmlSchema/element.rb
|
196
|
+
- lib/wsdl/xmlSchema/any.rb
|
197
|
+
- lib/wsdl/xmlSchema/complexContent.rb
|
198
|
+
- test/runner.rb
|
199
|
+
- test/helper.rb
|
200
|
+
- test/16runner.rb
|
201
|
+
- test/testutil.rb
|
202
|
+
- test/soap/test_soapelement.rb
|
203
|
+
- test/soap/htpasswd
|
204
|
+
- test/soap/test_envelopenamespace.rb
|
205
|
+
- test/soap/test_no_indent.rb
|
206
|
+
- test/soap/test_streamhandler.rb
|
207
|
+
- test/soap/test_nestedexception.rb
|
208
|
+
- test/soap/test_property.rb
|
209
|
+
- test/soap/test_styleuse.rb
|
210
|
+
- test/soap/test_custom_ns.rb
|
211
|
+
- test/soap/test_custommap.rb
|
212
|
+
- test/soap/test_httpconfigloader.rb
|
213
|
+
- test/soap/test_response_as_xml.rb
|
214
|
+
- test/soap/test_empty.rb
|
215
|
+
- test/soap/test_mapping.rb
|
216
|
+
- test/soap/test_cookie.rb
|
217
|
+
- test/soap/test_basetype.rb
|
218
|
+
- test/soap/test_extraattr.rb
|
219
|
+
- test/soap/test_nil.rb
|
220
|
+
- test/soap/test_generator.rb
|
221
|
+
- test/soap/marshal/test_marshal.rb
|
222
|
+
- test/soap/marshal/test_struct.rb
|
223
|
+
- test/soap/marshal/test_digraph.rb
|
224
|
+
- test/soap/marshal/marshaltestlib.rb
|
225
|
+
- test/soap/header/test_authheader_cgi.rb
|
226
|
+
- test/soap/header/test_simplehandler.rb
|
227
|
+
- test/soap/header/server.cgi
|
228
|
+
- test/soap/header/test_authheader.rb
|
229
|
+
- test/soap/ssl/README
|
230
|
+
- test/soap/ssl/subca.cert
|
231
|
+
- test/soap/ssl/server.cert
|
232
|
+
- test/soap/ssl/test_ssl.rb
|
233
|
+
- test/soap/ssl/client.key
|
234
|
+
- test/soap/ssl/server.key
|
235
|
+
- test/soap/ssl/ca.cert
|
236
|
+
- test/soap/ssl/sslsvr.rb
|
237
|
+
- test/soap/ssl/client.cert
|
238
|
+
- test/soap/swa/test_file.rb
|
239
|
+
- test/soap/helloworld/hw_s.rb
|
240
|
+
- test/soap/helloworld/test_helloworld.rb
|
241
|
+
- test/soap/literalArrayMapping/amazonresponse.xml
|
242
|
+
- test/soap/literalArrayMapping/test_definedarray.rb
|
243
|
+
- test/soap/literalArrayMapping/amazonEcDriver.rb
|
244
|
+
- test/soap/literalArrayMapping/amazonEc.rb
|
245
|
+
- test/soap/case/test_mapping.rb
|
246
|
+
- test/soap/calc/test_calc.rb
|
247
|
+
- test/soap/calc/test_calc_cgi.rb
|
248
|
+
- test/soap/calc/test_calc2.rb
|
249
|
+
- test/soap/calc/server2.rb
|
250
|
+
- test/soap/calc/server.rb
|
251
|
+
- test/soap/calc/calc.rb
|
252
|
+
- test/soap/calc/calc2.rb
|
253
|
+
- test/soap/calc/server.cgi
|
254
|
+
- test/soap/auth/htpasswd
|
255
|
+
- test/soap/auth/test_digest.rb
|
256
|
+
- test/soap/auth/test_basic.rb
|
257
|
+
- test/soap/auth/htdigest
|
258
|
+
- test/soap/struct/test_struct.rb
|
259
|
+
- test/soap/asp.net/test_aspdotnet.rb
|
260
|
+
- test/soap/asp.net/hello.wsdl
|
261
|
+
- test/soap/styleuse/server.rb
|
262
|
+
- test/soap/styleuse/client.rb
|
263
|
+
- test/soap/fault/test_soaparray.rb
|
264
|
+
- test/soap/fault/test_customfault.rb
|
265
|
+
- test/soap/fault/test_fault.rb
|
266
|
+
- test/soap/filter/test_filter.rb
|
267
|
+
- test/soap/wsdlDriver/test_calc.rb
|
268
|
+
- test/soap/wsdlDriver/test_document.rb
|
269
|
+
- test/soap/wsdlDriver/test_simpletype.rb
|
270
|
+
- test/soap/wsdlDriver/README.txt
|
271
|
+
- test/soap/wsdlDriver/calc.wsdl
|
272
|
+
- test/soap/wsdlDriver/simpletype.wsdl
|
273
|
+
- test/soap/wsdlDriver/echo_version.rb
|
274
|
+
- test/soap/wsdlDriver/document.wsdl
|
275
|
+
- test/sm11/driver.rb
|
276
|
+
- test/sm11/classDef.rb
|
277
|
+
- test/sm11/server.rb
|
278
|
+
- test/sm11/client.rb
|
279
|
+
- test/sm11/servant.rb
|
280
|
+
- test/xsd/test_noencoding.rb
|
281
|
+
- test/xsd/test_xmlschemaparser.rb
|
282
|
+
- test/xsd/xmlschema.xml
|
283
|
+
- test/xsd/test_xsd.rb
|
284
|
+
- test/xsd/test_ns.rb
|
285
|
+
- test/xsd/xmllang.xml
|
286
|
+
- test/xsd/noencoding.xml
|
287
|
+
- test/xsd/codegen/test_classdef.rb
|
288
|
+
- test/xsd/xsd2ruby/expected_mysample_mapper.rb
|
289
|
+
- test/xsd/xsd2ruby/test_xsd2ruby.rb
|
290
|
+
- test/xsd/xsd2ruby/expected_mysample.rb
|
291
|
+
- test/xsd/xsd2ruby/section.xsd
|
292
|
+
- test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
|
293
|
+
- test/interopR2/rwikiInteropService.rb
|
294
|
+
- test/interopR2/clientXMLRPC-EPI.rb
|
295
|
+
- test/interopR2/clientOracle.rb
|
296
|
+
- test/interopR2/simonReg.rb
|
297
|
+
- test/interopR2/clientBEAWebLogic.rb
|
298
|
+
- test/interopR2/clienteSOAP.rb
|
299
|
+
- test/interopR2/clientMSSOAPToolkit2.0.rb
|
300
|
+
- test/interopR2/test.sh
|
301
|
+
- test/interopR2/README.txt
|
302
|
+
- test/interopR2/iSimonReg.rb
|
303
|
+
- test/interopR2/clientKafkaXSLT.rb
|
304
|
+
- test/interopR2/client4S4C.rb
|
305
|
+
- test/interopR2/clientApacheSOAP.rb
|
306
|
+
- test/interopR2/base.rb
|
307
|
+
- test/interopR2/clientSOAP4R.rb
|
308
|
+
- test/interopR2/clientFrontier.rb
|
309
|
+
- test/interopR2/clientBase.rb
|
310
|
+
- test/interopR2/clientHP.rb
|
311
|
+
- test/interopR2/interopService.rb
|
312
|
+
- test/interopR2/clientSQLData.rb
|
313
|
+
- test/interopR2/clientNuWave.rb
|
314
|
+
- test/interopR2/clientSOAP__Lite.rb
|
315
|
+
- test/interopR2/clientEasySoap.rb
|
316
|
+
- test/interopR2/clientWingfoot.rb
|
317
|
+
- test/interopR2/clientWebMethods.rb
|
318
|
+
- test/interopR2/clientCapeConnect.rb
|
319
|
+
- test/interopR2/clientPhalanx.rb
|
320
|
+
- test/interopR2/clientXMLBus.rb
|
321
|
+
- test/interopR2/clientGLUE.rb
|
322
|
+
- test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
|
323
|
+
- test/interopR2/server.rb
|
324
|
+
- test/interopR2/clientASP.NET.rb
|
325
|
+
- test/interopR2/client.rb
|
326
|
+
- test/interopR2/clientApacheAxis.rb
|
327
|
+
- test/interopR2/clientDelphi.rb
|
328
|
+
- test/interopR2/clientgSOAP.rb
|
329
|
+
- test/interopR2/clientSun.rb
|
330
|
+
- test/interopR2/clientZSI.rb
|
331
|
+
- test/interopR2/clientJSOAP.rb
|
332
|
+
- test/interopR2/clientWASPC.rb
|
333
|
+
- test/interopR2/interopResultBase.rb
|
334
|
+
- test/interopR2/clientWhiteMesa.rb
|
335
|
+
- test/interopR2/clientXSOAP.rb
|
336
|
+
- test/interopR2/server.cgi
|
337
|
+
- test/interopR2/clientSpray2001.rb
|
338
|
+
- test/interopR2/clientSilverStream.rb
|
339
|
+
- test/interopR2/clientSIMACE.rb
|
340
|
+
- test/interopR2/clientPEAR.rb
|
341
|
+
- test/interopR2/client.NetRemoting.rb
|
342
|
+
- test/interopR2/clientVWOpentalkSoap.rb
|
343
|
+
- test/interopR2/clientWASP.rb
|
344
|
+
- test/interopR2/client4S4C2.rb
|
345
|
+
- test/interopR2/clientJAX-RPC.rb
|
346
|
+
- test/interopR2/clientNuSOAP.rb
|
347
|
+
- test/interopR2/clientkSOAP.rb
|
348
|
+
- test/interopR2/clientMSSOAPToolkit3.0.rb
|
349
|
+
- test/interopR2/SOAPBuildersInterop_R2.wsdl
|
350
|
+
- test/interopR2/clientOpenLink.rb
|
351
|
+
- test/wsdl/test_emptycomplextype.rb
|
352
|
+
- test/wsdl/test_multiplefault.rb
|
353
|
+
- test/wsdl/emptycomplextype.wsdl
|
354
|
+
- test/wsdl/test_fault.rb
|
355
|
+
- test/wsdl/multiplefault.wsdl
|
356
|
+
- test/wsdl/anonymous/expectedClassDef.rb
|
357
|
+
- test/wsdl/anonymous/lp.wsdl
|
358
|
+
- test/wsdl/anonymous/expectedDriver.rb
|
359
|
+
- test/wsdl/anonymous/expectedMappingRegistry.rb
|
360
|
+
- test/wsdl/anonymous/test_anonymous.rb
|
361
|
+
- test/wsdl/marshal/person.wsdl
|
362
|
+
- test/wsdl/marshal/person_org.rb
|
363
|
+
- test/wsdl/marshal/test_wsdlmarshal.rb
|
364
|
+
- test/wsdl/soap/test_soapbodyparts.rb
|
365
|
+
- test/wsdl/soap/soapbodyparts.wsdl
|
366
|
+
- test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
|
367
|
+
- test/wsdl/soap/wsdl2ruby/expectedServant.rb
|
368
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.cgi
|
369
|
+
- test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
|
370
|
+
- test/wsdl/soap/wsdl2ruby/expectedClient.rb
|
371
|
+
- test/wsdl/soap/wsdl2ruby/expectedDriver.rb
|
372
|
+
- test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
|
373
|
+
- test/wsdl/soap/wsdl2ruby/expectedService.rb
|
374
|
+
- test/wsdl/soap/wsdl2ruby/rpc.wsdl
|
375
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
|
376
|
+
- test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
|
377
|
+
- test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
|
378
|
+
- test/wsdl/soap/wsdl2ruby/section/test_section.rb
|
379
|
+
- test/wsdl/soap/wsdl2ruby/section/section.xsd
|
380
|
+
- test/wsdl/axisArray/axisArray.wsdl
|
381
|
+
- test/wsdl/axisArray/test_axisarray.rb
|
382
|
+
- test/wsdl/any/test_any.rb
|
383
|
+
- test/wsdl/any/any.wsdl
|
384
|
+
- test/wsdl/any/expectedDriver.rb
|
385
|
+
- test/wsdl/any/expectedMappingRegistry.rb
|
386
|
+
- test/wsdl/any/expectedService.rb
|
387
|
+
- test/wsdl/any/expectedEcho.rb
|
388
|
+
- test/wsdl/simpletype/test_simpletype.rb
|
389
|
+
- test/wsdl/simpletype/simpletype.wsdl
|
390
|
+
- test/wsdl/simpletype/rpc/expectedServant.rb
|
391
|
+
- test/wsdl/simpletype/rpc/expectedClient.rb
|
392
|
+
- test/wsdl/simpletype/rpc/expectedDriver.rb
|
393
|
+
- test/wsdl/simpletype/rpc/test_rpc.rb
|
394
|
+
- test/wsdl/simpletype/rpc/expectedEchoVersion.rb
|
395
|
+
- test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
|
396
|
+
- test/wsdl/simpletype/rpc/expectedService.rb
|
397
|
+
- test/wsdl/simpletype/rpc/rpc.wsdl
|
398
|
+
- test/wsdl/list/list.wsdl
|
399
|
+
- test/wsdl/list/test_list.rb
|
400
|
+
- test/wsdl/complexcontent/test_echo.rb
|
401
|
+
- test/wsdl/complexcontent/complexContent.wsdl
|
402
|
+
- test/wsdl/raa/expectedClassDef.rb
|
403
|
+
- test/wsdl/raa/raa.wsdl
|
404
|
+
- test/wsdl/raa/README.txt
|
405
|
+
- test/wsdl/raa/RAAService.rb
|
406
|
+
- test/wsdl/raa/expectedDriver.rb
|
407
|
+
- test/wsdl/raa/expectedMappingRegistry.rb
|
408
|
+
- test/wsdl/raa/test_raa.rb
|
409
|
+
- test/wsdl/document/test_number.rb
|
410
|
+
- test/wsdl/document/ping_nosoapaction.wsdl
|
411
|
+
- test/wsdl/document/test_nosoapaction.rb
|
412
|
+
- test/wsdl/document/test_rpc.rb
|
413
|
+
- test/wsdl/document/document.wsdl
|
414
|
+
- test/wsdl/document/number.wsdl
|
415
|
+
- test/wsdl/document/array/test_array.rb
|
416
|
+
- test/wsdl/document/array/double.wsdl
|
417
|
+
- test/wsdl/group/expectedClassdef.rb
|
418
|
+
- test/wsdl/group/expectedDriver.rb
|
419
|
+
- test/wsdl/group/test_rpc.rb
|
420
|
+
- test/wsdl/group/group.wsdl
|
421
|
+
- test/wsdl/group/expectedMappingRegistry.rb
|
422
|
+
- test/wsdl/ref/expectedProduct.rb
|
423
|
+
- test/wsdl/ref/test_ref.rb
|
424
|
+
- test/wsdl/ref/expectedDriver.rb
|
425
|
+
- test/wsdl/ref/product.wsdl
|
426
|
+
- test/wsdl/abstract/abstract.wsdl
|
427
|
+
- test/wsdl/abstract/test_abstract.rb
|
428
|
+
- test/wsdl/datetime/test_datetime.rb
|
429
|
+
- test/wsdl/datetime/datetime.rb
|
430
|
+
- test/wsdl/datetime/datetime.wsdl
|
431
|
+
- test/wsdl/datetime/DatetimeService.rb
|
432
|
+
- test/wsdl/datetime/datetimeServant.rb
|
433
|
+
- test/wsdl/oneway/test_oneway.rb
|
434
|
+
- test/wsdl/oneway/oneway.wsdl
|
435
|
+
- test/wsdl/fault/fault.wsdl
|
436
|
+
- test/wsdl/fault/test_multifault.rb
|
437
|
+
- test/wsdl/fault/test_fault.rb
|
438
|
+
- test/wsdl/fault/multifault.wsdl
|
439
|
+
- test/wsdl/rpc/test-rpc-lit.wsdl
|
440
|
+
- test/wsdl/rpc/test_rpc_lit.rb
|
441
|
+
- test/wsdl/rpc/test_rpc.rb
|
442
|
+
- test/wsdl/rpc/rpc.wsdl
|
443
|
+
- test/wsdl/soaptype/test_soaptype.rb
|
444
|
+
- test/wsdl/soaptype/soaptype.wsdl
|
445
|
+
- test/wsdl/overload/expectedServant.rb
|
446
|
+
- test/wsdl/overload/expectedClient.rb
|
447
|
+
- test/wsdl/overload/overload.wsdl
|
448
|
+
- test/wsdl/overload/expectedDriver.rb
|
449
|
+
- test/wsdl/overload/test_overload.rb
|
450
|
+
- test/wsdl/map/map.wsdl
|
451
|
+
- test/wsdl/map/test_map.rb
|
452
|
+
- test/wsdl/map/map.xml
|
453
|
+
- test/wsdl/choice/test_choice.rb
|
454
|
+
- test/wsdl/choice/choice.wsdl
|
455
|
+
- test/wsdl/simplecontent/simplecontent.wsdl
|
456
|
+
- test/wsdl/simplecontent/test_simplecontent.rb
|
457
|
+
- test/wsdl/qualified/test_qualified.rb
|
458
|
+
- test/wsdl/qualified/lp.wsdl
|
459
|
+
- test/wsdl/qualified/lp.xsd
|
460
|
+
- test/wsdl/qualified/np.wsdl
|
461
|
+
- test/wsdl/qualified/test_unqualified.rb
|
462
|
+
- test/interopR4/client.rb
|
463
|
+
has_rdoc: true
|
464
|
+
homepage: https://github.com/tomdz/soap4r
|
463
465
|
licenses: []
|
464
466
|
|
465
467
|
post_install_message:
|
466
468
|
rdoc_options: []
|
467
469
|
|
468
470
|
require_paths:
|
469
|
-
- lib
|
471
|
+
- lib
|
470
472
|
required_ruby_version: !ruby/object:Gem::Requirement
|
473
|
+
none: false
|
471
474
|
requirements:
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
version:
|
475
|
+
- - ">="
|
476
|
+
- !ruby/object:Gem::Version
|
477
|
+
version: "0"
|
476
478
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
479
|
+
none: false
|
477
480
|
requirements:
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
version:
|
481
|
+
- - ">="
|
482
|
+
- !ruby/object:Gem::Version
|
483
|
+
version: "0"
|
482
484
|
requirements:
|
483
|
-
- none
|
485
|
+
- none
|
484
486
|
rubyforge_project:
|
485
|
-
rubygems_version: 1.
|
487
|
+
rubygems_version: 1.5.1
|
486
488
|
signing_key:
|
487
489
|
specification_version: 3
|
488
490
|
summary: An updated implementation of SOAP 1.1 for Ruby 1.8 and 1.9.
|