tomdz-soap4r 1.5.8.20111103171510 → 1.5.8.20120202093209

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/wsdl/xmlSchema/importer.rb +6 -1
  2. 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
- content = File.open(location.path).read
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
- version: 1.5.8.20111103171510
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: 2011-11-03 00:00:00 -07:00
13
+ date: 2012-02-02 00:00:00 -08:00
13
14
  default_executable:
14
15
  dependencies:
15
- - !ruby/object:Gem::Dependency
16
- name: httpclient
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 2.1.5.2
24
- version:
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/header/mappinghandler.rb
40
- - lib/soap/header/handlerset.rb
41
- - lib/soap/header/simplehandler.rb
42
- - lib/soap/header/handler.rb
43
- - lib/soap/marshal.rb
44
- - lib/soap/property.rb
45
- - lib/soap/attrproxy.rb
46
- - lib/soap/mapping.rb
47
- - lib/soap/netHttpClient.rb
48
- - lib/soap/parser.rb
49
- - lib/soap/streamHandler.rb
50
- - lib/soap/nestedexception.rb
51
- - lib/soap/attachment.rb
52
- - lib/soap/proxy.rb
53
- - lib/soap/encodingstyle/literalHandler.rb
54
- - lib/soap/encodingstyle/soapHandler.rb
55
- - lib/soap/encodingstyle/handler.rb
56
- - lib/soap/encodingstyle/aspDotNetHandler.rb
57
- - lib/soap/processor.rb
58
- - lib/soap/mapping/encodedregistry.rb
59
- - lib/soap/mapping/wsdlencodedregistry.rb
60
- - lib/soap/mapping/factory.rb
61
- - lib/soap/mapping/typeMap.rb
62
- - lib/soap/mapping/mapping.rb
63
- - lib/soap/mapping/literalregistry.rb
64
- - lib/soap/mapping/schemadefinition.rb
65
- - lib/soap/mapping/rubytypeFactory.rb
66
- - lib/soap/mapping/wsdlliteralregistry.rb
67
- - lib/soap/mapping/registry.rb
68
- - lib/soap/filter.rb
69
- - lib/soap/rpc/httpserver.rb
70
- - lib/soap/rpc/standaloneServer.rb
71
- - lib/soap/rpc/soaplet.rb
72
- - lib/soap/rpc/proxy.rb
73
- - lib/soap/rpc/rpc.rb
74
- - lib/soap/rpc/driver.rb
75
- - lib/soap/rpc/cgistub.rb
76
- - lib/soap/rpc/router.rb
77
- - lib/soap/rpc/methodDef.rb
78
- - lib/soap/rpc/element.rb
79
- - lib/soap/baseData.rb
80
- - lib/soap/generator.rb
81
- - lib/soap/mimemessage.rb
82
- - lib/soap/soap.rb
83
- - lib/soap/element.rb
84
- - lib/soap/filter/handler.rb
85
- - lib/soap/filter/streamhandler.rb
86
- - lib/soap/filter/filterchain.rb
87
- - lib/soap/wsdlDriver.rb
88
- - lib/soap/version.rb
89
- - lib/xsd/ns.rb
90
- - lib/xsd/iconvcharset.rb
91
- - lib/xsd/qname.rb
92
- - lib/xsd/codegen/gensupport.rb
93
- - lib/xsd/codegen/moduledef.rb
94
- - lib/xsd/codegen/classdef.rb
95
- - lib/xsd/codegen/commentdef.rb
96
- - lib/xsd/codegen/methoddef.rb
97
- - lib/xsd/mapping.rb
98
- - lib/xsd/codegen.rb
99
- - lib/xsd/xmlparser/xmlscanner.rb
100
- - lib/xsd/xmlparser/rexmlparser.rb
101
- - lib/xsd/xmlparser/parser.rb
102
- - lib/xsd/xmlparser/libxmlparser.rb
103
- - lib/xsd/xmlparser/xmlparser.rb
104
- - lib/xsd/namedelements.rb
105
- - lib/xsd/xmlparser.rb
106
- - lib/xsd/datatypes.rb
107
- - lib/xsd/datatypes1999.rb
108
- - lib/xsd/charset.rb
109
- - lib/wsdl/port.rb
110
- - lib/wsdl/soap/classNameCreator.rb
111
- - lib/wsdl/soap/data.rb
112
- - lib/wsdl/soap/cgiStubCreator.rb
113
- - lib/wsdl/soap/servantSkeltonCreator.rb
114
- - lib/wsdl/soap/classDefCreator.rb
115
- - lib/wsdl/soap/complexType.rb
116
- - lib/wsdl/soap/standaloneServerStubCreator.rb
117
- - lib/wsdl/soap/body.rb
118
- - lib/wsdl/soap/driverCreator.rb
119
- - lib/wsdl/soap/clientSkeltonCreator.rb
120
- - lib/wsdl/soap/wsdl2ruby.rb
121
- - lib/wsdl/soap/fault.rb
122
- - lib/wsdl/soap/header.rb
123
- - lib/wsdl/soap/methodDefCreator.rb
124
- - lib/wsdl/soap/mappingRegistryCreatorSupport.rb
125
- - lib/wsdl/soap/mappingRegistryCreator.rb
126
- - lib/wsdl/soap/headerfault.rb
127
- - lib/wsdl/soap/classDefCreatorSupport.rb
128
- - lib/wsdl/soap/literalMappingRegistryCreator.rb
129
- - lib/wsdl/soap/binding.rb
130
- - lib/wsdl/soap/encodedMappingRegistryCreator.rb
131
- - lib/wsdl/soap/element.rb
132
- - lib/wsdl/soap/servletStubCreator.rb
133
- - lib/wsdl/soap/definitions.rb
134
- - lib/wsdl/soap/operation.rb
135
- - lib/wsdl/soap/address.rb
136
- - lib/wsdl/portType.rb
137
- - lib/wsdl/data.rb
138
- - lib/wsdl/types.rb
139
- - lib/wsdl/parser.rb
140
- - lib/wsdl/param.rb
141
- - lib/wsdl/message.rb
142
- - lib/wsdl/documentation.rb
143
- - lib/wsdl/xmlSchema/complexExtension.rb
144
- - lib/wsdl/xmlSchema/maxinclusive.rb
145
- - lib/wsdl/xmlSchema/sequence.rb
146
- - lib/wsdl/xmlSchema/list.rb
147
- - lib/wsdl/xmlSchema/anyAttribute.rb
148
- - lib/wsdl/xmlSchema/all.rb
149
- - lib/wsdl/xmlSchema/whitespace.rb
150
- - lib/wsdl/xmlSchema/importHandler.rb
151
- - lib/wsdl/xmlSchema/length.rb
152
- - lib/wsdl/xmlSchema/schema.rb
153
- - lib/wsdl/xmlSchema/data.rb
154
- - lib/wsdl/xmlSchema/ref.rb
155
- - lib/wsdl/xmlSchema/unique.rb
156
- - lib/wsdl/xmlSchema/complexType.rb
157
- - lib/wsdl/xmlSchema/parser.rb
158
- - lib/wsdl/xmlSchema/attributeGroup.rb
159
- - lib/wsdl/xmlSchema/content.rb
160
- - lib/wsdl/xmlSchema/simpleRestriction.rb
161
- - lib/wsdl/xmlSchema/attribute.rb
162
- - lib/wsdl/xmlSchema/pattern.rb
163
- - lib/wsdl/xmlSchema/annotation.rb
164
- - lib/wsdl/xmlSchema/fractiondigits.rb
165
- - lib/wsdl/xmlSchema/union.rb
166
- - lib/wsdl/xmlSchema/minexclusive.rb
167
- - lib/wsdl/xmlSchema/complexRestriction.rb
168
- - lib/wsdl/xmlSchema/choice.rb
169
- - lib/wsdl/xmlSchema/group.rb
170
- - lib/wsdl/xmlSchema/maxlength.rb
171
- - lib/wsdl/xmlSchema/simpleExtension.rb
172
- - lib/wsdl/xmlSchema/xsd2ruby.rb
173
- - lib/wsdl/xmlSchema/simpleContent.rb
174
- - lib/wsdl/xmlSchema/simpleType.rb
175
- - lib/wsdl/xmlSchema/importer.rb
176
- - lib/wsdl/xmlSchema/minlength.rb
177
- - lib/wsdl/xmlSchema/mininclusive.rb
178
- - lib/wsdl/xmlSchema/import.rb
179
- - lib/wsdl/xmlSchema/totaldigits.rb
180
- - lib/wsdl/xmlSchema/maxexclusive.rb
181
- - lib/wsdl/xmlSchema/enumeration.rb
182
- - lib/wsdl/xmlSchema/include.rb
183
- - lib/wsdl/xmlSchema/element.rb
184
- - lib/wsdl/xmlSchema/any.rb
185
- - lib/wsdl/xmlSchema/complexContent.rb
186
- - lib/wsdl/part.rb
187
- - lib/wsdl/service.rb
188
- - lib/wsdl/operationBinding.rb
189
- - lib/wsdl/importer.rb
190
- - lib/wsdl/info.rb
191
- - lib/wsdl/wsdl.rb
192
- - lib/wsdl/import.rb
193
- - lib/wsdl/binding.rb
194
- - lib/wsdl/definitions.rb
195
- - lib/wsdl/operation.rb
196
- - test/runner.rb
197
- - test/soap/marshal/test_marshal.rb
198
- - test/soap/marshal/test_struct.rb
199
- - test/soap/marshal/test_digraph.rb
200
- - test/soap/marshal/marshaltestlib.rb
201
- - test/soap/test_soapelement.rb
202
- - test/soap/htpasswd
203
- - test/soap/header/test_authheader_cgi.rb
204
- - test/soap/header/test_simplehandler.rb
205
- - test/soap/header/server.cgi
206
- - test/soap/header/test_authheader.rb
207
- - test/soap/test_envelopenamespace.rb
208
- - test/soap/ssl/README
209
- - test/soap/ssl/subca.cert
210
- - test/soap/ssl/server.cert
211
- - test/soap/ssl/test_ssl.rb
212
- - test/soap/ssl/client.key
213
- - test/soap/ssl/server.key
214
- - test/soap/ssl/ca.cert
215
- - test/soap/ssl/sslsvr.rb
216
- - test/soap/ssl/client.cert
217
- - test/soap/test_no_indent.rb
218
- - test/soap/test_streamhandler.rb
219
- - test/soap/test_nestedexception.rb
220
- - test/soap/test_property.rb
221
- - test/soap/test_styleuse.rb
222
- - test/soap/test_custom_ns.rb
223
- - test/soap/swa/test_file.rb
224
- - test/soap/helloworld/hw_s.rb
225
- - test/soap/helloworld/test_helloworld.rb
226
- - test/soap/test_custommap.rb
227
- - test/soap/literalArrayMapping/amazonresponse.xml
228
- - test/soap/literalArrayMapping/test_definedarray.rb
229
- - test/soap/literalArrayMapping/amazonEcDriver.rb
230
- - test/soap/literalArrayMapping/amazonEc.rb
231
- - test/soap/case/test_mapping.rb
232
- - test/soap/calc/test_calc.rb
233
- - test/soap/calc/test_calc_cgi.rb
234
- - test/soap/calc/test_calc2.rb
235
- - test/soap/calc/server2.rb
236
- - test/soap/calc/server.rb
237
- - test/soap/calc/calc.rb
238
- - test/soap/calc/calc2.rb
239
- - test/soap/calc/server.cgi
240
- - test/soap/auth/htpasswd
241
- - test/soap/auth/test_digest.rb
242
- - test/soap/auth/test_basic.rb
243
- - test/soap/auth/htdigest
244
- - test/soap/struct/test_struct.rb
245
- - test/soap/test_httpconfigloader.rb
246
- - test/soap/asp.net/test_aspdotnet.rb
247
- - test/soap/asp.net/hello.wsdl
248
- - test/soap/styleuse/server.rb
249
- - test/soap/styleuse/client.rb
250
- - test/soap/fault/test_soaparray.rb
251
- - test/soap/fault/test_customfault.rb
252
- - test/soap/fault/test_fault.rb
253
- - test/soap/test_response_as_xml.rb
254
- - test/soap/test_empty.rb
255
- - test/soap/test_mapping.rb
256
- - test/soap/test_cookie.rb
257
- - test/soap/test_basetype.rb
258
- - test/soap/test_extraattr.rb
259
- - test/soap/test_nil.rb
260
- - test/soap/test_generator.rb
261
- - test/soap/filter/test_filter.rb
262
- - test/soap/wsdlDriver/test_calc.rb
263
- - test/soap/wsdlDriver/test_document.rb
264
- - test/soap/wsdlDriver/test_simpletype.rb
265
- - test/soap/wsdlDriver/README.txt
266
- - test/soap/wsdlDriver/calc.wsdl
267
- - test/soap/wsdlDriver/simpletype.wsdl
268
- - test/soap/wsdlDriver/echo_version.rb
269
- - test/soap/wsdlDriver/document.wsdl
270
- - test/helper.rb
271
- - test/16runner.rb
272
- - test/sm11/driver.rb
273
- - test/sm11/classDef.rb
274
- - test/sm11/server.rb
275
- - test/sm11/client.rb
276
- - test/sm11/servant.rb
277
- - test/testutil.rb
278
- - test/xsd/test_noencoding.rb
279
- - test/xsd/test_xmlschemaparser.rb
280
- - test/xsd/codegen/test_classdef.rb
281
- - test/xsd/xmlschema.xml
282
- - test/xsd/test_xsd.rb
283
- - test/xsd/test_ns.rb
284
- - test/xsd/xsd2ruby/expected_mysample_mapper.rb
285
- - test/xsd/xsd2ruby/test_xsd2ruby.rb
286
- - test/xsd/xsd2ruby/expected_mysample.rb
287
- - test/xsd/xsd2ruby/section.xsd
288
- - test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
289
- - test/xsd/xmllang.xml
290
- - test/xsd/noencoding.xml
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/anonymous/expectedClassDef.rb
350
- - test/wsdl/anonymous/lp.wsdl
351
- - test/wsdl/anonymous/expectedDriver.rb
352
- - test/wsdl/anonymous/expectedMappingRegistry.rb
353
- - test/wsdl/anonymous/test_anonymous.rb
354
- - test/wsdl/marshal/person.wsdl
355
- - test/wsdl/marshal/person_org.rb
356
- - test/wsdl/marshal/test_wsdlmarshal.rb
357
- - test/wsdl/soap/test_soapbodyparts.rb
358
- - test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
359
- - test/wsdl/soap/wsdl2ruby/expectedServant.rb
360
- - test/wsdl/soap/wsdl2ruby/expectedService.cgi
361
- - test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
362
- - test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
363
- - test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
364
- - test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
365
- - test/wsdl/soap/wsdl2ruby/section/test_section.rb
366
- - test/wsdl/soap/wsdl2ruby/section/section.xsd
367
- - test/wsdl/soap/wsdl2ruby/expectedClient.rb
368
- - test/wsdl/soap/wsdl2ruby/expectedDriver.rb
369
- - test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
370
- - test/wsdl/soap/wsdl2ruby/expectedService.rb
371
- - test/wsdl/soap/wsdl2ruby/rpc.wsdl
372
- - test/wsdl/soap/soapbodyparts.wsdl
373
- - test/wsdl/axisArray/axisArray.wsdl
374
- - test/wsdl/axisArray/test_axisarray.rb
375
- - test/wsdl/any/test_any.rb
376
- - test/wsdl/any/any.wsdl
377
- - test/wsdl/any/expectedDriver.rb
378
- - test/wsdl/any/expectedMappingRegistry.rb
379
- - test/wsdl/any/expectedService.rb
380
- - test/wsdl/any/expectedEcho.rb
381
- - test/wsdl/simpletype/test_simpletype.rb
382
- - test/wsdl/simpletype/simpletype.wsdl
383
- - test/wsdl/simpletype/rpc/expectedServant.rb
384
- - test/wsdl/simpletype/rpc/expectedClient.rb
385
- - test/wsdl/simpletype/rpc/expectedDriver.rb
386
- - test/wsdl/simpletype/rpc/test_rpc.rb
387
- - test/wsdl/simpletype/rpc/expectedEchoVersion.rb
388
- - test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
389
- - test/wsdl/simpletype/rpc/expectedService.rb
390
- - test/wsdl/simpletype/rpc/rpc.wsdl
391
- - test/wsdl/list/list.wsdl
392
- - test/wsdl/list/test_list.rb
393
- - test/wsdl/complexcontent/test_echo.rb
394
- - test/wsdl/complexcontent/complexContent.wsdl
395
- - test/wsdl/raa/expectedClassDef.rb
396
- - test/wsdl/raa/raa.wsdl
397
- - test/wsdl/raa/README.txt
398
- - test/wsdl/raa/RAAService.rb
399
- - test/wsdl/raa/expectedDriver.rb
400
- - test/wsdl/raa/expectedMappingRegistry.rb
401
- - test/wsdl/raa/test_raa.rb
402
- - test/wsdl/document/test_number.rb
403
- - test/wsdl/document/array/test_array.rb
404
- - test/wsdl/document/array/double.wsdl
405
- - test/wsdl/document/ping_nosoapaction.wsdl
406
- - test/wsdl/document/test_nosoapaction.rb
407
- - test/wsdl/document/test_rpc.rb
408
- - test/wsdl/document/document.wsdl
409
- - test/wsdl/document/number.wsdl
410
- - test/wsdl/group/expectedClassdef.rb
411
- - test/wsdl/group/expectedDriver.rb
412
- - test/wsdl/group/test_rpc.rb
413
- - test/wsdl/group/group.wsdl
414
- - test/wsdl/group/expectedMappingRegistry.rb
415
- - test/wsdl/ref/expectedProduct.rb
416
- - test/wsdl/ref/test_ref.rb
417
- - test/wsdl/ref/expectedDriver.rb
418
- - test/wsdl/ref/product.wsdl
419
- - test/wsdl/abstract/abstract.wsdl
420
- - test/wsdl/abstract/test_abstract.rb
421
- - test/wsdl/test_emptycomplextype.rb
422
- - test/wsdl/test_multiplefault.rb
423
- - test/wsdl/emptycomplextype.wsdl
424
- - test/wsdl/datetime/test_datetime.rb
425
- - test/wsdl/datetime/datetime.rb
426
- - test/wsdl/datetime/datetime.wsdl
427
- - test/wsdl/datetime/DatetimeService.rb
428
- - test/wsdl/datetime/datetimeServant.rb
429
- - test/wsdl/test_fault.rb
430
- - test/wsdl/oneway/test_oneway.rb
431
- - test/wsdl/oneway/oneway.wsdl
432
- - test/wsdl/fault/fault.wsdl
433
- - test/wsdl/fault/test_multifault.rb
434
- - test/wsdl/fault/test_fault.rb
435
- - test/wsdl/fault/multifault.wsdl
436
- - test/wsdl/rpc/test-rpc-lit.wsdl
437
- - test/wsdl/rpc/test_rpc_lit.rb
438
- - test/wsdl/rpc/test_rpc.rb
439
- - test/wsdl/rpc/rpc.wsdl
440
- - test/wsdl/soaptype/test_soaptype.rb
441
- - test/wsdl/soaptype/soaptype.wsdl
442
- - test/wsdl/overload/expectedServant.rb
443
- - test/wsdl/overload/expectedClient.rb
444
- - test/wsdl/overload/overload.wsdl
445
- - test/wsdl/overload/expectedDriver.rb
446
- - test/wsdl/overload/test_overload.rb
447
- - test/wsdl/map/map.wsdl
448
- - test/wsdl/map/test_map.rb
449
- - test/wsdl/map/map.xml
450
- - test/wsdl/multiplefault.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: false
462
- homepage: http://wiki.github.com/rubyjedi/soap4r
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
- - !ruby/object:Gem::Version
474
- version: "0"
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
- - !ruby/object:Gem::Version
480
- version: "0"
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.3.5
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.