soap4r 1.5.5.20061022 → 1.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. data/bin/wsdl2ruby.rb +8 -8
  2. data/lib/soap/XMLSchemaDatatypes.rb +1 -1
  3. data/lib/soap/XMLSchemaDatatypes1999.rb +1 -1
  4. data/lib/soap/attachment.rb +1 -1
  5. data/lib/soap/baseData.rb +102 -54
  6. data/lib/soap/cgistub.rb +1 -1
  7. data/lib/soap/charset.rb +1 -1
  8. data/lib/soap/driver.rb +1 -1
  9. data/lib/soap/element.rb +20 -12
  10. data/lib/soap/encodingstyle/aspDotNetHandler.rb +2 -2
  11. data/lib/soap/encodingstyle/handler.rb +1 -1
  12. data/lib/soap/encodingstyle/literalHandler.rb +29 -73
  13. data/lib/soap/encodingstyle/soapHandler.rb +8 -7
  14. data/lib/soap/filter.rb +10 -0
  15. data/lib/soap/filter/filterchain.rb +51 -0
  16. data/lib/soap/filter/handler.rb +31 -0
  17. data/lib/soap/generator.rb +11 -3
  18. data/lib/soap/header/handler.rb +6 -5
  19. data/lib/soap/header/handlerset.rb +7 -7
  20. data/lib/soap/header/simplehandler.rb +1 -1
  21. data/lib/soap/httpconfigloader.rb +7 -2
  22. data/lib/soap/mapping.rb +1 -1
  23. data/lib/soap/mapping/encodedregistry.rb +36 -26
  24. data/lib/soap/mapping/encodedregistry.rb~ +531 -0
  25. data/lib/soap/mapping/factory.rb +2 -2
  26. data/lib/soap/mapping/literalregistry.rb +107 -67
  27. data/lib/soap/mapping/mapping.rb +92 -112
  28. data/lib/soap/mapping/registry.rb +25 -8
  29. data/lib/soap/mapping/rubytypeFactory.rb +1 -1
  30. data/lib/soap/mapping/schemadefinition.rb +163 -0
  31. data/lib/soap/mapping/typeMap.rb +7 -1
  32. data/lib/soap/mapping/wsdlencodedregistry.rb +2 -2
  33. data/lib/soap/mapping/wsdlliteralregistry.rb +14 -23
  34. data/lib/soap/mappingRegistry.rb +1 -1
  35. data/lib/soap/marshal.rb +1 -1
  36. data/lib/soap/namespace.rb +1 -1
  37. data/lib/soap/netHttpClient.rb +43 -13
  38. data/lib/soap/parser.rb +40 -42
  39. data/lib/soap/processor.rb +1 -1
  40. data/lib/soap/property.rb +7 -7
  41. data/lib/soap/proxy.rb +1 -1
  42. data/lib/soap/qname.rb +1 -1
  43. data/lib/soap/rpc/cgistub.rb +34 -1
  44. data/lib/soap/rpc/driver.rb +2 -1
  45. data/lib/soap/rpc/element.rb +42 -15
  46. data/lib/soap/rpc/httpserver.rb +13 -1
  47. data/lib/soap/rpc/proxy.rb +51 -41
  48. data/lib/soap/rpc/router.rb +88 -33
  49. data/lib/soap/rpc/rpc.rb +1 -1
  50. data/lib/soap/rpc/soaplet.rb +51 -3
  51. data/lib/soap/rpc/standaloneServer.rb +1 -1
  52. data/lib/soap/rpcRouter.rb +1 -1
  53. data/lib/soap/rpcUtils.rb +1 -1
  54. data/lib/soap/server.rb +1 -1
  55. data/lib/soap/soap.rb +2 -2
  56. data/lib/soap/standaloneServer.rb +1 -1
  57. data/lib/soap/streamHandler.rb +13 -4
  58. data/lib/soap/wsdlDriver.rb +11 -15
  59. data/lib/tags +5144 -0
  60. data/lib/wsdl/binding.rb +1 -1
  61. data/lib/wsdl/data.rb +1 -1
  62. data/lib/wsdl/definitions.rb +1 -1
  63. data/lib/wsdl/documentation.rb +1 -1
  64. data/lib/wsdl/import.rb +1 -1
  65. data/lib/wsdl/importer.rb +1 -1
  66. data/lib/wsdl/info.rb +1 -1
  67. data/lib/wsdl/message.rb +1 -1
  68. data/lib/wsdl/operation.rb +10 -7
  69. data/lib/wsdl/operationBinding.rb +19 -5
  70. data/lib/wsdl/param.rb +11 -3
  71. data/lib/wsdl/parser.rb +4 -3
  72. data/lib/wsdl/part.rb +1 -1
  73. data/lib/wsdl/port.rb +1 -1
  74. data/lib/wsdl/portType.rb +1 -1
  75. data/lib/wsdl/service.rb +1 -1
  76. data/lib/wsdl/soap/address.rb +1 -1
  77. data/lib/wsdl/soap/binding.rb +1 -1
  78. data/lib/wsdl/soap/body.rb +3 -1
  79. data/lib/wsdl/soap/cgiStubCreator.rb +1 -1
  80. data/lib/wsdl/soap/classDefCreator.rb +78 -14
  81. data/lib/wsdl/soap/classDefCreatorSupport.rb +28 -11
  82. data/lib/wsdl/soap/clientSkeltonCreator.rb +3 -2
  83. data/lib/wsdl/soap/complexType.rb +8 -11
  84. data/lib/wsdl/soap/data.rb +1 -1
  85. data/lib/wsdl/soap/definitions.rb +49 -4
  86. data/lib/wsdl/soap/driverCreator.rb +1 -1
  87. data/lib/wsdl/soap/element.rb +3 -2
  88. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +1 -1
  89. data/lib/wsdl/soap/fault.rb +1 -1
  90. data/lib/wsdl/soap/header.rb +1 -1
  91. data/lib/wsdl/soap/headerfault.rb +1 -1
  92. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +41 -21
  93. data/lib/wsdl/soap/mappingRegistryCreator.rb +2 -1
  94. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +45 -19
  95. data/lib/wsdl/soap/methodDefCreator.rb +28 -17
  96. data/lib/wsdl/soap/operation.rb +11 -11
  97. data/lib/wsdl/soap/servantSkeltonCreator.rb +3 -2
  98. data/lib/wsdl/soap/standaloneServerStubCreator.rb +1 -1
  99. data/lib/wsdl/soap/wsdl2ruby.rb +8 -2
  100. data/lib/wsdl/types.rb +1 -1
  101. data/lib/wsdl/wsdl.rb +1 -1
  102. data/lib/wsdl/xmlSchema/all.rb +1 -1
  103. data/lib/wsdl/xmlSchema/annotation.rb +1 -1
  104. data/lib/wsdl/xmlSchema/any.rb +10 -5
  105. data/lib/wsdl/xmlSchema/attribute.rb +1 -1
  106. data/lib/wsdl/xmlSchema/choice.rb +1 -1
  107. data/lib/wsdl/xmlSchema/complexContent.rb +11 -2
  108. data/lib/wsdl/xmlSchema/complexExtension.rb +8 -1
  109. data/lib/wsdl/xmlSchema/complexRestriction.rb +6 -2
  110. data/lib/wsdl/xmlSchema/complexType.rb +9 -1
  111. data/lib/wsdl/xmlSchema/content.rb +26 -5
  112. data/lib/wsdl/xmlSchema/data.rb +4 -1
  113. data/lib/wsdl/xmlSchema/element.rb +12 -9
  114. data/lib/wsdl/xmlSchema/enumeration.rb +1 -1
  115. data/lib/wsdl/xmlSchema/import.rb +1 -1
  116. data/lib/wsdl/xmlSchema/importer.rb +9 -6
  117. data/lib/wsdl/xmlSchema/include.rb +1 -1
  118. data/lib/wsdl/xmlSchema/length.rb +1 -1
  119. data/lib/wsdl/xmlSchema/list.rb +1 -1
  120. data/lib/wsdl/xmlSchema/maxlength.rb +1 -1
  121. data/lib/wsdl/xmlSchema/minlength.rb +1 -1
  122. data/lib/wsdl/xmlSchema/parser.rb +4 -3
  123. data/lib/wsdl/xmlSchema/pattern.rb +1 -1
  124. data/lib/wsdl/xmlSchema/schema.rb +1 -1
  125. data/lib/wsdl/xmlSchema/sequence.rb +1 -1
  126. data/lib/wsdl/xmlSchema/simpleContent.rb +1 -1
  127. data/lib/wsdl/xmlSchema/simpleExtension.rb +1 -1
  128. data/lib/wsdl/xmlSchema/simpleRestriction.rb +1 -1
  129. data/lib/wsdl/xmlSchema/simpleType.rb +8 -1
  130. data/lib/wsdl/xmlSchema/union.rb +35 -0
  131. data/lib/wsdl/xmlSchema/unique.rb +1 -1
  132. data/lib/wsdl/xmlSchema/xsd2ruby.rb +6 -1
  133. data/lib/xsd/charset.rb +1 -1
  134. data/lib/xsd/classloader.rb +26 -0
  135. data/lib/xsd/codegen.rb +1 -1
  136. data/lib/xsd/codegen/classdef.rb +1 -1
  137. data/lib/xsd/codegen/commentdef.rb +1 -1
  138. data/lib/xsd/codegen/gensupport.rb +119 -14
  139. data/lib/xsd/codegen/methoddef.rb +1 -1
  140. data/lib/xsd/codegen/moduledef.rb +1 -1
  141. data/lib/xsd/datatypes.rb +52 -13
  142. data/lib/xsd/datatypes1999.rb +1 -1
  143. data/lib/xsd/iconvcharset.rb +1 -1
  144. data/lib/xsd/mapping.rb +1 -1
  145. data/lib/xsd/namedelements.rb +1 -1
  146. data/lib/xsd/ns.rb +2 -2
  147. data/lib/xsd/qname.rb +1 -1
  148. data/lib/xsd/xmlparser.rb +16 -3
  149. data/lib/xsd/xmlparser/parser.rb +6 -2
  150. data/lib/xsd/xmlparser/rexmlparser.rb +5 -1
  151. data/lib/xsd/xmlparser/xmlparser.rb +1 -1
  152. data/lib/xsd/xmlparser/xmlscanner.rb +4 -2
  153. data/test/interopR2/InteropTest.rb +83 -0
  154. data/test/interopR2/InteropTest.wsdl +315 -0
  155. data/test/interopR2/InteropTestC.wsdl +208 -0
  156. data/test/interopR2/InteropTestDriver.rb +328 -0
  157. data/test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2.wsdl +461 -0
  158. data/test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2GroupB.wsdl +20 -0
  159. data/test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2GroupCClient.rb +178 -0
  160. data/test/interopR2/SOAPBuildersInterop_R2GrC.wsdl +17 -0
  161. data/test/interopR2/clientBase.rb +0 -3
  162. data/test/interopR2/groupc.wsdl +17 -0
  163. data/test/interopR2/result_client.NetRemoting.txt +0 -4593
  164. data/test/interopR2/test.sh +9 -9
  165. data/test/runner.rb +1 -3
  166. data/test/soap/asp.net/test_aspdotnet.rb +20 -9
  167. data/test/soap/case/test_mapping.rb +57 -0
  168. data/test/soap/filter/test_filter.rb +146 -0
  169. data/test/soap/literalArrayMapping/test_definedarray.rb +7 -9
  170. data/test/soap/marshal/marshaltestlib.rb +1 -1
  171. data/test/soap/ssl/test_ssl.rb +0 -10
  172. data/test/soap/struct/test_struct.rb +2 -9
  173. data/test/soap/test_basetype.rb +114 -0
  174. data/test/soap/test_empty.rb +26 -2
  175. data/test/soap/test_envelopenamespace.rb +2 -9
  176. data/test/soap/test_extraattr.rb +55 -0
  177. data/test/soap/test_httpconfigloader.rb +17 -0
  178. data/test/soap/test_property.rb +4 -1
  179. data/test/soap/test_response_as_xml.rb +31 -9
  180. data/test/soap/test_soapelement.rb +21 -3
  181. data/test/soap/test_streamhandler.rb +3 -10
  182. data/test/soap/test_styleuse.rb +2 -9
  183. data/test/soap/wsdlDriver/test_calc.rb +3 -20
  184. data/test/soap/wsdlDriver/test_document.rb +2 -9
  185. data/test/soap/wsdlDriver/test_simpletype.rb +2 -9
  186. data/test/testutil.rb +54 -0
  187. data/test/wsdl/abstract/abstract.wsdl +82 -3
  188. data/test/wsdl/abstract/test_abstract.rb +48 -19
  189. data/test/wsdl/any/any.wsdl +63 -0
  190. data/test/wsdl/any/expectedDriver.rb +22 -1
  191. data/test/wsdl/any/expectedEcho.rb +19 -0
  192. data/test/wsdl/any/expectedService.rb +29 -4
  193. data/test/wsdl/any/test_any.rb +36 -31
  194. data/test/wsdl/choice/choice.wsdl +37 -0
  195. data/test/wsdl/choice/test_choice.rb +66 -17
  196. data/test/wsdl/complexcontent/test_echo.rb +7 -18
  197. data/test/wsdl/document/array/test_array.rb +8 -18
  198. data/test/wsdl/document/ping_nosoapaction.wsdl +1 -1
  199. data/test/wsdl/document/test_nosoapaction.rb +2 -9
  200. data/test/wsdl/document/test_number.rb +3 -10
  201. data/test/wsdl/document/test_rpc.rb +96 -21
  202. data/test/wsdl/fault/fault.wsdl +79 -0
  203. data/test/wsdl/fault/multifault.wsdl +96 -0
  204. data/test/wsdl/fault/test_fault.rb +119 -0
  205. data/test/wsdl/fault/test_multifault.rb +134 -0
  206. data/test/wsdl/list/test_list.rb +6 -16
  207. data/test/wsdl/marshal/test_wsdlmarshal.rb +10 -13
  208. data/test/wsdl/oneway/oneway.wsdl +36 -0
  209. data/test/wsdl/oneway/test_oneway.rb +108 -0
  210. data/test/wsdl/overload/test_overload.rb +3 -10
  211. data/test/wsdl/qualified/test_qualified.rb +9 -17
  212. data/test/wsdl/qualified/test_unqualified.rb +14 -21
  213. data/test/wsdl/ref/expectedDriver.rb +51 -0
  214. data/test/wsdl/ref/expectedProduct.rb +71 -71
  215. data/test/wsdl/ref/test_ref.rb +13 -35
  216. data/test/wsdl/rpc/rpc.wsdl +27 -1
  217. data/test/wsdl/rpc/test-rpc-lit-qualified.wsdl +74 -0
  218. data/test/wsdl/rpc/test-rpc-lit.wsdl +11 -4
  219. data/test/wsdl/rpc/test-rpc-lit12.wsdl +455 -0
  220. data/test/wsdl/rpc/test_rpc.rb +20 -19
  221. data/test/wsdl/rpc/test_rpc_lit.rb +82 -29
  222. data/test/wsdl/simplecontent/simplecontent.wsdl +1 -0
  223. data/test/wsdl/simplecontent/test_simplecontent.rb +5 -19
  224. data/test/wsdl/simpletype/rpc/expectedDriver.rb +6 -4
  225. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +15 -0
  226. data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +64 -0
  227. data/test/wsdl/simpletype/rpc/expectedService.rb +6 -4
  228. data/test/wsdl/simpletype/rpc/rpc.wsdl +18 -0
  229. data/test/wsdl/simpletype/rpc/test_rpc.rb +6 -16
  230. data/test/wsdl/simpletype/simpletype.wsdl +19 -0
  231. data/test/wsdl/simpletype/test_simpletype.rb +2 -9
  232. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +6 -4
  233. data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +40 -0
  234. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +6 -4
  235. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +6 -4
  236. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +5 -6
  237. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +3 -16
  238. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +9 -17
  239. data/test/wsdl/soaptype/test_soaptype.rb +29 -11
  240. data/test/xsd/test_xsd.rb +115 -1
  241. metadata +421 -454
  242. data/test/interopR2/client.NetRemoting.rb.result +0 -3410
  243. data/test/interopR2/client.NetRemoting_Base.log +0 -6279
  244. data/test/interopR2/client.NetRemoting_GroupB.log +0 -1188
  245. data/test/interopR2/client4S4C2_Base.log +0 -4955
  246. data/test/interopR2/client4S4C2_GroupB.log +0 -1000
  247. data/test/interopR2/client4S4C_Base.log +0 -4635
  248. data/test/interopR2/client4S4C_GroupB.log +0 -900
  249. data/test/interopR2/clientASP.NET_Base.log +0 -5468
  250. data/test/interopR2/clientASP.NET_GroupB.log +0 -977
  251. data/test/interopR2/clientApacheAxis_Base.log +0 -3171
  252. data/test/interopR2/clientApacheAxis_GroupB.log +0 -498
  253. data/test/interopR2/clientApacheSOAP_Base.log +0 -3171
  254. data/test/interopR2/clientBEAWebLogic_Base.log +0 -3171
  255. data/test/interopR2/clientBEAWebLogic_GroupB.log +0 -498
  256. data/test/interopR2/clientCapeConnect_Base.log +0 -2126
  257. data/test/interopR2/clientDelphi_Base.log +0 -0
  258. data/test/interopR2/clientEasySoap_Base.log +0 -6187
  259. data/test/interopR2/clientEasySoap_GroupB.log +0 -1076
  260. data/test/interopR2/clientFrontier_Base.log +0 -5188
  261. data/test/interopR2/clientHP_Base.log +0 -3171
  262. data/test/interopR2/clientHP_GroupB.log +0 -498
  263. data/test/interopR2/clientJSOAP_Base.log +0 -4465
  264. data/test/interopR2/clientJSOAP_GroupB.log +0 -824
  265. data/test/interopR2/clientKafkaXSLT_Base.log +0 -10299
  266. data/test/interopR2/clientKafkaXSLT_GroupB.log +0 -1739
  267. data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +0 -4805
  268. data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +0 -871
  269. data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +0 -5076
  270. data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +0 -908
  271. data/test/interopR2/clientNuSOAP_Base.log +0 -5076
  272. data/test/interopR2/clientNuSOAP_GroupB.log +0 -958
  273. data/test/interopR2/clientNuWave_Base.log +0 -2019
  274. data/test/interopR2/clientOpenLink_Base.log +0 -6171
  275. data/test/interopR2/clientOpenLink_GroupB.log +0 -1094
  276. data/test/interopR2/clientOracle_Base.log +0 -5594
  277. data/test/interopR2/clientPEAR_Base.log +0 -6261
  278. data/test/interopR2/clientPEAR_GroupB.log +0 -1106
  279. data/test/interopR2/clientPhalanx_Base.log +0 -41036
  280. data/test/interopR2/clientPhalanx_GroupB.log +0 -6519
  281. data/test/interopR2/clientSIMACE_Base.log +0 -6171
  282. data/test/interopR2/clientSIMACE_GroupB.log +0 -1093
  283. data/test/interopR2/clientSOAP4R.rb.result +0 -3409
  284. data/test/interopR2/clientSOAP4R_Base.log +0 -6366
  285. data/test/interopR2/clientSOAP4R_GroupB.log +0 -1112
  286. data/test/interopR2/clientSQLData_Base.log +0 -4857
  287. data/test/interopR2/clientSQLData_GroupB.log +0 -770
  288. data/test/interopR2/clientSilverStream_Base.log +0 -3171
  289. data/test/interopR2/clientSpray2001_Base.log +0 -8187
  290. data/test/interopR2/clientSpray2001_GroupB.log +0 -1408
  291. data/test/interopR2/clientSun_Base.log +0 -4641
  292. data/test/interopR2/clientSun_GroupB.log +0 -856
  293. data/test/interopR2/clientVWOpentalkSoap_Base.log +0 -5402
  294. data/test/interopR2/clientVWOpentalkSoap_GroupB.log +0 -972
  295. data/test/interopR2/clientWASPC_Base.log +0 -4187
  296. data/test/interopR2/clientWASPC_GroupB.log +0 -763
  297. data/test/interopR2/clientWASP_Base.log +0 -5414
  298. data/test/interopR2/clientWASP_GroupB.log +0 -970
  299. data/test/interopR2/clientWebMethods_Base.log +0 -3075
  300. data/test/interopR2/clientWebMethods_GroupB.log +0 -483
  301. data/test/interopR2/clientWhiteMesa_Base.log +0 -4359
  302. data/test/interopR2/clientWhiteMesa_GroupB.log +0 -808
  303. data/test/interopR2/clientWingfoot_Base.log +0 -4445
  304. data/test/interopR2/clientWingfoot_GroupB.log +0 -848
  305. data/test/interopR2/clientXMLBus_Base.log +0 -3075
  306. data/test/interopR2/clientXMLBus_GroupB.log +0 -483
  307. data/test/interopR2/clientXSOAP_Base.log +0 -4445
  308. data/test/interopR2/clienteSOAP_Base.log +0 -8728
  309. data/test/interopR2/clientgSOAP_Base.log +0 -4689
  310. data/test/interopR2/clientgSOAP_GroupB.log +0 -1014
  311. data/test/interopR2/clientkSOAP_Base.log +0 -5625
@@ -91,7 +91,7 @@ class TestXSD < Test::Unit::TestCase
91
91
  XSD::XSDString.new("\0")
92
92
  end
93
93
  assert_raises(XSD::ValueSpaceError) do
94
- p XSD::XSDString.new("\xC0\xC0").to_s
94
+ XSD::XSDString.new("\xC0\xC0").to_s
95
95
  end
96
96
  ensure
97
97
  XSD::XSDString.strict_ces_validation = back
@@ -101,6 +101,120 @@ class TestXSD < Test::Unit::TestCase
101
101
  end
102
102
  end
103
103
 
104
+ def test_XSDNormalizedString
105
+ XSD::Charset.module_eval { @encoding_backup = @internal_encoding; @internal_encoding = "NONE" }
106
+ begin
107
+ o = XSD::XSDNormalizedString.new
108
+ assert_equal(XSD::Namespace, o.type.namespace)
109
+ assert_equal(XSD::NormalizedStringLiteral, o.type.name)
110
+ assert_equal(nil, o.data)
111
+ assert_equal(true, o.is_nil)
112
+
113
+ str = "abc"
114
+ assert_equal(str, XSD::XSDNormalizedString.new(str).data)
115
+ assert_equal(str, XSD::XSDNormalizedString.new(str).to_s)
116
+ back = XSD::XSDString.strict_ces_validation
117
+ XSD::XSDString.strict_ces_validation = true
118
+ begin
119
+ assert_raises(XSD::ValueSpaceError) do
120
+ XSD::XSDNormalizedString.new("\0")
121
+ end
122
+ assert_raises(XSD::ValueSpaceError) do
123
+ XSD::XSDNormalizedString.new("\xC0\xC0").to_s
124
+ end
125
+ assert_raises(XSD::ValueSpaceError) do
126
+ XSD::XSDNormalizedString.new("a\tb").to_s
127
+ end
128
+ assert_raises(XSD::ValueSpaceError) do
129
+ XSD::XSDNormalizedString.new("a\r").to_s
130
+ end
131
+ assert_raises(XSD::ValueSpaceError) do
132
+ XSD::XSDNormalizedString.new("\nb").to_s
133
+ end
134
+ ensure
135
+ XSD::XSDString.strict_ces_validation = back
136
+ end
137
+ ensure
138
+ XSD::Charset.module_eval { @internal_encoding = @encoding_backup }
139
+ end
140
+ end
141
+
142
+ def test_XSDToken
143
+ XSD::Charset.module_eval { @encoding_backup = @internal_encoding; @internal_encoding = "NONE" }
144
+ begin
145
+ o = XSD::XSDToken.new
146
+ assert_equal(XSD::Namespace, o.type.namespace)
147
+ assert_equal(XSD::TokenLiteral, o.type.name)
148
+ assert_equal(nil, o.data)
149
+ assert_equal(true, o.is_nil)
150
+
151
+ str = "abc"
152
+ assert_equal(str, XSD::XSDToken.new(str).data)
153
+ assert_equal(str, XSD::XSDToken.new(str).to_s)
154
+ back = XSD::XSDString.strict_ces_validation
155
+ XSD::XSDString.strict_ces_validation = true
156
+ begin
157
+ assert_raises(XSD::ValueSpaceError) do
158
+ XSD::XSDToken.new("\0")
159
+ end
160
+ assert_raises(XSD::ValueSpaceError) do
161
+ XSD::XSDToken.new("\xC0\xC0").to_s
162
+ end
163
+ assert_raises(XSD::ValueSpaceError) do
164
+ XSD::XSDToken.new("a\tb").to_s
165
+ end
166
+ assert_raises(XSD::ValueSpaceError) do
167
+ XSD::XSDToken.new("a\r").to_s
168
+ end
169
+ assert_raises(XSD::ValueSpaceError) do
170
+ XSD::XSDToken.new("\nb").to_s
171
+ end
172
+ assert_raises(XSD::ValueSpaceError) do
173
+ XSD::XSDToken.new(" a").to_s
174
+ end
175
+ assert_raises(XSD::ValueSpaceError) do
176
+ XSD::XSDToken.new("b ").to_s
177
+ end
178
+ assert_raises(XSD::ValueSpaceError) do
179
+ XSD::XSDToken.new("a b").to_s
180
+ end
181
+ assert_equal("a b", XSD::XSDToken.new("a b").data)
182
+ ensure
183
+ XSD::XSDString.strict_ces_validation = back
184
+ end
185
+ ensure
186
+ XSD::Charset.module_eval { @internal_encoding = @encoding_backup }
187
+ end
188
+ end
189
+
190
+ def test_XSDLanguage
191
+ o = XSD::XSDLanguage.new
192
+ assert_equal(XSD::Namespace, o.type.namespace)
193
+ assert_equal(XSD::LanguageLiteral, o.type.name)
194
+ assert_equal(nil, o.data)
195
+ assert_equal(true, o.is_nil)
196
+
197
+ str = "ja"
198
+ assert_equal(str, XSD::XSDLanguage.new(str).data)
199
+ assert_equal(str, XSD::XSDLanguage.new(str).to_s)
200
+ str = "ja-jp"
201
+ assert_equal(str, XSD::XSDLanguage.new(str).data)
202
+ assert_equal(str, XSD::XSDLanguage.new(str).to_s)
203
+ assert_raises(XSD::ValueSpaceError) do
204
+ XSD::XSDLanguage.new("ja-jp-")
205
+ end
206
+ assert_raises(XSD::ValueSpaceError) do
207
+ XSD::XSDLanguage.new("-ja-")
208
+ end
209
+ assert_raises(XSD::ValueSpaceError) do
210
+ XSD::XSDLanguage.new("ja-")
211
+ end
212
+ assert_raises(XSD::ValueSpaceError) do
213
+ XSD::XSDLanguage.new("a1-01")
214
+ end
215
+ assert_equal("aA-01", XSD::XSDLanguage.new("aA-01").to_s)
216
+ end
217
+
104
218
  def test_XSDBoolean
105
219
  o = XSD::XSDBoolean.new
106
220
  assert_equal(XSD::Namespace, o.type.namespace)
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.0
2
+ rubygems_version: 0.9.2
3
3
  specification_version: 1
4
4
  name: soap4r
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.5.5.20061022
7
- date: 2006-10-04 00:00:00 +09:00
6
+ version: 1.5.6
7
+ date: 2007-06-14 00:00:00 +09:00
8
8
  summary: An implementation of SOAP 1.1 for Ruby.
9
9
  require_paths:
10
10
  - lib
@@ -29,499 +29,466 @@ post_install_message:
29
29
  authors:
30
30
  - NAKAMURA, Hiroshi
31
31
  files:
32
- - bin/xsd2ruby.rb
33
32
  - bin/wsdl2ruby.rb
34
- - lib/soap
35
- - lib/wsdl
33
+ - bin/xsd2ruby.rb
34
+ - lib/tags
36
35
  - lib/xsd
37
- - lib/soap/standaloneServer.rb
38
- - lib/soap/attachment.rb
39
- - lib/soap/namespace.rb
40
- - lib/soap/generator.rb
41
- - lib/soap/rpcRouter.rb
42
- - lib/soap/soap.rb
43
- - lib/soap/mapping.rb
44
- - lib/soap/mapping
45
- - lib/soap/mappingRegistry.rb
46
- - lib/soap/qname.rb
47
- - lib/soap/charset.rb
48
- - lib/soap/driver.rb
49
- - lib/soap/rpc
50
- - lib/soap/encodingstyle
51
- - lib/soap/proxy.rb
52
- - lib/soap/mimemessage.rb
53
- - lib/soap/wsdlDriver.rb
54
- - lib/soap/baseData.rb
55
- - lib/soap/parser.rb
56
- - lib/soap/property.rb
57
- - lib/soap/XMLSchemaDatatypes.rb
58
- - lib/soap/server.rb
59
- - lib/soap/compat.rb
60
- - lib/soap/XMLSchemaDatatypes1999.rb
61
- - lib/soap/marshal.rb
62
- - lib/soap/httpconfigloader.rb
63
- - lib/soap/element.rb
64
- - lib/soap/streamHandler.rb
65
- - lib/soap/rpcUtils.rb
66
- - lib/soap/processor.rb
67
- - lib/soap/netHttpClient.rb
68
- - lib/soap/header
69
- - lib/soap/cgistub.rb
70
- - lib/soap/mapping/mapping.rb
71
- - lib/soap/mapping/literalregistry.rb
72
- - lib/soap/mapping/wsdlliteralregistry.rb
73
- - lib/soap/mapping/factory.rb
74
- - lib/soap/mapping/wsdlencodedregistry.rb
75
- - lib/soap/mapping/rubytypeFactory.rb
76
- - lib/soap/mapping/typeMap.rb
77
- - lib/soap/mapping/encodedregistry.rb
78
- - lib/soap/mapping/registry.rb
79
- - lib/soap/rpc/rpc.rb
80
- - lib/soap/rpc/standaloneServer.rb
81
- - lib/soap/rpc/router.rb
82
- - lib/soap/rpc/driver.rb
83
- - lib/soap/rpc/proxy.rb
84
- - lib/soap/rpc/soaplet.rb
85
- - lib/soap/rpc/element.rb
86
- - lib/soap/rpc/httpserver.rb
87
- - lib/soap/rpc/cgistub.rb
88
- - lib/soap/encodingstyle/literalHandler.rb
89
- - lib/soap/encodingstyle/soapHandler.rb
90
- - lib/soap/encodingstyle/aspDotNetHandler.rb
91
- - lib/soap/encodingstyle/handler.rb
92
- - lib/soap/header/handlerset.rb
93
- - lib/soap/header/simplehandler.rb
94
- - lib/soap/header/handler.rb
95
- - lib/wsdl/definitions.rb
96
- - lib/wsdl/binding.rb
36
+ - lib/xsd/datatypes.rb
37
+ - lib/xsd/namedelements.rb
38
+ - lib/xsd/iconvcharset.rb
39
+ - lib/xsd/charset.rb
40
+ - lib/xsd/qname.rb
41
+ - lib/xsd/mapping.rb
42
+ - lib/xsd/codegen
43
+ - lib/xsd/codegen/methoddef.rb
44
+ - lib/xsd/codegen/moduledef.rb
45
+ - lib/xsd/codegen/gensupport.rb
46
+ - lib/xsd/codegen/commentdef.rb
47
+ - lib/xsd/codegen/classdef.rb
48
+ - lib/xsd/xmlparser
49
+ - lib/xsd/xmlparser/xmlscanner.rb
50
+ - lib/xsd/xmlparser/rexmlparser.rb
51
+ - lib/xsd/xmlparser/parser.rb
52
+ - lib/xsd/xmlparser/xmlparser.rb
53
+ - lib/xsd/codegen.rb
54
+ - lib/xsd/classloader.rb
55
+ - lib/xsd/xmlparser.rb
56
+ - lib/xsd/ns.rb
57
+ - lib/xsd/datatypes1999.rb
58
+ - lib/wsdl
97
59
  - lib/wsdl/xmlSchema
98
- - lib/wsdl/part.rb
99
- - lib/wsdl/importer.rb
100
- - lib/wsdl/port.rb
101
- - lib/wsdl/portType.rb
102
- - lib/wsdl/param.rb
103
- - lib/wsdl/service.rb
104
- - lib/wsdl/operation.rb
105
- - lib/wsdl/soap
106
- - lib/wsdl/operationBinding.rb
107
- - lib/wsdl/parser.rb
108
- - lib/wsdl/info.rb
109
- - lib/wsdl/message.rb
110
- - lib/wsdl/types.rb
111
- - lib/wsdl/documentation.rb
112
- - lib/wsdl/data.rb
113
- - lib/wsdl/wsdl.rb
114
- - lib/wsdl/import.rb
115
- - lib/wsdl/xmlSchema/schema.rb
116
- - lib/wsdl/xmlSchema/attribute.rb
60
+ - lib/wsdl/xmlSchema/union.rb
61
+ - lib/wsdl/xmlSchema/complexRestriction.rb
62
+ - lib/wsdl/xmlSchema/include.rb
63
+ - lib/wsdl/xmlSchema/annotation.rb
64
+ - lib/wsdl/xmlSchema/content.rb
65
+ - lib/wsdl/xmlSchema/element.rb
66
+ - lib/wsdl/xmlSchema/choice.rb
67
+ - lib/wsdl/xmlSchema/unique.rb
117
68
  - lib/wsdl/xmlSchema/sequence.rb
118
- - lib/wsdl/xmlSchema/complexExtension.rb
119
69
  - lib/wsdl/xmlSchema/list.rb
120
- - lib/wsdl/xmlSchema/importer.rb
70
+ - lib/wsdl/xmlSchema/any.rb
71
+ - lib/wsdl/xmlSchema/attribute.rb
72
+ - lib/wsdl/xmlSchema/complexType.rb
73
+ - lib/wsdl/xmlSchema/enumeration.rb
121
74
  - lib/wsdl/xmlSchema/length.rb
122
- - lib/wsdl/xmlSchema/annotation.rb
123
- - lib/wsdl/xmlSchema/all.rb
124
- - lib/wsdl/xmlSchema/pattern.rb
125
- - lib/wsdl/xmlSchema/unique.rb
126
- - lib/wsdl/xmlSchema/xsd2ruby.rb
127
- - lib/wsdl/xmlSchema/minlength.rb
128
75
  - lib/wsdl/xmlSchema/maxlength.rb
129
- - lib/wsdl/xmlSchema/complexType.rb
130
- - lib/wsdl/xmlSchema/complexContent.rb
76
+ - lib/wsdl/xmlSchema/complexExtension.rb
77
+ - lib/wsdl/xmlSchema/simpleType.rb
131
78
  - lib/wsdl/xmlSchema/parser.rb
79
+ - lib/wsdl/xmlSchema/pattern.rb
80
+ - lib/wsdl/xmlSchema/all.rb
81
+ - lib/wsdl/xmlSchema/schema.rb
82
+ - lib/wsdl/xmlSchema/xsd2ruby.rb
132
83
  - lib/wsdl/xmlSchema/simpleContent.rb
133
- - lib/wsdl/xmlSchema/any.rb
134
- - lib/wsdl/xmlSchema/complexRestriction.rb
135
- - lib/wsdl/xmlSchema/element.rb
136
- - lib/wsdl/xmlSchema/data.rb
137
- - lib/wsdl/xmlSchema/choice.rb
138
- - lib/wsdl/xmlSchema/simpleType.rb
139
- - lib/wsdl/xmlSchema/include.rb
84
+ - lib/wsdl/xmlSchema/complexContent.rb
85
+ - lib/wsdl/xmlSchema/minlength.rb
86
+ - lib/wsdl/xmlSchema/simpleExtension.rb
140
87
  - lib/wsdl/xmlSchema/simpleRestriction.rb
141
- - lib/wsdl/xmlSchema/enumeration.rb
142
- - lib/wsdl/xmlSchema/content.rb
88
+ - lib/wsdl/xmlSchema/data.rb
143
89
  - lib/wsdl/xmlSchema/import.rb
144
- - lib/wsdl/xmlSchema/simpleExtension.rb
90
+ - lib/wsdl/xmlSchema/importer.rb
91
+ - lib/wsdl/documentation.rb
92
+ - lib/wsdl/param.rb
93
+ - lib/wsdl/portType.rb
94
+ - lib/wsdl/definitions.rb
95
+ - lib/wsdl/wsdl.rb
96
+ - lib/wsdl/operation.rb
97
+ - lib/wsdl/operationBinding.rb
98
+ - lib/wsdl/parser.rb
99
+ - lib/wsdl/message.rb
100
+ - lib/wsdl/port.rb
101
+ - lib/wsdl/types.rb
102
+ - lib/wsdl/part.rb
103
+ - lib/wsdl/soap
104
+ - lib/wsdl/soap/body.rb
105
+ - lib/wsdl/soap/methodDefCreator.rb
106
+ - lib/wsdl/soap/encodedMappingRegistryCreator.rb
107
+ - lib/wsdl/soap/driverCreator.rb
108
+ - lib/wsdl/soap/literalMappingRegistryCreator.rb
109
+ - lib/wsdl/soap/element.rb
145
110
  - lib/wsdl/soap/definitions.rb
146
- - lib/wsdl/soap/binding.rb
147
111
  - lib/wsdl/soap/servantSkeltonCreator.rb
148
- - lib/wsdl/soap/encodedMappingRegistryCreator.rb
112
+ - lib/wsdl/soap/standaloneServerStubCreator.rb
113
+ - lib/wsdl/soap/mappingRegistryCreatorSupport.rb
114
+ - lib/wsdl/soap/fault.rb
115
+ - lib/wsdl/soap/complexType.rb
116
+ - lib/wsdl/soap/cgiStubCreator.rb
149
117
  - lib/wsdl/soap/operation.rb
150
- - lib/wsdl/soap/headerfault.rb
151
- - lib/wsdl/soap/clientSkeltonCreator.rb
152
- - lib/wsdl/soap/methodDefCreator.rb
153
118
  - lib/wsdl/soap/address.rb
154
- - lib/wsdl/soap/body.rb
155
- - lib/wsdl/soap/classDefCreatorSupport.rb
156
- - lib/wsdl/soap/standaloneServerStubCreator.rb
157
119
  - lib/wsdl/soap/wsdl2ruby.rb
158
- - lib/wsdl/soap/complexType.rb
120
+ - lib/wsdl/soap/clientSkeltonCreator.rb
121
+ - lib/wsdl/soap/classDefCreatorSupport.rb
122
+ - lib/wsdl/soap/headerfault.rb
123
+ - lib/wsdl/soap/classDefCreator.rb
159
124
  - lib/wsdl/soap/mappingRegistryCreator.rb
160
- - lib/wsdl/soap/driverCreator.rb
161
- - lib/wsdl/soap/cgiStubCreator.rb
162
- - lib/wsdl/soap/element.rb
125
+ - lib/wsdl/soap/binding.rb
163
126
  - lib/wsdl/soap/data.rb
164
- - lib/wsdl/soap/fault.rb
165
- - lib/wsdl/soap/classDefCreator.rb
166
- - lib/wsdl/soap/mappingRegistryCreatorSupport.rb
167
127
  - lib/wsdl/soap/header.rb
168
- - lib/wsdl/soap/literalMappingRegistryCreator.rb
169
- - lib/xsd/namedelements.rb
170
- - lib/xsd/mapping.rb
171
- - lib/xsd/xmlparser
172
- - lib/xsd/datatypes.rb
173
- - lib/xsd/qname.rb
174
- - lib/xsd/charset.rb
175
- - lib/xsd/datatypes1999.rb
176
- - lib/xsd/iconvcharset.rb
177
- - lib/xsd/codegen
178
- - lib/xsd/codegen.rb
179
- - lib/xsd/xmlparser.rb
180
- - lib/xsd/ns.rb
181
- - lib/xsd/xmlparser/rexmlparser.rb
182
- - lib/xsd/xmlparser/xmlparser.rb
183
- - lib/xsd/xmlparser/parser.rb
184
- - lib/xsd/xmlparser/xmlscanner.rb
185
- - lib/xsd/codegen/classdef.rb
186
- - lib/xsd/codegen/gensupport.rb
187
- - lib/xsd/codegen/moduledef.rb
188
- - lib/xsd/codegen/methoddef.rb
189
- - lib/xsd/codegen/commentdef.rb
190
- - test/interopR2
191
- - test/interopR4
192
- - test/soap
193
- - test/sm11
194
- - test/16runner.rb
195
- - test/wsdl
196
- - test/runner.rb
197
- - test/xsd
198
- - test/interopR2/clienteSOAP.rb
199
- - test/interopR2/clientSun_Base.log
200
- - test/interopR2/clientSOAP4R.rb.result
201
- - test/interopR2/clientOpenLink_Base.log
202
- - test/interopR2/clientPEAR.rb
203
- - test/interopR2/clientASP.NET_Base.log
204
- - test/interopR2/clientNuSOAP.rb
205
- - test/interopR2/clientBEAWebLogic_GroupB.log
206
- - test/interopR2/clientJSOAP_GroupB.log
207
- - test/interopR2/clientASP.NET_GroupB.log
208
- - test/interopR2/clienteSOAP_Base.log
209
- - test/interopR2/test.sh
210
- - test/interopR2/clientApacheSOAP.rb
211
- - test/interopR2/clientOracle_Base.log
212
- - test/interopR2/clientSOAP4R_GroupB.log
213
- - test/interopR2/client.NetRemoting.rb.result
214
- - test/interopR2/clientNuSOAP_GroupB.log
215
- - test/interopR2/clientkSOAP_Base.log
216
- - test/interopR2/clientMSSOAPToolkit2.0.rb
217
- - test/interopR2/clientWASPC.rb
218
- - test/interopR2/clientWhiteMesa_GroupB.log
219
- - test/interopR2/clientXMLRPC-EPI.rb
220
- - test/interopR2/simonReg.rb
221
- - test/interopR2/clientMSSOAPToolkit2.0_GroupB.log
222
- - test/interopR2/clientgSOAP_Base.log
223
- - test/interopR2/clientWhiteMesa_Base.log
224
- - test/interopR2/clientMSSOAPToolkit2.0_Base.log
225
- - test/interopR2/clientHP_Base.log
226
- - test/interopR2/clientBEAWebLogic.rb
227
- - test/interopR2/clientBEAWebLogic_Base.log
228
- - test/interopR2/clientgSOAP.rb
229
- - test/interopR2/clientASP.NET.rb
230
- - test/interopR2/client4S4C2_Base.log
231
- - test/interopR2/clientEasySoap.rb
232
- - test/interopR2/clientDelphi.rb
233
- - test/interopR2/SOAPBuildersInterop_R2.wsdl
234
- - test/interopR2/clientgSOAP_GroupB.log
235
- - test/interopR2/clientWingfoot.rb
236
- - test/interopR2/clientSOAP4R.rb
237
- - test/interopR2/client.NetRemoting_Base.log
238
- - test/interopR2/clientPhalanx_GroupB.log
239
- - test/interopR2/clientEasySoap_Base.log
240
- - test/interopR2/client.NetRemoting_GroupB.log
241
- - test/interopR2/clientWingfoot_Base.log
242
- - test/interopR2/clientNuSOAP_Base.log
243
- - test/interopR2/clientSOAP4R_Base.log
244
- - test/interopR2/clientSpray2001.rb
245
- - test/interopR2/clientWASPC_GroupB.log
246
- - test/interopR2/clientSpray2001_Base.log
247
- - test/interopR2/clientXMLBus_Base.log
248
- - test/interopR2/client4S4C_Base.log
249
- - test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
250
- - test/interopR2/clientApacheAxis_Base.log
251
- - test/interopR2/clientCapeConnect_Base.log
252
- - test/interopR2/clientDelphi_Base.log
253
- - test/interopR2/clientVWOpentalkSoap_Base.log
254
- - test/interopR2/clientMSSOAPToolkit3.0.rb
255
- - test/interopR2/clientSun.rb
256
- - test/interopR2/clientNuWave_Base.log
257
- - test/interopR2/clientMSSOAPToolkit3.0_GroupB.log
258
- - test/interopR2/clientNuWave.rb
259
- - test/interopR2/client.rb
260
- - test/interopR2/clientWASP_Base.log
261
- - test/interopR2/clientSOAP__Lite.rb
262
- - test/interopR2/base.rb
263
- - test/interopR2/clientEasySoap_GroupB.log
264
- - test/interopR2/clientJSOAP.rb
265
- - test/interopR2/clientSQLData_Base.log
266
- - test/interopR2/client.NetRemoting.rb
267
- - test/interopR2/server.cgi
268
- - test/interopR2/clientPEAR_GroupB.log
269
- - test/interopR2/clientSIMACE.rb
270
- - test/interopR2/clientSilverStream_Base.log
271
- - test/interopR2/client4S4C2.rb
272
- - test/interopR2/clientPhalanx.rb
273
- - test/interopR2/clientGLUE.rb
274
- - test/interopR2/server.rb
275
- - test/interopR2/clientXMLBus_GroupB.log
276
- - test/interopR2/clientWebMethods_Base.log
277
- - test/interopR2/client4S4C_GroupB.log
278
- - test/interopR2/clientSIMACE_Base.log
279
- - test/interopR2/clientHP.rb
280
- - test/interopR2/clientPhalanx_Base.log
281
- - test/interopR2/clientkSOAP.rb
282
- - test/interopR2/clientKafkaXSLT.rb
283
- - test/interopR2/clientSQLData.rb
284
- - test/interopR2/clientWebMethods_GroupB.log
285
- - test/interopR2/clientBase.rb
286
- - test/interopR2/README.txt
287
- - test/interopR2/result_client.NetRemoting.txt
288
- - test/interopR2/clientXSOAP_Base.log
289
- - test/interopR2/clientKafkaXSLT_GroupB.log
290
- - test/interopR2/clientSun_GroupB.log
291
- - test/interopR2/clientXMLBus.rb
292
- - test/interopR2/interopResultBase.rb
293
- - test/interopR2/clientVWOpentalkSoap_GroupB.log
294
- - test/interopR2/clientWASP.rb
295
- - test/interopR2/client4S4C2_GroupB.log
296
- - test/interopR2/clientApacheAxis.rb
297
- - test/interopR2/interopService.rb
298
- - test/interopR2/clientKafkaXSLT_Base.log
299
- - test/interopR2/clientXSOAP.rb
300
- - test/interopR2/clientFrontier.rb
301
- - test/interopR2/clientSQLData_GroupB.log
302
- - test/interopR2/clientMSSOAPToolkit3.0_Base.log
303
- - test/interopR2/clientHP_GroupB.log
304
- - test/interopR2/clientOracle.rb
305
- - test/interopR2/clientWASP_GroupB.log
306
- - test/interopR2/clientWhiteMesa.rb
307
- - test/interopR2/rwikiInteropService.rb
308
- - test/interopR2/clientApacheAxis_GroupB.log
309
- - test/interopR2/clientSpray2001_GroupB.log
310
- - test/interopR2/clientJAX-RPC.rb
311
- - test/interopR2/clientJSOAP_Base.log
312
- - test/interopR2/clientSIMACE_GroupB.log
313
- - test/interopR2/iSimonReg.rb
314
- - test/interopR2/client4S4C.rb
315
- - test/interopR2/clientPEAR_Base.log
316
- - test/interopR2/clientOpenLink.rb
317
- - test/interopR2/clientCapeConnect.rb
318
- - test/interopR2/clientOpenLink_GroupB.log
319
- - test/interopR2/clientSilverStream.rb
320
- - test/interopR2/clientWingfoot_GroupB.log
321
- - test/interopR2/clientZSI.rb
322
- - test/interopR2/clientApacheSOAP_Base.log
323
- - test/interopR2/clientVWOpentalkSoap.rb
324
- - test/interopR2/clientFrontier_Base.log
325
- - test/interopR2/clientWebMethods.rb
326
- - test/interopR2/clientWASPC_Base.log
128
+ - lib/wsdl/binding.rb
129
+ - lib/wsdl/service.rb
130
+ - lib/wsdl/data.rb
131
+ - lib/wsdl/import.rb
132
+ - lib/wsdl/importer.rb
133
+ - lib/wsdl/info.rb
134
+ - lib/soap
135
+ - lib/soap/mappingRegistry.rb
136
+ - lib/soap/filter
137
+ - lib/soap/filter/filterchain.rb
138
+ - lib/soap/filter/handler.rb
139
+ - lib/soap/encodingstyle
140
+ - lib/soap/encodingstyle/literalHandler.rb
141
+ - lib/soap/encodingstyle/soapHandler.rb
142
+ - lib/soap/encodingstyle/aspDotNetHandler.rb
143
+ - lib/soap/encodingstyle/handler.rb
144
+ - lib/soap/wsdlDriver.rb
145
+ - lib/soap/rpc
146
+ - lib/soap/rpc/driver.rb
147
+ - lib/soap/rpc/element.rb
148
+ - lib/soap/rpc/soaplet.rb
149
+ - lib/soap/rpc/cgistub.rb
150
+ - lib/soap/rpc/proxy.rb
151
+ - lib/soap/rpc/rpc.rb
152
+ - lib/soap/rpc/standaloneServer.rb
153
+ - lib/soap/rpc/router.rb
154
+ - lib/soap/rpc/httpserver.rb
155
+ - lib/soap/XMLSchemaDatatypes.rb
156
+ - lib/soap/marshal.rb
157
+ - lib/soap/driver.rb
158
+ - lib/soap/mapping
159
+ - lib/soap/mapping/registry.rb
160
+ - lib/soap/mapping/typeMap.rb
161
+ - lib/soap/mapping/mapping.rb
162
+ - lib/soap/mapping/rubytypeFactory.rb
163
+ - lib/soap/mapping/encodedregistry.rb
164
+ - lib/soap/mapping/wsdlencodedregistry.rb
165
+ - lib/soap/mapping/encodedregistry.rb~
166
+ - lib/soap/mapping/factory.rb
167
+ - lib/soap/mapping/wsdlliteralregistry.rb
168
+ - lib/soap/mapping/schemadefinition.rb
169
+ - lib/soap/mapping/literalregistry.rb
170
+ - lib/soap/element.rb
171
+ - lib/soap/charset.rb
172
+ - lib/soap/qname.rb
173
+ - lib/soap/httpconfigloader.rb
174
+ - lib/soap/netHttpClient.rb
175
+ - lib/soap/mapping.rb
176
+ - lib/soap/cgistub.rb
177
+ - lib/soap/XMLSchemaDatatypes1999.rb
178
+ - lib/soap/proxy.rb
179
+ - lib/soap/filter.rb
180
+ - lib/soap/baseData.rb
181
+ - lib/soap/streamHandler.rb
182
+ - lib/soap/generator.rb
183
+ - lib/soap/rpcUtils.rb
184
+ - lib/soap/mimemessage.rb
185
+ - lib/soap/header
186
+ - lib/soap/header/simplehandler.rb
187
+ - lib/soap/header/handlerset.rb
188
+ - lib/soap/header/handler.rb
189
+ - lib/soap/property.rb
190
+ - lib/soap/attachment.rb
191
+ - lib/soap/parser.rb
192
+ - lib/soap/processor.rb
193
+ - lib/soap/standaloneServer.rb
194
+ - lib/soap/server.rb
195
+ - lib/soap/rpcRouter.rb
196
+ - lib/soap/compat.rb
197
+ - lib/soap/soap.rb
198
+ - lib/soap/namespace.rb
199
+ - test/interopR4
327
200
  - test/interopR4/client.rb
328
- - test/soap/helloworld
329
- - test/soap/marshal
330
- - test/soap/test_streamhandler.rb
331
- - test/soap/test_soapelement.rb
332
- - test/soap/literalArrayMapping
333
- - test/soap/test_styleuse.rb
334
- - test/soap/test_httpconfigloader.rb
335
- - test/soap/asp.net
336
- - test/soap/swa
337
- - test/soap/calc
338
- - test/soap/struct
339
- - test/soap/test_envelopenamespace.rb
340
- - test/soap/test_basetype.rb
341
- - test/soap/styleuse
342
- - test/soap/test_custommap.rb
343
- - test/soap/ssl
344
- - test/soap/wsdlDriver
345
- - test/soap/test_no_indent.rb
346
- - test/soap/test_response_as_xml.rb
347
- - test/soap/header
348
- - test/soap/test_property.rb
349
- - test/soap/fault
350
- - test/soap/test_empty.rb
351
- - test/soap/test_mapping.rb
352
- - test/soap/helloworld/hw_s.rb
353
- - test/soap/helloworld/test_helloworld.rb
354
- - test/soap/marshal/test_digraph.rb
355
- - test/soap/marshal/marshaltestlib.rb
356
- - test/soap/marshal/test_marshal.rb
357
- - test/soap/marshal/test_struct.rb
358
- - test/soap/literalArrayMapping/amazonEcDriver.rb
359
- - test/soap/literalArrayMapping/amazonEc.rb
360
- - test/soap/literalArrayMapping/test_definedarray.rb
361
- - test/soap/literalArrayMapping/amazonresponse.xml
362
- - test/soap/asp.net/test_aspdotnet.rb
363
- - test/soap/asp.net/hello.wsdl
364
- - test/soap/swa/test_file.rb
365
- - test/soap/calc/calc.rb
366
- - test/soap/calc/test_calc.rb
367
- - test/soap/calc/test_calc_cgi.rb
368
- - test/soap/calc/server2.rb
369
- - test/soap/calc/server.cgi
370
- - test/soap/calc/server.rb
371
- - test/soap/calc/test_calc2.rb
372
- - test/soap/calc/calc2.rb
373
- - test/soap/struct/test_struct.rb
374
- - test/soap/styleuse/client.rb
375
- - test/soap/styleuse/server.rb
376
- - test/soap/ssl/subca.cert
377
- - test/soap/ssl/ca.cert
378
- - test/soap/ssl/client.key
379
- - test/soap/ssl/server.key
380
- - test/soap/ssl/README
381
- - test/soap/ssl/client.cert
382
- - test/soap/ssl/server.cert
383
- - test/soap/ssl/sslsvr.rb
384
- - test/soap/ssl/test_ssl.rb
385
- - test/soap/wsdlDriver/calc.wsdl
386
- - test/soap/wsdlDriver/test_calc.rb
387
- - test/soap/wsdlDriver/echo_version.rb
388
- - test/soap/wsdlDriver/document.wsdl
389
- - test/soap/wsdlDriver/simpletype.wsdl
390
- - test/soap/wsdlDriver/README.txt
391
- - test/soap/wsdlDriver/test_document.rb
392
- - test/soap/wsdlDriver/test_simpletype.rb
393
- - test/soap/header/test_simplehandler.rb
394
- - test/soap/header/test_authheader.rb
395
- - test/soap/header/test_authheader_cgi.rb
396
- - test/soap/header/server.cgi
397
- - test/soap/fault/test_customfault.rb
398
- - test/sm11/servant.rb
201
+ - test/testutil.rb
202
+ - test/sm11
399
203
  - test/sm11/driver.rb
400
- - test/sm11/client.rb
204
+ - test/sm11/servant.rb
401
205
  - test/sm11/classDef.rb
402
206
  - test/sm11/server.rb
403
- - test/wsdl/overload
404
- - test/wsdl/datetime
405
- - test/wsdl/marshal
406
- - test/wsdl/any
407
- - test/wsdl/complexcontent
408
- - test/wsdl/test_multiplefault.rb
409
- - test/wsdl/ref
207
+ - test/sm11/client.rb
208
+ - test/xsd
209
+ - test/xsd/xmlschema.xml
210
+ - test/xsd/test_xsd.rb
211
+ - test/xsd/test_noencoding.rb
212
+ - test/xsd/codegen
213
+ - test/xsd/codegen/test_classdef.rb
214
+ - test/xsd/noencoding.xml
215
+ - test/xsd/test_xmlschemaparser.rb
216
+ - test/xsd/test_ns.rb
217
+ - test/xsd/xmllang.xml
218
+ - test/wsdl
219
+ - test/wsdl/simpletype
220
+ - test/wsdl/simpletype/rpc
221
+ - test/wsdl/simpletype/rpc/expectedEchoVersion.rb
222
+ - test/wsdl/simpletype/rpc/test_rpc.rb
223
+ - test/wsdl/simpletype/rpc/expectedClient.rb
224
+ - test/wsdl/simpletype/rpc/expectedDriver.rb
225
+ - test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
226
+ - test/wsdl/simpletype/rpc/rpc.wsdl
227
+ - test/wsdl/simpletype/rpc/expectedServant.rb
228
+ - test/wsdl/simpletype/rpc/expectedService.rb
229
+ - test/wsdl/simpletype/simpletype.wsdl
230
+ - test/wsdl/simpletype/test_simpletype.rb
410
231
  - test/wsdl/abstract
411
- - test/wsdl/soap
232
+ - test/wsdl/abstract/test_abstract.rb
233
+ - test/wsdl/abstract/abstract.wsdl
412
234
  - test/wsdl/rpc
413
- - test/wsdl/simplecontent
414
- - test/wsdl/test_emptycomplextype.rb
415
- - test/wsdl/map
416
- - test/wsdl/simpletype
417
- - test/wsdl/test_fault.rb
418
- - test/wsdl/qualified
419
- - test/wsdl/raa
235
+ - test/wsdl/rpc/test_rpc.rb
236
+ - test/wsdl/rpc/test-rpc-lit-qualified.wsdl
237
+ - test/wsdl/rpc/test_rpc_lit.rb
238
+ - test/wsdl/rpc/test-rpc-lit.wsdl
239
+ - test/wsdl/rpc/rpc.wsdl
240
+ - test/wsdl/rpc/test-rpc-lit12.wsdl
241
+ - test/wsdl/test_multiplefault.rb
242
+ - test/wsdl/marshal
243
+ - test/wsdl/marshal/person.wsdl
244
+ - test/wsdl/marshal/test_wsdlmarshal.rb
245
+ - test/wsdl/marshal/person_org.rb
420
246
  - test/wsdl/choice
421
- - test/wsdl/emptycomplextype.wsdl
422
- - test/wsdl/multiplefault.wsdl
423
- - test/wsdl/soaptype
424
- - test/wsdl/axisArray
425
- - test/wsdl/list
426
- - test/wsdl/document
247
+ - test/wsdl/choice/choice.wsdl
248
+ - test/wsdl/choice/test_choice.rb
249
+ - test/wsdl/simplecontent
250
+ - test/wsdl/simplecontent/test_simplecontent.rb
251
+ - test/wsdl/simplecontent/simplecontent.wsdl
252
+ - test/wsdl/overload
427
253
  - test/wsdl/overload/overload.wsdl
428
254
  - test/wsdl/overload/test_overload.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/datetime/test_datetime.rb
434
- - test/wsdl/marshal/person_org.rb
435
- - test/wsdl/marshal/person.wsdl
436
- - test/wsdl/marshal/test_wsdlmarshal.rb
437
- - test/wsdl/any/test_any.rb
255
+ - test/wsdl/complexcontent
256
+ - test/wsdl/complexcontent/test_echo.rb
257
+ - test/wsdl/complexcontent/complexContent.wsdl
258
+ - test/wsdl/multiplefault.wsdl
259
+ - test/wsdl/raa
260
+ - test/wsdl/raa/README.txt
261
+ - test/wsdl/raa/RAAService.rb
262
+ - test/wsdl/raa/RAAServant.rb
263
+ - test/wsdl/raa/RAA.rb
264
+ - test/wsdl/raa/raa.wsdl
265
+ - test/wsdl/raa/test_raa.rb
266
+ - test/wsdl/raa/server.rb
267
+ - test/wsdl/document
268
+ - test/wsdl/document/test_rpc.rb
269
+ - test/wsdl/document/test_number.rb
270
+ - test/wsdl/document/ping_nosoapaction.wsdl
271
+ - test/wsdl/document/document.wsdl
272
+ - test/wsdl/document/number.wsdl
273
+ - test/wsdl/document/array
274
+ - test/wsdl/document/array/test_array.rb
275
+ - test/wsdl/document/array/double.wsdl
276
+ - test/wsdl/document/test_nosoapaction.rb
277
+ - test/wsdl/any
438
278
  - test/wsdl/any/expectedDriver.rb
439
279
  - test/wsdl/any/expectedEcho.rb
440
- - test/wsdl/any/expectedService.rb
441
280
  - test/wsdl/any/any.wsdl
442
- - test/wsdl/complexcontent/test_echo.rb
443
- - test/wsdl/complexcontent/complexContent.wsdl
444
- - test/wsdl/ref/expectedProduct.rb
445
- - test/wsdl/ref/test_ref.rb
281
+ - test/wsdl/any/test_any.rb
282
+ - test/wsdl/any/expectedService.rb
283
+ - test/wsdl/datetime
284
+ - test/wsdl/datetime/datetimeServant.rb
285
+ - test/wsdl/datetime/test_datetime.rb
286
+ - test/wsdl/datetime/datetime.wsdl
287
+ - test/wsdl/datetime/DatetimeService.rb
288
+ - test/wsdl/datetime/datetime.rb
289
+ - test/wsdl/list
290
+ - test/wsdl/list/test_list.rb
291
+ - test/wsdl/list/list.wsdl
292
+ - test/wsdl/ref
446
293
  - test/wsdl/ref/product.wsdl
447
- - test/wsdl/abstract/abstract.wsdl
448
- - test/wsdl/abstract/test_abstract.rb
294
+ - test/wsdl/ref/test_ref.rb
295
+ - test/wsdl/ref/expectedDriver.rb
296
+ - test/wsdl/ref/expectedProduct.rb
297
+ - test/wsdl/test_fault.rb
298
+ - test/wsdl/emptycomplextype.wsdl
299
+ - test/wsdl/test_emptycomplextype.rb
300
+ - test/wsdl/map
301
+ - test/wsdl/map/map.xml
302
+ - test/wsdl/map/map.wsdl
303
+ - test/wsdl/map/test_map.rb
304
+ - test/wsdl/axisArray
305
+ - test/wsdl/axisArray/itemList.rb
306
+ - test/wsdl/axisArray/test_axisarray.rb
307
+ - test/wsdl/axisArray/axisArray.wsdl
308
+ - test/wsdl/qualified
309
+ - test/wsdl/qualified/np.wsdl
310
+ - test/wsdl/qualified/lp.xsd
311
+ - test/wsdl/qualified/test_qualified.rb
312
+ - test/wsdl/qualified/test_unqualified.rb
313
+ - test/wsdl/qualified/lp.wsdl
314
+ - test/wsdl/soap
449
315
  - test/wsdl/soap/test_soapbodyparts.rb
450
- - test/wsdl/soap/wsdl2ruby
451
316
  - test/wsdl/soap/soapbodyparts.wsdl
317
+ - test/wsdl/soap/wsdl2ruby
452
318
  - test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
453
319
  - test/wsdl/soap/wsdl2ruby/expectedClient.rb
454
320
  - test/wsdl/soap/wsdl2ruby/section
455
- - test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
456
- - test/wsdl/soap/wsdl2ruby/expectedService.cgi
457
- - test/wsdl/soap/wsdl2ruby/soapenc
458
- - test/wsdl/soap/wsdl2ruby/expectedServant.rb
459
- - test/wsdl/soap/wsdl2ruby/expectedDriver.rb
460
- - test/wsdl/soap/wsdl2ruby/expectedService.rb
461
- - test/wsdl/soap/wsdl2ruby/rpc.wsdl
321
+ - test/wsdl/soap/wsdl2ruby/section/test_section.rb
462
322
  - test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
463
323
  - test/wsdl/soap/wsdl2ruby/section/section.xsd
464
- - test/wsdl/soap/wsdl2ruby/section/test_section.rb
324
+ - test/wsdl/soap/wsdl2ruby/expectedDriver.rb
325
+ - test/wsdl/soap/wsdl2ruby/expectedService.cgi
326
+ - test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
327
+ - test/wsdl/soap/wsdl2ruby/soapenc
465
328
  - test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
466
329
  - test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
467
- - test/wsdl/rpc/test_rpc.rb
468
- - test/wsdl/rpc/test_rpc_lit.rb
469
- - test/wsdl/rpc/rpc.wsdl
470
- - test/wsdl/rpc/test-rpc-lit.wsdl
471
- - test/wsdl/simplecontent/simplecontent.wsdl
472
- - test/wsdl/simplecontent/test_simplecontent.rb
473
- - test/wsdl/map/map.wsdl
474
- - test/wsdl/map/map.xml
475
- - test/wsdl/map/test_map.rb
476
- - test/wsdl/simpletype/rpc
477
- - test/wsdl/simpletype/simpletype.wsdl
478
- - test/wsdl/simpletype/test_simpletype.rb
479
- - test/wsdl/simpletype/rpc/expectedClient.rb
480
- - test/wsdl/simpletype/rpc/expectedEchoVersion.rb
481
- - test/wsdl/simpletype/rpc/test_rpc.rb
482
- - test/wsdl/simpletype/rpc/expectedServant.rb
483
- - test/wsdl/simpletype/rpc/expectedDriver.rb
484
- - test/wsdl/simpletype/rpc/expectedService.rb
485
- - test/wsdl/simpletype/rpc/rpc.wsdl
486
- - test/wsdl/qualified/lp.xsd
487
- - test/wsdl/qualified/test_qualified.rb
488
- - test/wsdl/qualified/lp.wsdl
489
- - test/wsdl/qualified/np.wsdl
490
- - test/wsdl/qualified/test_unqualified.rb
491
- - test/wsdl/raa/test_raa.rb
492
- - test/wsdl/raa/raa.wsdl
493
- - test/wsdl/raa/server.rb
494
- - test/wsdl/raa/README.txt
495
- - test/wsdl/raa/RAA.rb
496
- - test/wsdl/raa/RAAServant.rb
497
- - test/wsdl/raa/RAAService.rb
498
- - test/wsdl/choice/choice.wsdl
499
- - test/wsdl/choice/test_choice.rb
500
- - test/wsdl/soaptype/test_soaptype.rb
330
+ - test/wsdl/soap/wsdl2ruby/rpc.wsdl
331
+ - test/wsdl/soap/wsdl2ruby/expectedServant.rb
332
+ - test/wsdl/soap/wsdl2ruby/expectedService.rb
333
+ - test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
334
+ - test/wsdl/oneway
335
+ - test/wsdl/oneway/test_oneway.rb
336
+ - test/wsdl/oneway/oneway.wsdl
337
+ - test/wsdl/soaptype
501
338
  - test/wsdl/soaptype/soaptype.wsdl
502
- - test/wsdl/axisArray/test_axisarray.rb
503
- - test/wsdl/axisArray/itemList.rb
504
- - test/wsdl/axisArray/axisArray.wsdl
505
- - test/wsdl/list/test_list.rb
506
- - test/wsdl/list/list.wsdl
507
- - test/wsdl/document/test_number.rb
508
- - test/wsdl/document/document.wsdl
509
- - test/wsdl/document/test_rpc.rb
510
- - test/wsdl/document/number.wsdl
511
- - test/wsdl/document/test_nosoapaction.rb
512
- - test/wsdl/document/array
513
- - test/wsdl/document/ping_nosoapaction.wsdl
514
- - test/wsdl/document/array/double.wsdl
515
- - test/wsdl/document/array/test_array.rb
516
- - test/xsd/xmlschema.xml
517
- - test/xsd/test_xsd.rb
518
- - test/xsd/test_noencoding.rb
519
- - test/xsd/test_ns.rb
520
- - test/xsd/codegen
521
- - test/xsd/noencoding.xml
522
- - test/xsd/test_xmlschemaparser.rb
523
- - test/xsd/xmllang.xml
524
- - test/xsd/codegen/test_classdef.rb
339
+ - test/wsdl/soaptype/test_soaptype.rb
340
+ - test/wsdl/fault
341
+ - test/wsdl/fault/test_multifault.rb
342
+ - test/wsdl/fault/test_fault.rb
343
+ - test/wsdl/fault/multifault.wsdl
344
+ - test/wsdl/fault/fault.wsdl
345
+ - test/runner.rb
346
+ - test/interopR2
347
+ - test/interopR2/clientBEAWebLogic.rb
348
+ - test/interopR2/client4S4C2.rb
349
+ - test/interopR2/rwikiInteropService.rb
350
+ - test/interopR2/InteropTest.wsdl
351
+ - test/interopR2/clientJSOAP.rb
352
+ - test/interopR2/clientMSSOAPToolkit2.0.rb
353
+ - test/interopR2/clientOpenLink.rb
354
+ - test/interopR2/clientSilverStream.rb
355
+ - test/interopR2/clientSIMACE.rb
356
+ - test/interopR2/clientMSSOAPToolkit3.0.rb
357
+ - test/interopR2/InteropTestDriver.rb
358
+ - test/interopR2/clientApacheAxis.rb
359
+ - test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
360
+ - test/interopR2/clientWASP.rb
361
+ - test/interopR2/InteropTestC.wsdl
362
+ - test/interopR2/clientEasySoap.rb
363
+ - test/interopR2/README.txt
364
+ - test/interopR2/interopService.rb
365
+ - test/interopR2/clientGLUE.rb
366
+ - test/interopR2/SOAPBuildersInterop_R2.wsdl
367
+ - test/interopR2/clientBase.rb
368
+ - test/interopR2/clientWASPC.rb
369
+ - test/interopR2/clientSpray2001.rb
370
+ - test/interopR2/clientASP.NET.rb
371
+ - test/interopR2/clientNuSOAP.rb
372
+ - test/interopR2/clientCapeConnect.rb
373
+ - test/interopR2/clientZSI.rb
374
+ - test/interopR2/clientSQLData.rb
375
+ - test/interopR2/groupc.wsdl
376
+ - test/interopR2/clientJAX-RPC.rb
377
+ - test/interopR2/result_client.NetRemoting.txt
378
+ - test/interopR2/iSimonReg.rb
379
+ - test/interopR2/clientWhiteMesa.rb
380
+ - test/interopR2/clienteSOAP.rb
381
+ - test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2GroupB.wsdl
382
+ - test/interopR2/clientOracle.rb
383
+ - test/interopR2/clientSun.rb
384
+ - test/interopR2/clientHP.rb
385
+ - test/interopR2/clientgSOAP.rb
386
+ - test/interopR2/simonReg.rb
387
+ - test/interopR2/clientDelphi.rb
388
+ - test/interopR2/clientXMLRPC-EPI.rb
389
+ - test/interopR2/client4S4C.rb
390
+ - test/interopR2/clientPhalanx.rb
391
+ - test/interopR2/server.cgi
392
+ - test/interopR2/clientPEAR.rb
393
+ - test/interopR2/clientkSOAP.rb
394
+ - test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2.wsdl
395
+ - test/interopR2/clientVWOpentalkSoap.rb
396
+ - test/interopR2/clientSOAP4R.rb
397
+ - test/interopR2/clientNuWave.rb
398
+ - test/interopR2/clientKafkaXSLT.rb
399
+ - test/interopR2/InteropTest.rb
400
+ - test/interopR2/server.rb
401
+ - test/interopR2/interopResultBase.rb
402
+ - test/interopR2/clientXSOAP.rb
403
+ - test/interopR2/clientFrontier.rb
404
+ - test/interopR2/client.rb
405
+ - test/interopR2/test.sh
406
+ - test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2GroupCClient.rb
407
+ - test/interopR2/clientWebMethods.rb
408
+ - test/interopR2/clientWingfoot.rb
409
+ - test/interopR2/SOAPBuildersInterop_R2GrC.wsdl
410
+ - test/interopR2/base.rb
411
+ - test/interopR2/clientXMLBus.rb
412
+ - test/interopR2/client.NetRemoting.rb
413
+ - test/interopR2/clientSOAP__Lite.rb
414
+ - test/interopR2/clientApacheSOAP.rb
415
+ - test/soap
416
+ - test/soap/ssl
417
+ - test/soap/ssl/client.cert
418
+ - test/soap/ssl/server.cert
419
+ - test/soap/ssl/README
420
+ - test/soap/ssl/test_ssl.rb
421
+ - test/soap/ssl/sslsvr.rb
422
+ - test/soap/ssl/server.key
423
+ - test/soap/ssl/ca.cert
424
+ - test/soap/ssl/client.key
425
+ - test/soap/ssl/subca.cert
426
+ - test/soap/filter
427
+ - test/soap/filter/test_filter.rb
428
+ - test/soap/marshal
429
+ - test/soap/marshal/test_digraph.rb
430
+ - test/soap/marshal/test_struct.rb
431
+ - test/soap/marshal/test_marshal.rb
432
+ - test/soap/marshal/marshaltestlib.rb
433
+ - test/soap/helloworld
434
+ - test/soap/helloworld/test_helloworld.rb
435
+ - test/soap/helloworld/hw_s.rb
436
+ - test/soap/test_basetype.rb
437
+ - test/soap/test_custommap.rb
438
+ - test/soap/calc
439
+ - test/soap/calc/test_calc2.rb
440
+ - test/soap/calc/server2.rb
441
+ - test/soap/calc/test_calc_cgi.rb
442
+ - test/soap/calc/calc.rb
443
+ - test/soap/calc/calc2.rb
444
+ - test/soap/calc/server.cgi
445
+ - test/soap/calc/test_calc.rb
446
+ - test/soap/calc/server.rb
447
+ - test/soap/test_empty.rb
448
+ - test/soap/test_extraattr.rb
449
+ - test/soap/test_response_as_xml.rb
450
+ - test/soap/wsdlDriver
451
+ - test/soap/wsdlDriver/test_document.rb
452
+ - test/soap/wsdlDriver/README.txt
453
+ - test/soap/wsdlDriver/simpletype.wsdl
454
+ - test/soap/wsdlDriver/calc.wsdl
455
+ - test/soap/wsdlDriver/echo_version.rb
456
+ - test/soap/wsdlDriver/document.wsdl
457
+ - test/soap/wsdlDriver/test_calc.rb
458
+ - test/soap/wsdlDriver/test_simpletype.rb
459
+ - test/soap/test_soapelement.rb
460
+ - test/soap/test_httpconfigloader.rb
461
+ - test/soap/test_envelopenamespace.rb
462
+ - test/soap/struct
463
+ - test/soap/struct/test_struct.rb
464
+ - test/soap/case
465
+ - test/soap/case/test_mapping.rb
466
+ - test/soap/test_property.rb
467
+ - test/soap/test_streamhandler.rb
468
+ - test/soap/header
469
+ - test/soap/header/test_simplehandler.rb
470
+ - test/soap/header/test_authheader.rb
471
+ - test/soap/header/server.cgi
472
+ - test/soap/header/test_authheader_cgi.rb
473
+ - test/soap/asp.net
474
+ - test/soap/asp.net/hello.wsdl
475
+ - test/soap/asp.net/test_aspdotnet.rb
476
+ - test/soap/styleuse
477
+ - test/soap/styleuse/server.rb
478
+ - test/soap/styleuse/client.rb
479
+ - test/soap/test_styleuse.rb
480
+ - test/soap/test_no_indent.rb
481
+ - test/soap/literalArrayMapping
482
+ - test/soap/literalArrayMapping/amazonEcDriver.rb
483
+ - test/soap/literalArrayMapping/amazonresponse.xml
484
+ - test/soap/literalArrayMapping/amazonEc.rb
485
+ - test/soap/literalArrayMapping/test_definedarray.rb
486
+ - test/soap/swa
487
+ - test/soap/swa/test_file.rb
488
+ - test/soap/fault
489
+ - test/soap/fault/test_customfault.rb
490
+ - test/soap/test_mapping.rb
491
+ - test/16runner.rb
525
492
  test_files: []
526
493
 
527
494
  rdoc_options: []