malagant-soap4r 1.5.8.20141127181857

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