soap4r 1.5.5.20061022

Sign up to get free protection for your applications and to get access to all the features.
Files changed (440) hide show
  1. data/bin/wsdl2ruby.rb +131 -0
  2. data/bin/xsd2ruby.rb +82 -0
  3. data/lib/soap/XMLSchemaDatatypes.rb +9 -0
  4. data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
  5. data/lib/soap/attachment.rb +108 -0
  6. data/lib/soap/baseData.rb +992 -0
  7. data/lib/soap/cgistub.rb +9 -0
  8. data/lib/soap/charset.rb +9 -0
  9. data/lib/soap/compat.rb +182 -0
  10. data/lib/soap/driver.rb +9 -0
  11. data/lib/soap/element.rb +266 -0
  12. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  13. data/lib/soap/encodingstyle/handler.rb +109 -0
  14. data/lib/soap/encodingstyle/literalHandler.rb +241 -0
  15. data/lib/soap/encodingstyle/soapHandler.rb +598 -0
  16. data/lib/soap/generator.rb +264 -0
  17. data/lib/soap/header/handler.rb +60 -0
  18. data/lib/soap/header/handlerset.rb +70 -0
  19. data/lib/soap/header/simplehandler.rb +44 -0
  20. data/lib/soap/httpconfigloader.rb +119 -0
  21. data/lib/soap/mapping.rb +12 -0
  22. data/lib/soap/mapping/encodedregistry.rb +531 -0
  23. data/lib/soap/mapping/factory.rb +372 -0
  24. data/lib/soap/mapping/literalregistry.rb +321 -0
  25. data/lib/soap/mapping/mapping.rb +561 -0
  26. data/lib/soap/mapping/registry.rb +258 -0
  27. data/lib/soap/mapping/rubytypeFactory.rb +475 -0
  28. data/lib/soap/mapping/typeMap.rb +82 -0
  29. data/lib/soap/mapping/wsdlencodedregistry.rb +253 -0
  30. data/lib/soap/mapping/wsdlliteralregistry.rb +246 -0
  31. data/lib/soap/mappingRegistry.rb +9 -0
  32. data/lib/soap/marshal.rb +59 -0
  33. data/lib/soap/mimemessage.rb +241 -0
  34. data/lib/soap/namespace.rb +9 -0
  35. data/lib/soap/netHttpClient.rb +204 -0
  36. data/lib/soap/parser.rb +251 -0
  37. data/lib/soap/processor.rb +66 -0
  38. data/lib/soap/property.rb +333 -0
  39. data/lib/soap/proxy.rb +14 -0
  40. data/lib/soap/qname.rb +9 -0
  41. data/lib/soap/rpc/cgistub.rb +214 -0
  42. data/lib/soap/rpc/driver.rb +245 -0
  43. data/lib/soap/rpc/element.rb +330 -0
  44. data/lib/soap/rpc/httpserver.rb +143 -0
  45. data/lib/soap/rpc/proxy.rb +563 -0
  46. data/lib/soap/rpc/router.rb +602 -0
  47. data/lib/soap/rpc/rpc.rb +25 -0
  48. data/lib/soap/rpc/soaplet.rb +162 -0
  49. data/lib/soap/rpc/standaloneServer.rb +43 -0
  50. data/lib/soap/rpcRouter.rb +9 -0
  51. data/lib/soap/rpcUtils.rb +9 -0
  52. data/lib/soap/server.rb +9 -0
  53. data/lib/soap/soap.rb +150 -0
  54. data/lib/soap/standaloneServer.rb +9 -0
  55. data/lib/soap/streamHandler.rb +258 -0
  56. data/lib/soap/wsdlDriver.rb +580 -0
  57. data/lib/wsdl/binding.rb +65 -0
  58. data/lib/wsdl/data.rb +64 -0
  59. data/lib/wsdl/definitions.rb +250 -0
  60. data/lib/wsdl/documentation.rb +32 -0
  61. data/lib/wsdl/import.rb +80 -0
  62. data/lib/wsdl/importer.rb +38 -0
  63. data/lib/wsdl/info.rb +39 -0
  64. data/lib/wsdl/message.rb +54 -0
  65. data/lib/wsdl/operation.rb +175 -0
  66. data/lib/wsdl/operationBinding.rb +116 -0
  67. data/lib/wsdl/param.rb +85 -0
  68. data/lib/wsdl/parser.rb +163 -0
  69. data/lib/wsdl/part.rb +52 -0
  70. data/lib/wsdl/port.rb +84 -0
  71. data/lib/wsdl/portType.rb +75 -0
  72. data/lib/wsdl/service.rb +61 -0
  73. data/lib/wsdl/soap/address.rb +40 -0
  74. data/lib/wsdl/soap/binding.rb +49 -0
  75. data/lib/wsdl/soap/body.rb +56 -0
  76. data/lib/wsdl/soap/cgiStubCreator.rb +88 -0
  77. data/lib/wsdl/soap/classDefCreator.rb +340 -0
  78. data/lib/wsdl/soap/classDefCreatorSupport.rb +131 -0
  79. data/lib/wsdl/soap/clientSkeltonCreator.rb +93 -0
  80. data/lib/wsdl/soap/complexType.rb +166 -0
  81. data/lib/wsdl/soap/data.rb +42 -0
  82. data/lib/wsdl/soap/definitions.rb +151 -0
  83. data/lib/wsdl/soap/driverCreator.rb +110 -0
  84. data/lib/wsdl/soap/element.rb +28 -0
  85. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +117 -0
  86. data/lib/wsdl/soap/fault.rb +56 -0
  87. data/lib/wsdl/soap/header.rb +86 -0
  88. data/lib/wsdl/soap/headerfault.rb +56 -0
  89. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +188 -0
  90. data/lib/wsdl/soap/mappingRegistryCreator.rb +53 -0
  91. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +233 -0
  92. data/lib/wsdl/soap/methodDefCreator.rb +253 -0
  93. data/lib/wsdl/soap/operation.rb +122 -0
  94. data/lib/wsdl/soap/servantSkeltonCreator.rb +78 -0
  95. data/lib/wsdl/soap/standaloneServerStubCreator.rb +98 -0
  96. data/lib/wsdl/soap/wsdl2ruby.rb +196 -0
  97. data/lib/wsdl/types.rb +44 -0
  98. data/lib/wsdl/wsdl.rb +23 -0
  99. data/lib/wsdl/xmlSchema/all.rb +24 -0
  100. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  101. data/lib/wsdl/xmlSchema/any.rb +56 -0
  102. data/lib/wsdl/xmlSchema/attribute.rb +123 -0
  103. data/lib/wsdl/xmlSchema/choice.rb +55 -0
  104. data/lib/wsdl/xmlSchema/complexContent.rb +88 -0
  105. data/lib/wsdl/xmlSchema/complexExtension.rb +104 -0
  106. data/lib/wsdl/xmlSchema/complexRestriction.rb +92 -0
  107. data/lib/wsdl/xmlSchema/complexType.rb +152 -0
  108. data/lib/wsdl/xmlSchema/content.rb +74 -0
  109. data/lib/wsdl/xmlSchema/data.rb +90 -0
  110. data/lib/wsdl/xmlSchema/element.rb +158 -0
  111. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  112. data/lib/wsdl/xmlSchema/import.rb +65 -0
  113. data/lib/wsdl/xmlSchema/importer.rb +87 -0
  114. data/lib/wsdl/xmlSchema/include.rb +54 -0
  115. data/lib/wsdl/xmlSchema/length.rb +35 -0
  116. data/lib/wsdl/xmlSchema/list.rb +48 -0
  117. data/lib/wsdl/xmlSchema/maxlength.rb +35 -0
  118. data/lib/wsdl/xmlSchema/minlength.rb +35 -0
  119. data/lib/wsdl/xmlSchema/parser.rb +166 -0
  120. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  121. data/lib/wsdl/xmlSchema/schema.rb +144 -0
  122. data/lib/wsdl/xmlSchema/sequence.rb +51 -0
  123. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  124. data/lib/wsdl/xmlSchema/simpleExtension.rb +54 -0
  125. data/lib/wsdl/xmlSchema/simpleRestriction.rb +91 -0
  126. data/lib/wsdl/xmlSchema/simpleType.rb +80 -0
  127. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  128. data/lib/wsdl/xmlSchema/xsd2ruby.rb +107 -0
  129. data/lib/xsd/charset.rb +187 -0
  130. data/lib/xsd/codegen.rb +12 -0
  131. data/lib/xsd/codegen/classdef.rb +203 -0
  132. data/lib/xsd/codegen/commentdef.rb +34 -0
  133. data/lib/xsd/codegen/gensupport.rb +168 -0
  134. data/lib/xsd/codegen/methoddef.rb +70 -0
  135. data/lib/xsd/codegen/moduledef.rb +191 -0
  136. data/lib/xsd/datatypes.rb +1282 -0
  137. data/lib/xsd/datatypes1999.rb +20 -0
  138. data/lib/xsd/iconvcharset.rb +33 -0
  139. data/lib/xsd/mapping.rb +42 -0
  140. data/lib/xsd/namedelements.rb +124 -0
  141. data/lib/xsd/ns.rb +146 -0
  142. data/lib/xsd/qname.rb +78 -0
  143. data/lib/xsd/xmlparser.rb +61 -0
  144. data/lib/xsd/xmlparser/parser.rb +96 -0
  145. data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
  146. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  147. data/lib/xsd/xmlparser/xmlscanner.rb +147 -0
  148. data/test/16runner.rb +68 -0
  149. data/test/interopR2/README.txt +2 -0
  150. data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
  151. data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
  152. data/test/interopR2/base.rb +288 -0
  153. data/test/interopR2/client.NetRemoting.rb +17 -0
  154. data/test/interopR2/client.NetRemoting.rb.result +3410 -0
  155. data/test/interopR2/client.NetRemoting_Base.log +6279 -0
  156. data/test/interopR2/client.NetRemoting_GroupB.log +1188 -0
  157. data/test/interopR2/client.rb +1228 -0
  158. data/test/interopR2/client4S4C.rb +15 -0
  159. data/test/interopR2/client4S4C2.rb +14 -0
  160. data/test/interopR2/client4S4C2_Base.log +4955 -0
  161. data/test/interopR2/client4S4C2_GroupB.log +1000 -0
  162. data/test/interopR2/client4S4C_Base.log +4635 -0
  163. data/test/interopR2/client4S4C_GroupB.log +900 -0
  164. data/test/interopR2/clientASP.NET.rb +17 -0
  165. data/test/interopR2/clientASP.NET_Base.log +5468 -0
  166. data/test/interopR2/clientASP.NET_GroupB.log +977 -0
  167. data/test/interopR2/clientApacheAxis.rb +16 -0
  168. data/test/interopR2/clientApacheAxis_Base.log +3171 -0
  169. data/test/interopR2/clientApacheAxis_GroupB.log +498 -0
  170. data/test/interopR2/clientApacheSOAP.rb +17 -0
  171. data/test/interopR2/clientApacheSOAP_Base.log +3171 -0
  172. data/test/interopR2/clientBEAWebLogic.rb +17 -0
  173. data/test/interopR2/clientBEAWebLogic_Base.log +3171 -0
  174. data/test/interopR2/clientBEAWebLogic_GroupB.log +498 -0
  175. data/test/interopR2/clientBase.rb +1970 -0
  176. data/test/interopR2/clientCapeConnect.rb +18 -0
  177. data/test/interopR2/clientCapeConnect_Base.log +2126 -0
  178. data/test/interopR2/clientDelphi.rb +19 -0
  179. data/test/interopR2/clientDelphi_Base.log +0 -0
  180. data/test/interopR2/clientEasySoap.rb +14 -0
  181. data/test/interopR2/clientEasySoap_Base.log +6187 -0
  182. data/test/interopR2/clientEasySoap_GroupB.log +1076 -0
  183. data/test/interopR2/clientFrontier.rb +25 -0
  184. data/test/interopR2/clientFrontier_Base.log +5188 -0
  185. data/test/interopR2/clientGLUE.rb +32 -0
  186. data/test/interopR2/clientHP.rb +13 -0
  187. data/test/interopR2/clientHP_Base.log +3171 -0
  188. data/test/interopR2/clientHP_GroupB.log +498 -0
  189. data/test/interopR2/clientJAX-RPC.rb +19 -0
  190. data/test/interopR2/clientJSOAP.rb +14 -0
  191. data/test/interopR2/clientJSOAP_Base.log +4465 -0
  192. data/test/interopR2/clientJSOAP_GroupB.log +824 -0
  193. data/test/interopR2/clientKafkaXSLT.rb +15 -0
  194. data/test/interopR2/clientKafkaXSLT_Base.log +10299 -0
  195. data/test/interopR2/clientKafkaXSLT_GroupB.log +1739 -0
  196. data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
  197. data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +4805 -0
  198. data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +871 -0
  199. data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
  200. data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +5076 -0
  201. data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +908 -0
  202. data/test/interopR2/clientNuSOAP.rb +19 -0
  203. data/test/interopR2/clientNuSOAP_Base.log +5076 -0
  204. data/test/interopR2/clientNuSOAP_GroupB.log +958 -0
  205. data/test/interopR2/clientNuWave.rb +15 -0
  206. data/test/interopR2/clientNuWave_Base.log +2019 -0
  207. data/test/interopR2/clientOpenLink.rb +15 -0
  208. data/test/interopR2/clientOpenLink_Base.log +6171 -0
  209. data/test/interopR2/clientOpenLink_GroupB.log +1094 -0
  210. data/test/interopR2/clientOracle.rb +15 -0
  211. data/test/interopR2/clientOracle_Base.log +5594 -0
  212. data/test/interopR2/clientPEAR.rb +18 -0
  213. data/test/interopR2/clientPEAR_Base.log +6261 -0
  214. data/test/interopR2/clientPEAR_GroupB.log +1106 -0
  215. data/test/interopR2/clientPhalanx.rb +18 -0
  216. data/test/interopR2/clientPhalanx_Base.log +41036 -0
  217. data/test/interopR2/clientPhalanx_GroupB.log +6519 -0
  218. data/test/interopR2/clientSIMACE.rb +18 -0
  219. data/test/interopR2/clientSIMACE_Base.log +6171 -0
  220. data/test/interopR2/clientSIMACE_GroupB.log +1093 -0
  221. data/test/interopR2/clientSOAP4R.rb +18 -0
  222. data/test/interopR2/clientSOAP4R.rb.result +3409 -0
  223. data/test/interopR2/clientSOAP4R_Base.log +6366 -0
  224. data/test/interopR2/clientSOAP4R_GroupB.log +1112 -0
  225. data/test/interopR2/clientSOAP__Lite.rb +14 -0
  226. data/test/interopR2/clientSQLData.rb +18 -0
  227. data/test/interopR2/clientSQLData_Base.log +4857 -0
  228. data/test/interopR2/clientSQLData_GroupB.log +770 -0
  229. data/test/interopR2/clientSilverStream.rb +17 -0
  230. data/test/interopR2/clientSilverStream_Base.log +3171 -0
  231. data/test/interopR2/clientSpray2001.rb +17 -0
  232. data/test/interopR2/clientSpray2001_Base.log +8187 -0
  233. data/test/interopR2/clientSpray2001_GroupB.log +1408 -0
  234. data/test/interopR2/clientSun.rb +19 -0
  235. data/test/interopR2/clientSun_Base.log +4641 -0
  236. data/test/interopR2/clientSun_GroupB.log +856 -0
  237. data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
  238. data/test/interopR2/clientVWOpentalkSoap_Base.log +5402 -0
  239. data/test/interopR2/clientVWOpentalkSoap_GroupB.log +972 -0
  240. data/test/interopR2/clientWASP.rb +19 -0
  241. data/test/interopR2/clientWASPC.rb +18 -0
  242. data/test/interopR2/clientWASPC_Base.log +4187 -0
  243. data/test/interopR2/clientWASPC_GroupB.log +763 -0
  244. data/test/interopR2/clientWASP_Base.log +5414 -0
  245. data/test/interopR2/clientWASP_GroupB.log +970 -0
  246. data/test/interopR2/clientWebMethods.rb +15 -0
  247. data/test/interopR2/clientWebMethods_Base.log +3075 -0
  248. data/test/interopR2/clientWebMethods_GroupB.log +483 -0
  249. data/test/interopR2/clientWhiteMesa.rb +28 -0
  250. data/test/interopR2/clientWhiteMesa_Base.log +4359 -0
  251. data/test/interopR2/clientWhiteMesa_GroupB.log +808 -0
  252. data/test/interopR2/clientWingfoot.rb +15 -0
  253. data/test/interopR2/clientWingfoot_Base.log +4445 -0
  254. data/test/interopR2/clientWingfoot_GroupB.log +848 -0
  255. data/test/interopR2/clientXMLBus.rb +19 -0
  256. data/test/interopR2/clientXMLBus_Base.log +3075 -0
  257. data/test/interopR2/clientXMLBus_GroupB.log +483 -0
  258. data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
  259. data/test/interopR2/clientXSOAP.rb +14 -0
  260. data/test/interopR2/clientXSOAP_Base.log +4445 -0
  261. data/test/interopR2/clientZSI.rb +19 -0
  262. data/test/interopR2/clienteSOAP.rb +18 -0
  263. data/test/interopR2/clienteSOAP_Base.log +8728 -0
  264. data/test/interopR2/clientgSOAP.rb +18 -0
  265. data/test/interopR2/clientgSOAP_Base.log +4689 -0
  266. data/test/interopR2/clientgSOAP_GroupB.log +1014 -0
  267. data/test/interopR2/clientkSOAP.rb +17 -0
  268. data/test/interopR2/clientkSOAP_Base.log +5625 -0
  269. data/test/interopR2/iSimonReg.rb +112 -0
  270. data/test/interopR2/interopResultBase.rb +114 -0
  271. data/test/interopR2/interopService.rb +247 -0
  272. data/test/interopR2/result_client.NetRemoting.txt +4593 -0
  273. data/test/interopR2/rwikiInteropService.rb +105 -0
  274. data/test/interopR2/server.cgi +270 -0
  275. data/test/interopR2/server.rb +274 -0
  276. data/test/interopR2/simonReg.rb +123 -0
  277. data/test/interopR2/test.sh +49 -0
  278. data/test/interopR4/client.rb +112 -0
  279. data/test/runner.rb +9 -0
  280. data/test/sm11/classDef.rb +156 -0
  281. data/test/sm11/client.rb +542 -0
  282. data/test/sm11/driver.rb +183 -0
  283. data/test/sm11/servant.rb +1067 -0
  284. data/test/sm11/server.rb +25 -0
  285. data/test/soap/asp.net/hello.wsdl +96 -0
  286. data/test/soap/asp.net/test_aspdotnet.rb +112 -0
  287. data/test/soap/calc/calc.rb +17 -0
  288. data/test/soap/calc/calc2.rb +29 -0
  289. data/test/soap/calc/server.cgi +13 -0
  290. data/test/soap/calc/server.rb +17 -0
  291. data/test/soap/calc/server2.rb +20 -0
  292. data/test/soap/calc/test_calc.rb +49 -0
  293. data/test/soap/calc/test_calc2.rb +53 -0
  294. data/test/soap/calc/test_calc_cgi.rb +69 -0
  295. data/test/soap/fault/test_customfault.rb +58 -0
  296. data/test/soap/header/server.cgi +119 -0
  297. data/test/soap/header/test_authheader.rb +240 -0
  298. data/test/soap/header/test_authheader_cgi.rb +121 -0
  299. data/test/soap/header/test_simplehandler.rb +116 -0
  300. data/test/soap/helloworld/hw_s.rb +16 -0
  301. data/test/soap/helloworld/test_helloworld.rb +41 -0
  302. data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
  303. data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
  304. data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
  305. data/test/soap/literalArrayMapping/test_definedarray.rb +36 -0
  306. data/test/soap/marshal/marshaltestlib.rb +494 -0
  307. data/test/soap/marshal/test_digraph.rb +56 -0
  308. data/test/soap/marshal/test_marshal.rb +26 -0
  309. data/test/soap/marshal/test_struct.rb +47 -0
  310. data/test/soap/ssl/README +1 -0
  311. data/test/soap/ssl/ca.cert +23 -0
  312. data/test/soap/ssl/client.cert +19 -0
  313. data/test/soap/ssl/client.key +15 -0
  314. data/test/soap/ssl/server.cert +19 -0
  315. data/test/soap/ssl/server.key +15 -0
  316. data/test/soap/ssl/sslsvr.rb +57 -0
  317. data/test/soap/ssl/subca.cert +21 -0
  318. data/test/soap/ssl/test_ssl.rb +245 -0
  319. data/test/soap/struct/test_struct.rb +77 -0
  320. data/test/soap/styleuse/client.rb +20 -0
  321. data/test/soap/styleuse/server.rb +86 -0
  322. data/test/soap/swa/test_file.rb +73 -0
  323. data/test/soap/test_basetype.rb +976 -0
  324. data/test/soap/test_custommap.rb +108 -0
  325. data/test/soap/test_empty.rb +79 -0
  326. data/test/soap/test_envelopenamespace.rb +92 -0
  327. data/test/soap/test_httpconfigloader.rb +39 -0
  328. data/test/soap/test_mapping.rb +59 -0
  329. data/test/soap/test_no_indent.rb +86 -0
  330. data/test/soap/test_property.rb +424 -0
  331. data/test/soap/test_response_as_xml.rb +95 -0
  332. data/test/soap/test_soapelement.rb +120 -0
  333. data/test/soap/test_streamhandler.rb +262 -0
  334. data/test/soap/test_styleuse.rb +333 -0
  335. data/test/soap/wsdlDriver/README.txt +2 -0
  336. data/test/soap/wsdlDriver/calc.wsdl +126 -0
  337. data/test/soap/wsdlDriver/document.wsdl +54 -0
  338. data/test/soap/wsdlDriver/echo_version.rb +29 -0
  339. data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
  340. data/test/soap/wsdlDriver/test_calc.rb +100 -0
  341. data/test/soap/wsdlDriver/test_document.rb +78 -0
  342. data/test/soap/wsdlDriver/test_simpletype.rb +87 -0
  343. data/test/wsdl/abstract/abstract.wsdl +97 -0
  344. data/test/wsdl/abstract/test_abstract.rb +130 -0
  345. data/test/wsdl/any/any.wsdl +51 -0
  346. data/test/wsdl/any/expectedDriver.rb +46 -0
  347. data/test/wsdl/any/expectedEcho.rb +18 -0
  348. data/test/wsdl/any/expectedService.rb +42 -0
  349. data/test/wsdl/any/test_any.rb +193 -0
  350. data/test/wsdl/axisArray/axisArray.wsdl +60 -0
  351. data/test/wsdl/axisArray/itemList.rb +14 -0
  352. data/test/wsdl/axisArray/test_axisarray.rb +69 -0
  353. data/test/wsdl/choice/choice.wsdl +91 -0
  354. data/test/wsdl/choice/test_choice.rb +134 -0
  355. data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
  356. data/test/wsdl/complexcontent/test_echo.rb +101 -0
  357. data/test/wsdl/datetime/DatetimeService.rb +44 -0
  358. data/test/wsdl/datetime/datetime.rb +0 -0
  359. data/test/wsdl/datetime/datetime.wsdl +45 -0
  360. data/test/wsdl/datetime/datetimeServant.rb +21 -0
  361. data/test/wsdl/datetime/test_datetime.rb +82 -0
  362. data/test/wsdl/document/array/double.wsdl +72 -0
  363. data/test/wsdl/document/array/test_array.rb +117 -0
  364. data/test/wsdl/document/document.wsdl +74 -0
  365. data/test/wsdl/document/number.wsdl +54 -0
  366. data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
  367. data/test/wsdl/document/test_nosoapaction.rb +109 -0
  368. data/test/wsdl/document/test_number.rb +99 -0
  369. data/test/wsdl/document/test_rpc.rb +211 -0
  370. data/test/wsdl/emptycomplextype.wsdl +31 -0
  371. data/test/wsdl/list/list.wsdl +93 -0
  372. data/test/wsdl/list/test_list.rb +134 -0
  373. data/test/wsdl/map/map.wsdl +92 -0
  374. data/test/wsdl/map/map.xml +43 -0
  375. data/test/wsdl/map/test_map.rb +99 -0
  376. data/test/wsdl/marshal/person.wsdl +21 -0
  377. data/test/wsdl/marshal/person_org.rb +18 -0
  378. data/test/wsdl/marshal/test_wsdlmarshal.rb +79 -0
  379. data/test/wsdl/multiplefault.wsdl +68 -0
  380. data/test/wsdl/overload/overload.wsdl +80 -0
  381. data/test/wsdl/overload/test_overload.rb +118 -0
  382. data/test/wsdl/qualified/lp.wsdl +47 -0
  383. data/test/wsdl/qualified/lp.xsd +26 -0
  384. data/test/wsdl/qualified/np.wsdl +51 -0
  385. data/test/wsdl/qualified/test_qualified.rb +145 -0
  386. data/test/wsdl/qualified/test_unqualified.rb +159 -0
  387. data/test/wsdl/raa/RAA.rb +120 -0
  388. data/test/wsdl/raa/RAAServant.rb +107 -0
  389. data/test/wsdl/raa/RAAService.rb +120 -0
  390. data/test/wsdl/raa/README.txt +8 -0
  391. data/test/wsdl/raa/raa.wsdl +264 -0
  392. data/test/wsdl/raa/server.rb +103 -0
  393. data/test/wsdl/raa/test_raa.rb +91 -0
  394. data/test/wsdl/ref/expectedProduct.rb +158 -0
  395. data/test/wsdl/ref/product.wsdl +147 -0
  396. data/test/wsdl/ref/test_ref.rb +289 -0
  397. data/test/wsdl/rpc/rpc.wsdl +83 -0
  398. data/test/wsdl/rpc/test-rpc-lit.wsdl +364 -0
  399. data/test/wsdl/rpc/test_rpc.rb +173 -0
  400. data/test/wsdl/rpc/test_rpc_lit.rb +407 -0
  401. data/test/wsdl/simplecontent/simplecontent.wsdl +83 -0
  402. data/test/wsdl/simplecontent/test_simplecontent.rb +116 -0
  403. data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
  404. data/test/wsdl/simpletype/rpc/expectedDriver.rb +55 -0
  405. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +19 -0
  406. data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
  407. data/test/wsdl/simpletype/rpc/expectedService.rb +51 -0
  408. data/test/wsdl/simpletype/rpc/rpc.wsdl +80 -0
  409. data/test/wsdl/simpletype/rpc/test_rpc.rb +62 -0
  410. data/test/wsdl/simpletype/simpletype.wsdl +95 -0
  411. data/test/wsdl/simpletype/test_simpletype.rb +99 -0
  412. data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
  413. data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
  414. data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +19 -0
  415. data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
  416. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +55 -0
  417. data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
  418. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +44 -0
  419. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +51 -0
  420. data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
  421. data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +31 -0
  422. data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
  423. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
  424. data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
  425. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +96 -0
  426. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +79 -0
  427. data/test/wsdl/soaptype/soaptype.wsdl +61 -0
  428. data/test/wsdl/soaptype/test_soaptype.rb +160 -0
  429. data/test/wsdl/test_emptycomplextype.rb +21 -0
  430. data/test/wsdl/test_fault.rb +50 -0
  431. data/test/wsdl/test_multiplefault.rb +39 -0
  432. data/test/xsd/codegen/test_classdef.rb +214 -0
  433. data/test/xsd/noencoding.xml +4 -0
  434. data/test/xsd/test_noencoding.rb +32 -0
  435. data/test/xsd/test_ns.rb +20 -0
  436. data/test/xsd/test_xmlschemaparser.rb +22 -0
  437. data/test/xsd/test_xsd.rb +1523 -0
  438. data/test/xsd/xmllang.xml +43 -0
  439. data/test/xsd/xmlschema.xml +12 -0
  440. metadata +539 -0
@@ -0,0 +1,43 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
3
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
5
+ <soap:Header>
6
+ <gepirResponseHeader xmlns="http://www.example.com/xmllang">
7
+ <responderGln>12345</responderGln>
8
+ <numberOfHits>1</numberOfHits>
9
+ <returnCode>0</returnCode>
10
+ </gepirResponseHeader>
11
+ </soap:Header>
12
+ <soap:Body>
13
+ <gepirParty xmlns="http://www.example.com/xmllang">
14
+ <partyDataLine xml:lang="EN">
15
+ <gln>12345</gln>
16
+ <additionalPartyId>234</additionalPartyId>
17
+ <partyName>foobar LLC</partyName>
18
+ <streetAddress>baz</streetAddress>
19
+ <pOBoxNumber>9876</pOBoxNumber>
20
+ <city>Moscow</city>
21
+ <countryISOCode>RU</countryISOCode>
22
+ <contact>
23
+ <contactName> </contactName>
24
+ <communicationChannel communicationChannelCode="TELEFAX">12; 34 56 78</communicationChannel>
25
+ <communicationChannel communicationChannelCode="EMAIL">foo@example.com</communicationChannel>
26
+ <communicationChannel communicationChannelCode="TELEPHONE">123 456</communicationChannel>
27
+ </contact>
28
+ <contact>
29
+ <communicationChannel communicationChannelCode="EMAIL">bar@example.com</communicationChannel>
30
+ </contact>
31
+ <contact>
32
+ <communicationChannel communicationChannelCode="WEBSITE">www.example.com</communicationChannel>
33
+ </contact>
34
+ <contact>
35
+ <communicationChannel communicationChannelCode="TELEFAX">12 34; 56 78</communicationChannel>
36
+ </contact>
37
+ <contact>
38
+ <communicationChannel communicationChannelCode="TELEPHONE">789 012</communicationChannel>
39
+ </contact>
40
+ </partyDataLine>
41
+ </gepirParty>
42
+ </soap:Body>
43
+ </soap:Envelope>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <xs:schema
3
+ attributeFormDefault="qualified"
4
+ elementFormDefault="qualified"
5
+ targetNamespace="urn:jp.gr.jin.rrr.example.fakeschema"
6
+ xmlns:xs="http://www.w3.org/2001/XMLSchema">
7
+ <xs:element name="MessageDataSet">
8
+ <xs:complexType>
9
+ <xs:choice maxOccurs="unbounded" />
10
+ </xs:complexType>
11
+ </xs:element>
12
+ </xs:schema>
metadata ADDED
@@ -0,0 +1,539 @@
1
+ --- !ruby/object:Gem::Specification
2
+ rubygems_version: 0.9.0
3
+ specification_version: 1
4
+ name: soap4r
5
+ version: !ruby/object:Gem::Version
6
+ version: 1.5.5.20061022
7
+ date: 2006-10-04 00:00:00 +09:00
8
+ summary: An implementation of SOAP 1.1 for Ruby.
9
+ require_paths:
10
+ - lib
11
+ email: nahi@ruby-lang.org
12
+ homepage: http://dev.ctor.org/soap4r
13
+ rubyforge_project:
14
+ description:
15
+ autorequire:
16
+ default_executable:
17
+ bindir: bin
18
+ has_rdoc: false
19
+ required_ruby_version: !ruby/object:Gem::Version::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 0.0.0
24
+ version:
25
+ platform: ruby
26
+ signing_key:
27
+ cert_chain:
28
+ post_install_message:
29
+ authors:
30
+ - NAKAMURA, Hiroshi
31
+ files:
32
+ - bin/xsd2ruby.rb
33
+ - bin/wsdl2ruby.rb
34
+ - lib/soap
35
+ - lib/wsdl
36
+ - 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
97
+ - 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
117
+ - lib/wsdl/xmlSchema/sequence.rb
118
+ - lib/wsdl/xmlSchema/complexExtension.rb
119
+ - lib/wsdl/xmlSchema/list.rb
120
+ - lib/wsdl/xmlSchema/importer.rb
121
+ - 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
+ - lib/wsdl/xmlSchema/maxlength.rb
129
+ - lib/wsdl/xmlSchema/complexType.rb
130
+ - lib/wsdl/xmlSchema/complexContent.rb
131
+ - lib/wsdl/xmlSchema/parser.rb
132
+ - 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
140
+ - lib/wsdl/xmlSchema/simpleRestriction.rb
141
+ - lib/wsdl/xmlSchema/enumeration.rb
142
+ - lib/wsdl/xmlSchema/content.rb
143
+ - lib/wsdl/xmlSchema/import.rb
144
+ - lib/wsdl/xmlSchema/simpleExtension.rb
145
+ - lib/wsdl/soap/definitions.rb
146
+ - lib/wsdl/soap/binding.rb
147
+ - lib/wsdl/soap/servantSkeltonCreator.rb
148
+ - lib/wsdl/soap/encodedMappingRegistryCreator.rb
149
+ - lib/wsdl/soap/operation.rb
150
+ - lib/wsdl/soap/headerfault.rb
151
+ - lib/wsdl/soap/clientSkeltonCreator.rb
152
+ - lib/wsdl/soap/methodDefCreator.rb
153
+ - lib/wsdl/soap/address.rb
154
+ - lib/wsdl/soap/body.rb
155
+ - lib/wsdl/soap/classDefCreatorSupport.rb
156
+ - lib/wsdl/soap/standaloneServerStubCreator.rb
157
+ - lib/wsdl/soap/wsdl2ruby.rb
158
+ - lib/wsdl/soap/complexType.rb
159
+ - lib/wsdl/soap/mappingRegistryCreator.rb
160
+ - lib/wsdl/soap/driverCreator.rb
161
+ - lib/wsdl/soap/cgiStubCreator.rb
162
+ - lib/wsdl/soap/element.rb
163
+ - lib/wsdl/soap/data.rb
164
+ - lib/wsdl/soap/fault.rb
165
+ - lib/wsdl/soap/classDefCreator.rb
166
+ - lib/wsdl/soap/mappingRegistryCreatorSupport.rb
167
+ - 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
327
+ - 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
399
+ - test/sm11/driver.rb
400
+ - test/sm11/client.rb
401
+ - test/sm11/classDef.rb
402
+ - 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
410
+ - test/wsdl/abstract
411
+ - test/wsdl/soap
412
+ - 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
420
+ - 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
427
+ - test/wsdl/overload/overload.wsdl
428
+ - 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
438
+ - test/wsdl/any/expectedDriver.rb
439
+ - test/wsdl/any/expectedEcho.rb
440
+ - test/wsdl/any/expectedService.rb
441
+ - 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
446
+ - test/wsdl/ref/product.wsdl
447
+ - test/wsdl/abstract/abstract.wsdl
448
+ - test/wsdl/abstract/test_abstract.rb
449
+ - test/wsdl/soap/test_soapbodyparts.rb
450
+ - test/wsdl/soap/wsdl2ruby
451
+ - test/wsdl/soap/soapbodyparts.wsdl
452
+ - test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
453
+ - test/wsdl/soap/wsdl2ruby/expectedClient.rb
454
+ - 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
462
+ - test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
463
+ - test/wsdl/soap/wsdl2ruby/section/section.xsd
464
+ - test/wsdl/soap/wsdl2ruby/section/test_section.rb
465
+ - test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
466
+ - 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
501
+ - 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
525
+ test_files: []
526
+
527
+ rdoc_options: []
528
+
529
+ extra_rdoc_files: []
530
+
531
+ executables:
532
+ - wsdl2ruby.rb
533
+ - xsd2ruby.rb
534
+ extensions: []
535
+
536
+ requirements: []
537
+
538
+ dependencies: []
539
+