soap4r-spox 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (644) hide show
  1. data/COPYING +7 -0
  2. data/GPL +340 -0
  3. data/README.rdoc +35 -0
  4. data/RELEASE_en.html +1900 -0
  5. data/RUBYS +56 -0
  6. data/Rakefile +9 -0
  7. data/bin/wsdl2ruby.rb +137 -0
  8. data/bin/xsd2ruby.rb +90 -0
  9. data/lib/soap/attachment.rb +108 -0
  10. data/lib/soap/attrproxy.rb +34 -0
  11. data/lib/soap/baseData.rb +1094 -0
  12. data/lib/soap/element.rb +277 -0
  13. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  14. data/lib/soap/encodingstyle/handler.rb +120 -0
  15. data/lib/soap/encodingstyle/literalHandler.rb +195 -0
  16. data/lib/soap/encodingstyle/soapHandler.rb +559 -0
  17. data/lib/soap/filter.rb +13 -0
  18. data/lib/soap/filter/filterchain.rb +51 -0
  19. data/lib/soap/filter/handler.rb +31 -0
  20. data/lib/soap/filter/streamhandler.rb +29 -0
  21. data/lib/soap/generator.rb +299 -0
  22. data/lib/soap/header/handler.rb +61 -0
  23. data/lib/soap/header/handlerset.rb +70 -0
  24. data/lib/soap/header/mappinghandler.rb +47 -0
  25. data/lib/soap/header/simplehandler.rb +44 -0
  26. data/lib/soap/httpconfigloader.rb +139 -0
  27. data/lib/soap/mapping.rb +12 -0
  28. data/lib/soap/mapping/encodedregistry.rb +537 -0
  29. data/lib/soap/mapping/factory.rb +388 -0
  30. data/lib/soap/mapping/literalregistry.rb +391 -0
  31. data/lib/soap/mapping/mapping.rb +577 -0
  32. data/lib/soap/mapping/registry.rb +295 -0
  33. data/lib/soap/mapping/rubytypeFactory.rb +446 -0
  34. data/lib/soap/mapping/schemadefinition.rb +170 -0
  35. data/lib/soap/mapping/typeMap.rb +105 -0
  36. data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
  37. data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
  38. data/lib/soap/marshal.rb +59 -0
  39. data/lib/soap/mimemessage.rb +241 -0
  40. data/lib/soap/nestedexception.rb +42 -0
  41. data/lib/soap/netHttpClient.rb +241 -0
  42. data/lib/soap/ns.rb +34 -0
  43. data/lib/soap/parser.rb +252 -0
  44. data/lib/soap/processor.rb +66 -0
  45. data/lib/soap/property.rb +333 -0
  46. data/lib/soap/proxy.rb +14 -0
  47. data/lib/soap/rpc/cgistub.rb +247 -0
  48. data/lib/soap/rpc/driver.rb +221 -0
  49. data/lib/soap/rpc/element.rb +374 -0
  50. data/lib/soap/rpc/element.rb.orig +374 -0
  51. data/lib/soap/rpc/httpserver.rb +142 -0
  52. data/lib/soap/rpc/methodDef.rb +68 -0
  53. data/lib/soap/rpc/proxy.rb +572 -0
  54. data/lib/soap/rpc/router.rb +662 -0
  55. data/lib/soap/rpc/rpc.rb +25 -0
  56. data/lib/soap/rpc/soaplet.rb +200 -0
  57. data/lib/soap/rpc/standaloneServer.rb +43 -0
  58. data/lib/soap/ruby18ext.rb +13 -0
  59. data/lib/soap/soap.rb +151 -0
  60. data/lib/soap/streamHandler.rb +301 -0
  61. data/lib/soap/wsdlDriver.rb +164 -0
  62. data/lib/wsdl/binding.rb +65 -0
  63. data/lib/wsdl/data.rb +64 -0
  64. data/lib/wsdl/definitions.rb +236 -0
  65. data/lib/wsdl/documentation.rb +32 -0
  66. data/lib/wsdl/import.rb +80 -0
  67. data/lib/wsdl/importer.rb +38 -0
  68. data/lib/wsdl/info.rb +50 -0
  69. data/lib/wsdl/message.rb +54 -0
  70. data/lib/wsdl/operation.rb +151 -0
  71. data/lib/wsdl/operationBinding.rb +240 -0
  72. data/lib/wsdl/param.rb +93 -0
  73. data/lib/wsdl/parser.rb +164 -0
  74. data/lib/wsdl/part.rb +52 -0
  75. data/lib/wsdl/port.rb +66 -0
  76. data/lib/wsdl/portType.rb +75 -0
  77. data/lib/wsdl/service.rb +61 -0
  78. data/lib/wsdl/soap/address.rb +40 -0
  79. data/lib/wsdl/soap/binding.rb +49 -0
  80. data/lib/wsdl/soap/body.rb +58 -0
  81. data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
  82. data/lib/wsdl/soap/classDefCreator.rb +433 -0
  83. data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
  84. data/lib/wsdl/soap/classNameCreator.rb +54 -0
  85. data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
  86. data/lib/wsdl/soap/complexType.rb +173 -0
  87. data/lib/wsdl/soap/data.rb +42 -0
  88. data/lib/wsdl/soap/definitions.rb +200 -0
  89. data/lib/wsdl/soap/driverCreator.rb +118 -0
  90. data/lib/wsdl/soap/element.rb +33 -0
  91. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -0
  92. data/lib/wsdl/soap/fault.rb +56 -0
  93. data/lib/wsdl/soap/header.rb +86 -0
  94. data/lib/wsdl/soap/headerfault.rb +56 -0
  95. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +115 -0
  96. data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
  97. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
  98. data/lib/wsdl/soap/methodDefCreator.rb +199 -0
  99. data/lib/wsdl/soap/operation.rb +112 -0
  100. data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
  101. data/lib/wsdl/soap/servletStubCreator.rb +104 -0
  102. data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
  103. data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
  104. data/lib/wsdl/types.rb +44 -0
  105. data/lib/wsdl/wsdl.rb +24 -0
  106. data/lib/wsdl/xmlSchema/all.rb +24 -0
  107. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  108. data/lib/wsdl/xmlSchema/any.rb +61 -0
  109. data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
  110. data/lib/wsdl/xmlSchema/attribute.rb +104 -0
  111. data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
  112. data/lib/wsdl/xmlSchema/choice.rb +58 -0
  113. data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
  114. data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
  115. data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
  116. data/lib/wsdl/xmlSchema/complexType.rb +193 -0
  117. data/lib/wsdl/xmlSchema/content.rb +95 -0
  118. data/lib/wsdl/xmlSchema/data.rb +116 -0
  119. data/lib/wsdl/xmlSchema/element.rb +153 -0
  120. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  121. data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
  122. data/lib/wsdl/xmlSchema/group.rb +100 -0
  123. data/lib/wsdl/xmlSchema/import.rb +53 -0
  124. data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
  125. data/lib/wsdl/xmlSchema/importer.rb +102 -0
  126. data/lib/wsdl/xmlSchema/include.rb +48 -0
  127. data/lib/wsdl/xmlSchema/length.rb +37 -0
  128. data/lib/wsdl/xmlSchema/list.rb +48 -0
  129. data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
  130. data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
  131. data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
  132. data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
  133. data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
  134. data/lib/wsdl/xmlSchema/minlength.rb +37 -0
  135. data/lib/wsdl/xmlSchema/parser.rb +167 -0
  136. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  137. data/lib/wsdl/xmlSchema/ref.rb +33 -0
  138. data/lib/wsdl/xmlSchema/schema.rb +178 -0
  139. data/lib/wsdl/xmlSchema/sequence.rb +54 -0
  140. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  141. data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
  142. data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
  143. data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
  144. data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
  145. data/lib/wsdl/xmlSchema/union.rb +35 -0
  146. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  147. data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
  148. data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
  149. data/lib/xsd/charset.rb +188 -0
  150. data/lib/xsd/codegen.rb +12 -0
  151. data/lib/xsd/codegen/classdef.rb +208 -0
  152. data/lib/xsd/codegen/commentdef.rb +34 -0
  153. data/lib/xsd/codegen/gensupport.rb +273 -0
  154. data/lib/xsd/codegen/methoddef.rb +70 -0
  155. data/lib/xsd/codegen/moduledef.rb +208 -0
  156. data/lib/xsd/datatypes.rb +1466 -0
  157. data/lib/xsd/datatypes1999.rb +20 -0
  158. data/lib/xsd/iconvcharset.rb +33 -0
  159. data/lib/xsd/mapping.rb +68 -0
  160. data/lib/xsd/namedelements.rb +132 -0
  161. data/lib/xsd/ns.rb +182 -0
  162. data/lib/xsd/qname.rb +79 -0
  163. data/lib/xsd/xmlparser.rb +82 -0
  164. data/lib/xsd/xmlparser.rb.orig +76 -0
  165. data/lib/xsd/xmlparser/libxmlparser.rb +119 -0
  166. data/lib/xsd/xmlparser/parser.rb +100 -0
  167. data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
  168. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  169. data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
  170. data/rubyStyle.css +104 -0
  171. data/sample/attachment/complexmime/EdmService.rb +124 -0
  172. data/sample/attachment/complexmime/README.txt +3 -0
  173. data/sample/attachment/complexmime/client.rb +57 -0
  174. data/sample/attachment/complexmime/drift.cdf +1 -0
  175. data/sample/attachment/complexmime/plaatje.png +1 -0
  176. data/sample/attachment/complexmime/server.rb +68 -0
  177. data/sample/attachment/swa/client.rb +13 -0
  178. data/sample/attachment/swa/server.rb +23 -0
  179. data/sample/basic/apacheClient.rb +92 -0
  180. data/sample/basic/babelfish.rb +16 -0
  181. data/sample/basic/calc/calc.rb +17 -0
  182. data/sample/basic/calc/calc2.rb +29 -0
  183. data/sample/basic/calc/client.rb +26 -0
  184. data/sample/basic/calc/client2.rb +29 -0
  185. data/sample/basic/calc/httpd.rb +20 -0
  186. data/sample/basic/calc/samplehttpd.conf +2 -0
  187. data/sample/basic/calc/server.cgi +15 -0
  188. data/sample/basic/calc/server.fcgi +22 -0
  189. data/sample/basic/calc/server.rb +21 -0
  190. data/sample/basic/calc/server2.rb +24 -0
  191. data/sample/basic/exchange/client.rb +19 -0
  192. data/sample/basic/exchange/exchange.rb +17 -0
  193. data/sample/basic/exchange/httpd.rb +20 -0
  194. data/sample/basic/exchange/samplehttpd.conf +2 -0
  195. data/sample/basic/exchange/server.cgi +14 -0
  196. data/sample/basic/exchange/server.rb +20 -0
  197. data/sample/basic/flickr.rb +26 -0
  198. data/sample/basic/helloworld/client.rb +6 -0
  199. data/sample/basic/helloworld/server.rb +20 -0
  200. data/sample/basic/sampleStruct/client.rb +16 -0
  201. data/sample/basic/sampleStruct/httpd.rb +20 -0
  202. data/sample/basic/sampleStruct/iSampleStruct.rb +22 -0
  203. data/sample/basic/sampleStruct/sampleStruct.rb +13 -0
  204. data/sample/basic/sampleStruct/samplehttpd.conf +2 -0
  205. data/sample/basic/sampleStruct/server.cgi +14 -0
  206. data/sample/basic/sampleStruct/server.rb +20 -0
  207. data/sample/basic/whois.rb +14 -0
  208. data/sample/basic/wsdl_helloworld/README +15 -0
  209. data/sample/basic/wsdl_helloworld/client/default.rb +1 -0
  210. data/sample/basic/wsdl_helloworld/client/defaultDriver.rb +47 -0
  211. data/sample/basic/wsdl_helloworld/client/hws.wsdl +46 -0
  212. data/sample/basic/wsdl_helloworld/client/hwsClient.rb +22 -0
  213. data/sample/basic/wsdl_helloworld/server/hw_s.rb +25 -0
  214. data/sample/basic/wsdl_helloworld/server/hws.wsdl +46 -0
  215. data/sample/basic/yahooNewsSearch.rb +36 -0
  216. data/sample/howto/as_xml/client.rb +22 -0
  217. data/sample/howto/as_xml/server.rb +22 -0
  218. data/sample/howto/base64/client.rb +17 -0
  219. data/sample/howto/base64/server.rb +30 -0
  220. data/sample/howto/custom_ns/client.rb +37 -0
  221. data/sample/howto/custom_ns/server.rb +42 -0
  222. data/sample/howto/documentliteral/README.txt +19 -0
  223. data/sample/howto/documentliteral/client.rb +11 -0
  224. data/sample/howto/documentliteral/echo.wsdl +66 -0
  225. data/sample/howto/documentliteral/servant.rb +11 -0
  226. data/sample/howto/filter/client.rb +42 -0
  227. data/sample/howto/filter/server.rb +67 -0
  228. data/sample/howto/scopesample/client.rb +34 -0
  229. data/sample/howto/scopesample/httpd.rb +22 -0
  230. data/sample/howto/scopesample/samplehttpd.conf +2 -0
  231. data/sample/howto/scopesample/servant.rb +18 -0
  232. data/sample/howto/scopesample/server.cgi +29 -0
  233. data/sample/howto/scopesample/server.rb +20 -0
  234. data/sample/howto/styleuse/client.rb +21 -0
  235. data/sample/howto/styleuse/server.rb +86 -0
  236. data/sample/howto/wsdl_fault/README.txt +11 -0
  237. data/sample/howto/wsdl_fault/fault/AddClient.rb +24 -0
  238. data/sample/howto/wsdl_fault/fault/AddServer.rb +15 -0
  239. data/sample/howto/wsdl_fault/fault/AddServiceImpl.rb +18 -0
  240. data/sample/howto/wsdl_fault/fault/fault.wsdl +79 -0
  241. data/sample/howto/wsdl_fault/multifault/AddClient.rb +28 -0
  242. data/sample/howto/wsdl_fault/multifault/AddServer.rb +15 -0
  243. data/sample/howto/wsdl_fault/multifault/AddServiceImpl.rb +24 -0
  244. data/sample/howto/wsdl_fault/multifault/fault.wsdl +96 -0
  245. data/sample/howto/wsdl_hash/client.rb +11 -0
  246. data/sample/howto/wsdl_hash/hash.wsdl +69 -0
  247. data/sample/howto/wsdl_hash/server.rb +17 -0
  248. data/sample/marshal/customfactory.rb +97 -0
  249. data/sample/marshal/customregistry.rb +17 -0
  250. data/sample/marshal/digraph.rb +43 -0
  251. data/sample/marshal/enum/README.txt +6 -0
  252. data/sample/marshal/enum/enum.xsd +23 -0
  253. data/sample/marshal/enum/enumsample.rb +20 -0
  254. data/sample/marshal/enum/enumsample_mapper.rb +7 -0
  255. data/sample/marshal/enum/enumsample_mapping_registry.rb +23 -0
  256. data/sample/marshal/enum/marshal.rb +9 -0
  257. data/sample/payload/basicauth/client.rb +10 -0
  258. data/sample/payload/basicauth/htpasswd +2 -0
  259. data/sample/payload/basicauth/server.rb +43 -0
  260. data/sample/payload/cookies/calc.rb +52 -0
  261. data/sample/payload/cookies/client.rb +30 -0
  262. data/sample/payload/cookies/filterclient.rb +52 -0
  263. data/sample/payload/cookies/server.rb +24 -0
  264. data/sample/payload/gzipped/client.rb +8 -0
  265. data/sample/payload/gzipped/server.rb +21 -0
  266. data/sample/payload/ssl/files/README +1 -0
  267. data/sample/payload/ssl/files/ca.cert +23 -0
  268. data/sample/payload/ssl/files/client.cert +19 -0
  269. data/sample/payload/ssl/files/client.key +15 -0
  270. data/sample/payload/ssl/files/server.cert +19 -0
  271. data/sample/payload/ssl/files/server.key +15 -0
  272. data/sample/payload/ssl/files/sslclient.properties +5 -0
  273. data/sample/payload/ssl/files/sslclient_require_noserverauth.properties +2 -0
  274. data/sample/payload/ssl/files/sslclient_with_clientauth.properties +9 -0
  275. data/sample/payload/ssl/files/subca.cert +21 -0
  276. data/sample/payload/ssl/sslclient.rb +12 -0
  277. data/sample/payload/ssl/sslclient_require_noserverauth.rb +12 -0
  278. data/sample/payload/ssl/sslclient_with_clientauth.rb +12 -0
  279. data/sample/payload/ssl/sslserver.rb +49 -0
  280. data/sample/payload/ssl/sslserver_noauth.rb +45 -0
  281. data/sample/payload/ssl/sslserver_require_clientauth.rb +50 -0
  282. data/sample/showcase/soap/hippo5tq/hippo5tq.rb +41 -0
  283. data/sample/showcase/soap/hippo5tq/hippo5tq2.rb +99 -0
  284. data/sample/showcase/soap/hippo5tq/hippoClient.rb +106 -0
  285. data/sample/showcase/soap/icd/IICD.rb +17 -0
  286. data/sample/showcase/soap/icd/icd.rb +46 -0
  287. data/sample/showcase/soap/mssoap/README.txt +62 -0
  288. data/sample/showcase/soap/mssoap/client.vba +19 -0
  289. data/sample/showcase/soap/mssoap/stockQuoteService.cgi +44 -0
  290. data/sample/showcase/soap/mssoap/stockQuoteService.rb +9 -0
  291. data/sample/showcase/soap/mssoap/stockQuoteService.wsdl +47 -0
  292. data/sample/showcase/soap/mssoap/stockQuoteServiceClient.rb +26 -0
  293. data/sample/showcase/soap/mssoap/stockQuoteServiceClient.xls +0 -0
  294. data/sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb +46 -0
  295. data/sample/showcase/soap/netDicV06/INetDicV06.rb +36 -0
  296. data/sample/showcase/soap/netDicV06/netDicV06.rb +16 -0
  297. data/sample/showcase/soap/raa/SOAP__Lite.pl +15 -0
  298. data/sample/showcase/soap/raa/pocketSOAP.js +33 -0
  299. data/sample/showcase/soap/raa2.4/raa.rb +332 -0
  300. data/sample/showcase/soap/raa2.4/raa.wsdl +644 -0
  301. data/sample/showcase/soap/raa2.4/raaDriver.rb +255 -0
  302. data/sample/showcase/soap/raa2.4/raaServiceClient.rb +354 -0
  303. data/sample/showcase/soap/raa2.4/sample.rb +115 -0
  304. data/sample/showcase/soap/rwiki/rwikiClient.rb +29 -0
  305. data/sample/showcase/soap/rwiki/rwikiServer.cgi +44 -0
  306. data/sample/showcase/soap/soapbox/ContactsDataSet.xml +37 -0
  307. data/sample/showcase/soap/soapbox/ExceptionDataSet.xml +23 -0
  308. data/sample/showcase/soap/soapbox/MessageDataSet.xml +8 -0
  309. data/sample/showcase/soap/soapbox/SoapBoxWebService.wsdl +1233 -0
  310. data/sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl +1226 -0
  311. data/sample/showcase/soap/soapbox/wsdlDriver.rb +23 -0
  312. data/sample/showcase/wsdl/PayPalSvc/client.rb +36 -0
  313. data/sample/showcase/wsdl/amazon/AmazonSearch.rb +3160 -0
  314. data/sample/showcase/wsdl/amazon/AmazonSearchDriver.rb +546 -0
  315. data/sample/showcase/wsdl/amazon/sampleClient.rb +37 -0
  316. data/sample/showcase/wsdl/amazon/wsdlDriver.rb +52 -0
  317. data/sample/showcase/wsdl/amazonEC/client.rb +13 -0
  318. data/sample/showcase/wsdl/eBaySvc/sampleclient.rb +60 -0
  319. data/sample/showcase/wsdl/googleAdwords/CampaignService.wsdl +785 -0
  320. data/sample/showcase/wsdl/googleAdwords/ca.pem +19 -0
  321. data/sample/showcase/wsdl/googleAdwords/client.rb +40 -0
  322. data/sample/showcase/wsdl/googleAdwords/soap/property +1 -0
  323. data/sample/showcase/wsdl/googleSearch/GoogleSearch.rb +97 -0
  324. data/sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb +102 -0
  325. data/sample/showcase/wsdl/googleSearch/README +6 -0
  326. data/sample/showcase/wsdl/googleSearch/httpd.rb +20 -0
  327. data/sample/showcase/wsdl/googleSearch/sampleClient.rb +56 -0
  328. data/sample/showcase/wsdl/googleSearch/samplehttpd.conf +2 -0
  329. data/sample/showcase/wsdl/googleSearch/sjissearch.sh +3 -0
  330. data/sample/showcase/wsdl/googleSearch/wsdlDriver.rb +29 -0
  331. data/sample/showcase/wsdl/noaa/README.txt +5 -0
  332. data/sample/showcase/wsdl/noaa/client.rb +44 -0
  333. data/sample/showcase/wsdl/noaa/default.rb +46 -0
  334. data/sample/showcase/wsdl/noaa/defaultDriver.rb +66 -0
  335. data/sample/showcase/wsdl/noaa/defaultMappingRegistry.rb +74 -0
  336. data/sample/showcase/wsdl/noaa/ndfdXMLClient.rb +43 -0
  337. data/sample/showcase/wsdl/raa2.4/raa.rb +134 -0
  338. data/sample/showcase/wsdl/raa2.4/raa.wsdl +644 -0
  339. data/sample/showcase/wsdl/raa2.4/wsdlDriver.rb +117 -0
  340. data/sample/showcase/wsdl/rnn/client.rb +59 -0
  341. data/sample/showcase/wsdl/rnn/post.rb +27 -0
  342. data/sample/showcase/wsdl/rnn/rnn-hash.wsdl +282 -0
  343. data/sample/showcase/wsdl/rnn/rnn.wsdl +310 -0
  344. data/sample/showcase/wsdl/rnn/submit.rb +63 -0
  345. data/sample/showcase/wsdl/salesforce/SforceServiceClient.rb +280 -0
  346. data/sample/showcase/wsdl/salesforce/ca.pem +35 -0
  347. data/sample/showcase/wsdl/salesforce/client.rb +156 -0
  348. data/sample/showcase/wsdl/salesforce/default.rb +1740 -0
  349. data/sample/showcase/wsdl/salesforce/defaultDriver.rb +165 -0
  350. data/sample/showcase/wsdl/salesforce/soap/property +1 -0
  351. data/sample/soapheader/authheader/authmgr.rb +41 -0
  352. data/sample/soapheader/authheader/client.rb +40 -0
  353. data/sample/soapheader/authheader/client2.rb +42 -0
  354. data/sample/soapheader/authheader/server.rb +73 -0
  355. data/sample/soapheader/authheader/server2.rb +83 -0
  356. data/sample/soapheader/soapext_basicauth/client.rb +25 -0
  357. data/sample/soapheader/soapext_basicauth/mms_MizGIS.rb +701 -0
  358. data/sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl +1007 -0
  359. data/sample/soapheader/soapext_basicauth/mms_MizGISClient.rb +231 -0
  360. data/sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb +210 -0
  361. data/sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb +1232 -0
  362. data/setup.rb +1585 -0
  363. data/soap4r-spox.gemspec +12 -0
  364. data/test/16runner.rb +68 -0
  365. data/test/interopR2/README.txt +2 -0
  366. data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
  367. data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
  368. data/test/interopR2/base.rb +288 -0
  369. data/test/interopR2/client.NetRemoting.rb +17 -0
  370. data/test/interopR2/client.rb +1234 -0
  371. data/test/interopR2/client4S4C.rb +15 -0
  372. data/test/interopR2/client4S4C2.rb +14 -0
  373. data/test/interopR2/clientASP.NET.rb +17 -0
  374. data/test/interopR2/clientApacheAxis.rb +16 -0
  375. data/test/interopR2/clientApacheSOAP.rb +17 -0
  376. data/test/interopR2/clientBEAWebLogic.rb +17 -0
  377. data/test/interopR2/clientBase.rb +1967 -0
  378. data/test/interopR2/clientCapeConnect.rb +18 -0
  379. data/test/interopR2/clientDelphi.rb +19 -0
  380. data/test/interopR2/clientEasySoap.rb +14 -0
  381. data/test/interopR2/clientFrontier.rb +25 -0
  382. data/test/interopR2/clientGLUE.rb +32 -0
  383. data/test/interopR2/clientHP.rb +13 -0
  384. data/test/interopR2/clientJAX-RPC.rb +19 -0
  385. data/test/interopR2/clientJSOAP.rb +14 -0
  386. data/test/interopR2/clientKafkaXSLT.rb +15 -0
  387. data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
  388. data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
  389. data/test/interopR2/clientNuSOAP.rb +19 -0
  390. data/test/interopR2/clientNuWave.rb +15 -0
  391. data/test/interopR2/clientOpenLink.rb +15 -0
  392. data/test/interopR2/clientOracle.rb +15 -0
  393. data/test/interopR2/clientPEAR.rb +18 -0
  394. data/test/interopR2/clientPhalanx.rb +18 -0
  395. data/test/interopR2/clientSIMACE.rb +18 -0
  396. data/test/interopR2/clientSOAP4R.rb +18 -0
  397. data/test/interopR2/clientSOAP__Lite.rb +14 -0
  398. data/test/interopR2/clientSQLData.rb +18 -0
  399. data/test/interopR2/clientSilverStream.rb +17 -0
  400. data/test/interopR2/clientSpray2001.rb +17 -0
  401. data/test/interopR2/clientSun.rb +19 -0
  402. data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
  403. data/test/interopR2/clientWASP.rb +19 -0
  404. data/test/interopR2/clientWASPC.rb +18 -0
  405. data/test/interopR2/clientWebMethods.rb +15 -0
  406. data/test/interopR2/clientWhiteMesa.rb +28 -0
  407. data/test/interopR2/clientWingfoot.rb +15 -0
  408. data/test/interopR2/clientXMLBus.rb +19 -0
  409. data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
  410. data/test/interopR2/clientXSOAP.rb +14 -0
  411. data/test/interopR2/clientZSI.rb +19 -0
  412. data/test/interopR2/clienteSOAP.rb +18 -0
  413. data/test/interopR2/clientgSOAP.rb +18 -0
  414. data/test/interopR2/clientkSOAP.rb +17 -0
  415. data/test/interopR2/iSimonReg.rb +112 -0
  416. data/test/interopR2/interopResultBase.rb +114 -0
  417. data/test/interopR2/interopService.rb +247 -0
  418. data/test/interopR2/rwikiInteropService.rb +105 -0
  419. data/test/interopR2/server.cgi +270 -0
  420. data/test/interopR2/server.rb +275 -0
  421. data/test/interopR2/simonReg.rb +123 -0
  422. data/test/interopR2/test.sh +49 -0
  423. data/test/interopR4/client.rb +112 -0
  424. data/test/results +4810 -0
  425. data/test/runner.rb +7 -0
  426. data/test/sm11/classDef.rb +156 -0
  427. data/test/sm11/client.rb +542 -0
  428. data/test/sm11/driver.rb +183 -0
  429. data/test/sm11/servant.rb +1067 -0
  430. data/test/sm11/server.rb +25 -0
  431. data/test/soap/asp.net/hello.wsdl +96 -0
  432. data/test/soap/asp.net/test_aspdotnet.rb +123 -0
  433. data/test/soap/auth/htdigest +2 -0
  434. data/test/soap/auth/htpasswd +2 -0
  435. data/test/soap/auth/test_basic.rb +117 -0
  436. data/test/soap/auth/test_digest.rb +118 -0
  437. data/test/soap/calc/calc.rb +17 -0
  438. data/test/soap/calc/calc2.rb +29 -0
  439. data/test/soap/calc/server.cgi +13 -0
  440. data/test/soap/calc/server.rb +17 -0
  441. data/test/soap/calc/server2.rb +20 -0
  442. data/test/soap/calc/test_calc.rb +51 -0
  443. data/test/soap/calc/test_calc2.rb +55 -0
  444. data/test/soap/calc/test_calc_cgi.rb +71 -0
  445. data/test/soap/case/test_mapping.rb +57 -0
  446. data/test/soap/fault/test_customfault.rb +60 -0
  447. data/test/soap/fault/test_fault.rb +46 -0
  448. data/test/soap/fault/test_soaparray.rb +35 -0
  449. data/test/soap/filter/test_filter.rb +146 -0
  450. data/test/soap/header/server.cgi +119 -0
  451. data/test/soap/header/session.pstoredb +0 -0
  452. data/test/soap/header/test_authheader.rb +240 -0
  453. data/test/soap/header/test_authheader_cgi.rb +121 -0
  454. data/test/soap/header/test_simplehandler.rb +116 -0
  455. data/test/soap/helloworld/hw_s.rb +16 -0
  456. data/test/soap/helloworld/test_helloworld.rb +43 -0
  457. data/test/soap/htpasswd +2 -0
  458. data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
  459. data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
  460. data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
  461. data/test/soap/literalArrayMapping/test_definedarray.rb +34 -0
  462. data/test/soap/marshal/marshaltestlib.rb +494 -0
  463. data/test/soap/marshal/test_digraph.rb +56 -0
  464. data/test/soap/marshal/test_marshal.rb +26 -0
  465. data/test/soap/marshal/test_struct.rb +47 -0
  466. data/test/soap/ssl/README +1 -0
  467. data/test/soap/ssl/ca.cert +23 -0
  468. data/test/soap/ssl/client.cert +19 -0
  469. data/test/soap/ssl/client.key +15 -0
  470. data/test/soap/ssl/server.cert +19 -0
  471. data/test/soap/ssl/server.key +15 -0
  472. data/test/soap/ssl/sslsvr.rb +57 -0
  473. data/test/soap/ssl/subca.cert +21 -0
  474. data/test/soap/ssl/test_ssl.rb +235 -0
  475. data/test/soap/struct/test_struct.rb +70 -0
  476. data/test/soap/styleuse/client.rb +20 -0
  477. data/test/soap/styleuse/server.rb +86 -0
  478. data/test/soap/swa/test_file.rb +75 -0
  479. data/test/soap/test_basetype.rb +1090 -0
  480. data/test/soap/test_cookie.rb +112 -0
  481. data/test/soap/test_custom_ns.rb +105 -0
  482. data/test/soap/test_custommap.rb +110 -0
  483. data/test/soap/test_empty.rb +105 -0
  484. data/test/soap/test_envelopenamespace.rb +85 -0
  485. data/test/soap/test_extraattr.rb +54 -0
  486. data/test/soap/test_generator.rb +27 -0
  487. data/test/soap/test_httpconfigloader.rb +71 -0
  488. data/test/soap/test_mapping.rb +131 -0
  489. data/test/soap/test_nestedexception.rb +56 -0
  490. data/test/soap/test_nil.rb +57 -0
  491. data/test/soap/test_no_indent.rb +88 -0
  492. data/test/soap/test_property.rb +428 -0
  493. data/test/soap/test_response_as_xml.rb +117 -0
  494. data/test/soap/test_soapelement.rb +138 -0
  495. data/test/soap/test_streamhandler.rb +270 -0
  496. data/test/soap/test_styleuse.rb +326 -0
  497. data/test/soap/wsdlDriver/README.txt +2 -0
  498. data/test/soap/wsdlDriver/calc.wsdl +126 -0
  499. data/test/soap/wsdlDriver/document.wsdl +54 -0
  500. data/test/soap/wsdlDriver/echo_version.rb +29 -0
  501. data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
  502. data/test/soap/wsdlDriver/test_calc.rb +71 -0
  503. data/test/soap/wsdlDriver/test_document.rb +71 -0
  504. data/test/soap/wsdlDriver/test_simpletype.rb +80 -0
  505. data/test/testutil.rb +54 -0
  506. data/test/wsdl/abstract/abstract.wsdl +176 -0
  507. data/test/wsdl/abstract/test_abstract.rb +159 -0
  508. data/test/wsdl/anonymous/expectedClassDef.rb +128 -0
  509. data/test/wsdl/anonymous/expectedDriver.rb +59 -0
  510. data/test/wsdl/anonymous/expectedMappingRegistry.rb +176 -0
  511. data/test/wsdl/anonymous/lp.wsdl +147 -0
  512. data/test/wsdl/anonymous/test_anonymous.rb +130 -0
  513. data/test/wsdl/any/any.wsdl +114 -0
  514. data/test/wsdl/any/expectedDriver.rb +68 -0
  515. data/test/wsdl/any/expectedEcho.rb +57 -0
  516. data/test/wsdl/any/expectedMappingRegistry.rb +63 -0
  517. data/test/wsdl/any/expectedService.rb +69 -0
  518. data/test/wsdl/any/test_any.rb +193 -0
  519. data/test/wsdl/axisArray/axisArray.wsdl +87 -0
  520. data/test/wsdl/axisArray/test_axisarray.rb +124 -0
  521. data/test/wsdl/choice/choice.wsdl +167 -0
  522. data/test/wsdl/choice/test_choice.rb +310 -0
  523. data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
  524. data/test/wsdl/complexcontent/test_echo.rb +90 -0
  525. data/test/wsdl/datetime/DatetimeService.rb +44 -0
  526. data/test/wsdl/datetime/datetime.rb +0 -0
  527. data/test/wsdl/datetime/datetime.wsdl +45 -0
  528. data/test/wsdl/datetime/datetimeServant.rb +22 -0
  529. data/test/wsdl/datetime/test_datetime.rb +86 -0
  530. data/test/wsdl/document/array/double.wsdl +161 -0
  531. data/test/wsdl/document/array/test_array.rb +201 -0
  532. data/test/wsdl/document/document.wsdl +76 -0
  533. data/test/wsdl/document/number.wsdl +54 -0
  534. data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
  535. data/test/wsdl/document/test_nosoapaction.rb +102 -0
  536. data/test/wsdl/document/test_number.rb +92 -0
  537. data/test/wsdl/document/test_rpc.rb +355 -0
  538. data/test/wsdl/emptycomplextype.wsdl +31 -0
  539. data/test/wsdl/fault/fault.wsdl +79 -0
  540. data/test/wsdl/fault/multifault.wsdl +96 -0
  541. data/test/wsdl/fault/test_fault.rb +119 -0
  542. data/test/wsdl/fault/test_multifault.rb +134 -0
  543. data/test/wsdl/group/expectedClassdef.rb +58 -0
  544. data/test/wsdl/group/expectedDriver.rb +51 -0
  545. data/test/wsdl/group/expectedMappingRegistry.rb +67 -0
  546. data/test/wsdl/group/group.wsdl +88 -0
  547. data/test/wsdl/group/test_rpc.rb +145 -0
  548. data/test/wsdl/list/list.wsdl +93 -0
  549. data/test/wsdl/list/test_list.rb +124 -0
  550. data/test/wsdl/map/map.wsdl +92 -0
  551. data/test/wsdl/map/map.xml +43 -0
  552. data/test/wsdl/map/test_map.rb +99 -0
  553. data/test/wsdl/marshal/Person.rb +1 -0
  554. data/test/wsdl/marshal/person.wsdl +21 -0
  555. data/test/wsdl/marshal/person_org.rb +23 -0
  556. data/test/wsdl/marshal/test_wsdlmarshal.rb +76 -0
  557. data/test/wsdl/multiplefault.wsdl +75 -0
  558. data/test/wsdl/oneway/oneway.wsdl +36 -0
  559. data/test/wsdl/oneway/test_oneway.rb +108 -0
  560. data/test/wsdl/overload/expectedClient.rb +37 -0
  561. data/test/wsdl/overload/expectedDriver.rb +61 -0
  562. data/test/wsdl/overload/expectedServant.rb +35 -0
  563. data/test/wsdl/overload/overload.wsdl +70 -0
  564. data/test/wsdl/overload/test_overload.rb +131 -0
  565. data/test/wsdl/qualified/lp.wsdl +47 -0
  566. data/test/wsdl/qualified/lp.xsd +26 -0
  567. data/test/wsdl/qualified/np.wsdl +51 -0
  568. data/test/wsdl/qualified/test_qualified.rb +137 -0
  569. data/test/wsdl/qualified/test_unqualified.rb +138 -0
  570. data/test/wsdl/raa/RAAService.rb +125 -0
  571. data/test/wsdl/raa/README.txt +8 -0
  572. data/test/wsdl/raa/expectedClassDef.rb +100 -0
  573. data/test/wsdl/raa/expectedDriver.rb +96 -0
  574. data/test/wsdl/raa/expectedMappingRegistry.rb +121 -0
  575. data/test/wsdl/raa/raa.wsdl +264 -0
  576. data/test/wsdl/raa/test_raa.rb +126 -0
  577. data/test/wsdl/ref/expectedDriver.rb +51 -0
  578. data/test/wsdl/ref/expectedProduct.rb +243 -0
  579. data/test/wsdl/ref/product.wsdl +147 -0
  580. data/test/wsdl/ref/test_ref.rb +268 -0
  581. data/test/wsdl/rpc/rpc.wsdl +109 -0
  582. data/test/wsdl/rpc/test-rpc-lit.wsdl +371 -0
  583. data/test/wsdl/rpc/test_rpc.rb +176 -0
  584. data/test/wsdl/rpc/test_rpc_lit.rb +470 -0
  585. data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
  586. data/test/wsdl/simplecontent/test_simplecontent.rb +102 -0
  587. data/test/wsdl/simpletype/rpc/echo_version.rb +1 -0
  588. data/test/wsdl/simpletype/rpc/echo_versionDriver.rb +10 -0
  589. data/test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb +4 -0
  590. data/test/wsdl/simpletype/rpc/echo_versionServant.rb +3 -0
  591. data/test/wsdl/simpletype/rpc/echo_version_service.rb +3 -0
  592. data/test/wsdl/simpletype/rpc/echo_version_serviceClient.rb +34 -0
  593. data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
  594. data/test/wsdl/simpletype/rpc/expectedDriver.rb +58 -0
  595. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +36 -0
  596. data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +57 -0
  597. data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
  598. data/test/wsdl/simpletype/rpc/expectedService.rb +55 -0
  599. data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
  600. data/test/wsdl/simpletype/rpc/test_rpc.rb +52 -0
  601. data/test/wsdl/simpletype/simpletype.wsdl +114 -0
  602. data/test/wsdl/simpletype/test_simpletype.rb +92 -0
  603. data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
  604. data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
  605. data/test/wsdl/soap/wsdl2ruby/echo_version.rb +1 -0
  606. data/test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb +10 -0
  607. data/test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb +4 -0
  608. data/test/wsdl/soap/wsdl2ruby/echo_versionServant.rb +3 -0
  609. data/test/wsdl/soap/wsdl2ruby/echo_version_service.cgi +3 -0
  610. data/test/wsdl/soap/wsdl2ruby/echo_version_service.rb +7 -0
  611. data/test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb +34 -0
  612. data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +21 -0
  613. data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
  614. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +58 -0
  615. data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +36 -0
  616. data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
  617. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +48 -0
  618. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +55 -0
  619. data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
  620. data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +37 -0
  621. data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
  622. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +53 -0
  623. data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
  624. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +83 -0
  625. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +102 -0
  626. data/test/wsdl/soaptype/soaptype.wsdl +61 -0
  627. data/test/wsdl/soaptype/test_soaptype.rb +178 -0
  628. data/test/wsdl/test_emptycomplextype.rb +21 -0
  629. data/test/wsdl/test_fault.rb +50 -0
  630. data/test/wsdl/test_multiplefault.rb +41 -0
  631. data/test/xsd/codegen/test_classdef.rb +244 -0
  632. data/test/xsd/noencoding.xml +4 -0
  633. data/test/xsd/test_noencoding.rb +32 -0
  634. data/test/xsd/test_ns.rb +41 -0
  635. data/test/xsd/test_xmlschemaparser.rb +22 -0
  636. data/test/xsd/test_xsd.rb +1638 -0
  637. data/test/xsd/xmllang.xml +43 -0
  638. data/test/xsd/xmlschema.xml +12 -0
  639. data/test/xsd/xsd2ruby/expected_mysample.rb +65 -0
  640. data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +11 -0
  641. data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +51 -0
  642. data/test/xsd/xsd2ruby/section.xsd +49 -0
  643. data/test/xsd/xsd2ruby/test_xsd2ruby.rb +90 -0
  644. metadata +689 -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,65 @@
1
+ require 'xsd/qname'
2
+
3
+ module XSD; module XSD2Ruby
4
+
5
+
6
+ # {urn:mysample}question
7
+ # something - SOAP::SOAPString
8
+ class Question
9
+ attr_accessor :something
10
+
11
+ def initialize(something = nil)
12
+ @something = something
13
+ end
14
+ end
15
+
16
+ # {urn:mysample}section
17
+ # sectionID - SOAP::SOAPInt
18
+ # name - SOAP::SOAPString
19
+ # description - SOAP::SOAPString
20
+ # index - SOAP::SOAPInt
21
+ # firstQuestion - XSD::XSD2Ruby::Question
22
+ class Section
23
+ attr_accessor :sectionID
24
+ attr_accessor :name
25
+ attr_accessor :description
26
+ attr_accessor :index
27
+ attr_accessor :firstQuestion
28
+
29
+ def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
30
+ @sectionID = sectionID
31
+ @name = name
32
+ @description = description
33
+ @index = index
34
+ @firstQuestion = firstQuestion
35
+ end
36
+ end
37
+
38
+ # {urn:mysample}sectionArray
39
+ class SectionArray < ::Array
40
+ end
41
+
42
+ # {urn:mysample}sectionElement
43
+ # sectionID - SOAP::SOAPInt
44
+ # name - SOAP::SOAPString
45
+ # description - SOAP::SOAPString
46
+ # index - SOAP::SOAPInt
47
+ # firstQuestion - XSD::XSD2Ruby::Question
48
+ class SectionElement
49
+ attr_accessor :sectionID
50
+ attr_accessor :name
51
+ attr_accessor :description
52
+ attr_accessor :index
53
+ attr_accessor :firstQuestion
54
+
55
+ def initialize(sectionID = nil, name = nil, description = nil, index = nil, firstQuestion = nil)
56
+ @sectionID = sectionID
57
+ @name = name
58
+ @description = description
59
+ @index = index
60
+ @firstQuestion = firstQuestion
61
+ end
62
+ end
63
+
64
+
65
+ end; end
@@ -0,0 +1,11 @@
1
+ require 'mysample_mapping_registry.rb'
2
+
3
+ module XSD; module XSD2Ruby
4
+
5
+ class MysampleMapper < XSD::Mapping::Mapper
6
+ def initialize
7
+ super(MysampleMappingRegistry::Registry)
8
+ end
9
+ end
10
+
11
+ end; end
@@ -0,0 +1,51 @@
1
+ require 'xsd/mapping'
2
+ require 'mysample.rb'
3
+
4
+ module XSD; module XSD2Ruby
5
+
6
+ module MysampleMappingRegistry
7
+ NsMysample = "urn:mysample"
8
+ Registry = ::SOAP::Mapping::LiteralRegistry.new
9
+
10
+ Registry.register(
11
+ :class => XSD::XSD2Ruby::Question,
12
+ :schema_type => XSD::QName.new(NsMysample, "question"),
13
+ :schema_element => [
14
+ ["something", ["SOAP::SOAPString", XSD::QName.new(nil, "something")]]
15
+ ]
16
+ )
17
+
18
+ Registry.register(
19
+ :class => XSD::XSD2Ruby::Section,
20
+ :schema_type => XSD::QName.new(NsMysample, "section"),
21
+ :schema_element => [
22
+ ["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
23
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
24
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
25
+ ["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
26
+ ["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
27
+ ]
28
+ )
29
+
30
+ Registry.register(
31
+ :class => XSD::XSD2Ruby::SectionArray,
32
+ :schema_type => XSD::QName.new(NsMysample, "sectionArray"),
33
+ :schema_element => [
34
+ ["element", ["XSD::XSD2Ruby::Section[]", XSD::QName.new(nil, "element")], [1, nil]]
35
+ ]
36
+ )
37
+
38
+ Registry.register(
39
+ :class => XSD::XSD2Ruby::SectionElement,
40
+ :schema_name => XSD::QName.new(NsMysample, "sectionElement"),
41
+ :schema_element => [
42
+ ["sectionID", ["SOAP::SOAPInt", XSD::QName.new(nil, "sectionID")]],
43
+ ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
44
+ ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
45
+ ["index", ["SOAP::SOAPInt", XSD::QName.new(nil, "index")]],
46
+ ["firstQuestion", ["XSD::XSD2Ruby::Question", XSD::QName.new(nil, "firstQuestion")]]
47
+ ]
48
+ )
49
+ end
50
+
51
+ 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,90 @@
1
+ require 'test/unit'
2
+ require 'wsdl/xmlSchema/xsd2ruby'
3
+ require File.join(File.dirname(File.expand_path(__FILE__)), '..', '..', 'testutil.rb')
4
+
5
+
6
+ module XSD; module XSD2Ruby
7
+
8
+
9
+ class TestXSD2Ruby < Test::Unit::TestCase
10
+ DIR = File.dirname(File.expand_path(__FILE__))
11
+
12
+ def setup
13
+ Dir.chdir(DIR) do
14
+ gen = WSDL::XMLSchema::XSD2Ruby.new
15
+ gen.location = pathname("section.xsd")
16
+ gen.basedir = DIR
17
+ gen.logger.level = Logger::FATAL
18
+ gen.opt['module_path'] = "XSD::XSD2Ruby"
19
+ gen.opt['classdef'] = nil
20
+ gen.opt['mapping_registry'] = nil
21
+ gen.opt['mapper'] = nil
22
+ gen.opt['force'] = true
23
+ gen.run
24
+ TestUtil.require(DIR, 'mysample.rb', 'mysample_mapping_registry.rb', 'mysample_mapper.rb')
25
+ end
26
+ end
27
+
28
+ def teardown
29
+ unless $DEBUG
30
+ File.unlink(pathname("mysample.rb"))
31
+ File.unlink(pathname("mysample_mapping_registry.rb"))
32
+ File.unlink(pathname("mysample_mapper.rb"))
33
+ end
34
+ # leave generated file for debug.
35
+ end
36
+
37
+ def test_generate
38
+ compare("expected_mysample.rb", "mysample.rb")
39
+ compare("expected_mysample_mapping_registry.rb", "mysample_mapping_registry.rb")
40
+ compare("expected_mysample_mapper.rb", "mysample_mapper.rb")
41
+ end
42
+
43
+ def test_mapper
44
+ mapper = XSD::XSD2Ruby::MysampleMapper.new
45
+ # complexType
46
+ arg = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
47
+ obj = mapper.xml2obj(mapper.obj2xml(arg))
48
+ assert_section_equal(arg, obj)
49
+ # element
50
+ arg = XSD::XSD2Ruby::SectionElement.new(10001, 'name', 'description', 1, Question.new("hello world"))
51
+ obj = mapper.xml2obj(mapper.obj2xml(arg))
52
+ assert_section_equal(arg, obj)
53
+ # array
54
+ ele = XSD::XSD2Ruby::Section.new(10001, 'name', 'description', 1, Question.new("hello world"))
55
+ arg = XSD::XSD2Ruby::SectionArray[ele, ele, ele]
56
+ obj = mapper.xml2obj(mapper.obj2xml(arg))
57
+ assert_equal(arg.class, obj.class)
58
+ assert_equal(arg.size, obj.size)
59
+ 0.upto(arg.size - 1) do |idx|
60
+ assert_section_equal(arg[idx], obj[idx])
61
+ end
62
+ end
63
+
64
+ private
65
+
66
+ def assert_section_equal(arg, obj)
67
+ assert_equal(arg.class, obj.class)
68
+ assert_equal(arg.sectionID, obj.sectionID)
69
+ assert_equal(arg.name, obj.name)
70
+ assert_equal(arg.description, obj.description)
71
+ assert_equal(arg.index, obj.index)
72
+ assert_equal(arg.firstQuestion.class, obj.firstQuestion.class)
73
+ assert_equal(arg.firstQuestion.something, obj.firstQuestion.something)
74
+ end
75
+
76
+ def pathname(filename)
77
+ File.join(DIR, filename)
78
+ end
79
+
80
+ def compare(expected, actual)
81
+ TestUtil.filecompare(pathname(expected), pathname(actual))
82
+ end
83
+
84
+ def loadfile(file)
85
+ File.open(pathname(file)) { |f| f.read }
86
+ end
87
+ end
88
+
89
+
90
+ end; end
metadata ADDED
@@ -0,0 +1,689 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: soap4r-spox
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.6.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Chris Roberts
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-30 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: Updated soap4r for 1.9
15
+ email: chrisroberts.code@gmail.com
16
+ executables:
17
+ - wsdl2ruby.rb
18
+ - xsd2ruby.rb
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - RELEASE_en.html
23
+ - lib/xsd/datatypes.rb
24
+ - lib/xsd/iconvcharset.rb
25
+ - lib/xsd/xmlparser.rb.orig
26
+ - lib/xsd/xmlparser.rb
27
+ - lib/xsd/datatypes1999.rb
28
+ - lib/xsd/charset.rb
29
+ - lib/xsd/ns.rb
30
+ - lib/xsd/qname.rb
31
+ - lib/xsd/xmlparser/xmlscanner.rb
32
+ - lib/xsd/xmlparser/xmlparser.rb
33
+ - lib/xsd/xmlparser/parser.rb
34
+ - lib/xsd/xmlparser/rexmlparser.rb
35
+ - lib/xsd/xmlparser/libxmlparser.rb
36
+ - lib/xsd/codegen/methoddef.rb
37
+ - lib/xsd/codegen/classdef.rb
38
+ - lib/xsd/codegen/commentdef.rb
39
+ - lib/xsd/codegen/moduledef.rb
40
+ - lib/xsd/codegen/gensupport.rb
41
+ - lib/xsd/codegen.rb
42
+ - lib/xsd/mapping.rb
43
+ - lib/xsd/namedelements.rb
44
+ - lib/soap/attrproxy.rb
45
+ - lib/soap/processor.rb
46
+ - lib/soap/mimemessage.rb
47
+ - lib/soap/proxy.rb
48
+ - lib/soap/attachment.rb
49
+ - lib/soap/baseData.rb
50
+ - lib/soap/nestedexception.rb
51
+ - lib/soap/marshal.rb
52
+ - lib/soap/ns.rb
53
+ - lib/soap/parser.rb
54
+ - lib/soap/encodingstyle/soapHandler.rb
55
+ - lib/soap/encodingstyle/literalHandler.rb
56
+ - lib/soap/encodingstyle/aspDotNetHandler.rb
57
+ - lib/soap/encodingstyle/handler.rb
58
+ - lib/soap/filter/streamhandler.rb
59
+ - lib/soap/filter/filterchain.rb
60
+ - lib/soap/filter/handler.rb
61
+ - lib/soap/filter.rb
62
+ - lib/soap/element.rb
63
+ - lib/soap/streamHandler.rb
64
+ - lib/soap/httpconfigloader.rb
65
+ - lib/soap/netHttpClient.rb
66
+ - lib/soap/header/handlerset.rb
67
+ - lib/soap/header/simplehandler.rb
68
+ - lib/soap/header/mappinghandler.rb
69
+ - lib/soap/header/handler.rb
70
+ - lib/soap/ruby18ext.rb
71
+ - lib/soap/mapping/wsdlliteralregistry.rb
72
+ - lib/soap/mapping/wsdlencodedregistry.rb
73
+ - lib/soap/mapping/registry.rb
74
+ - lib/soap/mapping/encodedregistry.rb
75
+ - lib/soap/mapping/factory.rb
76
+ - lib/soap/mapping/rubytypeFactory.rb
77
+ - lib/soap/mapping/literalregistry.rb
78
+ - lib/soap/mapping/typeMap.rb
79
+ - lib/soap/mapping/schemadefinition.rb
80
+ - lib/soap/mapping/mapping.rb
81
+ - lib/soap/soap.rb
82
+ - lib/soap/property.rb
83
+ - lib/soap/rpc/httpserver.rb
84
+ - lib/soap/rpc/proxy.rb
85
+ - lib/soap/rpc/soaplet.rb
86
+ - lib/soap/rpc/rpc.rb
87
+ - lib/soap/rpc/standaloneServer.rb
88
+ - lib/soap/rpc/element.rb
89
+ - lib/soap/rpc/router.rb
90
+ - lib/soap/rpc/element.rb.orig
91
+ - lib/soap/rpc/cgistub.rb
92
+ - lib/soap/rpc/methodDef.rb
93
+ - lib/soap/rpc/driver.rb
94
+ - lib/soap/wsdlDriver.rb
95
+ - lib/soap/mapping.rb
96
+ - lib/soap/generator.rb
97
+ - lib/wsdl/data.rb
98
+ - lib/wsdl/documentation.rb
99
+ - lib/wsdl/operation.rb
100
+ - lib/wsdl/wsdl.rb
101
+ - lib/wsdl/parser.rb
102
+ - lib/wsdl/importer.rb
103
+ - lib/wsdl/binding.rb
104
+ - lib/wsdl/service.rb
105
+ - lib/wsdl/import.rb
106
+ - lib/wsdl/definitions.rb
107
+ - lib/wsdl/info.rb
108
+ - lib/wsdl/soap/wsdl2ruby.rb
109
+ - lib/wsdl/soap/data.rb
110
+ - lib/wsdl/soap/mappingRegistryCreatorSupport.rb
111
+ - lib/wsdl/soap/standaloneServerStubCreator.rb
112
+ - lib/wsdl/soap/operation.rb
113
+ - lib/wsdl/soap/literalMappingRegistryCreator.rb
114
+ - lib/wsdl/soap/body.rb
115
+ - lib/wsdl/soap/mappingRegistryCreator.rb
116
+ - lib/wsdl/soap/methodDefCreator.rb
117
+ - lib/wsdl/soap/servletStubCreator.rb
118
+ - lib/wsdl/soap/servantSkeltonCreator.rb
119
+ - lib/wsdl/soap/address.rb
120
+ - lib/wsdl/soap/cgiStubCreator.rb
121
+ - lib/wsdl/soap/header.rb
122
+ - lib/wsdl/soap/classDefCreator.rb
123
+ - lib/wsdl/soap/element.rb
124
+ - lib/wsdl/soap/complexType.rb
125
+ - lib/wsdl/soap/binding.rb
126
+ - lib/wsdl/soap/fault.rb
127
+ - lib/wsdl/soap/definitions.rb
128
+ - lib/wsdl/soap/classNameCreator.rb
129
+ - lib/wsdl/soap/encodedMappingRegistryCreator.rb
130
+ - lib/wsdl/soap/headerfault.rb
131
+ - lib/wsdl/soap/classDefCreatorSupport.rb
132
+ - lib/wsdl/soap/clientSkeltonCreator.rb
133
+ - lib/wsdl/soap/driverCreator.rb
134
+ - lib/wsdl/types.rb
135
+ - lib/wsdl/param.rb
136
+ - lib/wsdl/message.rb
137
+ - lib/wsdl/portType.rb
138
+ - lib/wsdl/part.rb
139
+ - lib/wsdl/port.rb
140
+ - lib/wsdl/xmlSchema/content.rb
141
+ - lib/wsdl/xmlSchema/data.rb
142
+ - lib/wsdl/xmlSchema/any.rb
143
+ - lib/wsdl/xmlSchema/attributeGroup.rb
144
+ - lib/wsdl/xmlSchema/all.rb
145
+ - lib/wsdl/xmlSchema/simpleRestriction.rb
146
+ - lib/wsdl/xmlSchema/simpleExtension.rb
147
+ - lib/wsdl/xmlSchema/schema.rb
148
+ - lib/wsdl/xmlSchema/attribute.rb
149
+ - lib/wsdl/xmlSchema/ref.rb
150
+ - lib/wsdl/xmlSchema/simpleContent.rb
151
+ - lib/wsdl/xmlSchema/parser.rb
152
+ - lib/wsdl/xmlSchema/importer.rb
153
+ - lib/wsdl/xmlSchema/enumeration.rb
154
+ - lib/wsdl/xmlSchema/annotation.rb
155
+ - lib/wsdl/xmlSchema/importHandler.rb
156
+ - lib/wsdl/xmlSchema/unique.rb
157
+ - lib/wsdl/xmlSchema/element.rb
158
+ - lib/wsdl/xmlSchema/maxexclusive.rb
159
+ - lib/wsdl/xmlSchema/list.rb
160
+ - lib/wsdl/xmlSchema/pattern.rb
161
+ - lib/wsdl/xmlSchema/maxlength.rb
162
+ - lib/wsdl/xmlSchema/complexType.rb
163
+ - lib/wsdl/xmlSchema/sequence.rb
164
+ - lib/wsdl/xmlSchema/mininclusive.rb
165
+ - lib/wsdl/xmlSchema/import.rb
166
+ - lib/wsdl/xmlSchema/choice.rb
167
+ - lib/wsdl/xmlSchema/anyAttribute.rb
168
+ - lib/wsdl/xmlSchema/minlength.rb
169
+ - lib/wsdl/xmlSchema/maxinclusive.rb
170
+ - lib/wsdl/xmlSchema/union.rb
171
+ - lib/wsdl/xmlSchema/complexContent.rb
172
+ - lib/wsdl/xmlSchema/totaldigits.rb
173
+ - lib/wsdl/xmlSchema/minexclusive.rb
174
+ - lib/wsdl/xmlSchema/complexExtension.rb
175
+ - lib/wsdl/xmlSchema/fractiondigits.rb
176
+ - lib/wsdl/xmlSchema/length.rb
177
+ - lib/wsdl/xmlSchema/group.rb
178
+ - lib/wsdl/xmlSchema/include.rb
179
+ - lib/wsdl/xmlSchema/simpleType.rb
180
+ - lib/wsdl/xmlSchema/whitespace.rb
181
+ - lib/wsdl/xmlSchema/xsd2ruby.rb
182
+ - lib/wsdl/xmlSchema/complexRestriction.rb
183
+ - lib/wsdl/operationBinding.rb
184
+ - test/interopR4/client.rb
185
+ - test/results
186
+ - test/testutil.rb
187
+ - test/runner.rb
188
+ - test/xsd/test_xmlschemaparser.rb
189
+ - test/xsd/noencoding.xml
190
+ - test/xsd/test_noencoding.rb
191
+ - test/xsd/test_xsd.rb
192
+ - test/xsd/codegen/test_classdef.rb
193
+ - test/xsd/xsd2ruby/expected_mysample.rb
194
+ - test/xsd/xsd2ruby/section.xsd
195
+ - test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb
196
+ - test/xsd/xsd2ruby/expected_mysample_mapper.rb
197
+ - test/xsd/xsd2ruby/test_xsd2ruby.rb
198
+ - test/xsd/test_ns.rb
199
+ - test/xsd/xmlschema.xml
200
+ - test/xsd/xmllang.xml
201
+ - test/sm11/server.rb
202
+ - test/sm11/client.rb
203
+ - test/sm11/classDef.rb
204
+ - test/sm11/driver.rb
205
+ - test/sm11/servant.rb
206
+ - test/soap/htpasswd
207
+ - test/soap/test_envelopenamespace.rb
208
+ - test/soap/calc/server2.rb
209
+ - test/soap/calc/server.cgi
210
+ - test/soap/calc/server.rb
211
+ - test/soap/calc/test_calc.rb
212
+ - test/soap/calc/test_calc2.rb
213
+ - test/soap/calc/test_calc_cgi.rb
214
+ - test/soap/calc/calc2.rb
215
+ - test/soap/calc/calc.rb
216
+ - test/soap/wsdlDriver/test_simpletype.rb
217
+ - test/soap/wsdlDriver/calc.wsdl
218
+ - test/soap/wsdlDriver/test_calc.rb
219
+ - test/soap/wsdlDriver/README.txt
220
+ - test/soap/wsdlDriver/simpletype.wsdl
221
+ - test/soap/wsdlDriver/echo_version.rb
222
+ - test/soap/wsdlDriver/document.wsdl
223
+ - test/soap/wsdlDriver/test_document.rb
224
+ - test/soap/ssl/ca.cert
225
+ - test/soap/ssl/subca.cert
226
+ - test/soap/ssl/test_ssl.rb
227
+ - test/soap/ssl/client.key
228
+ - test/soap/ssl/sslsvr.rb
229
+ - test/soap/ssl/server.key
230
+ - test/soap/ssl/README
231
+ - test/soap/ssl/server.cert
232
+ - test/soap/ssl/client.cert
233
+ - test/soap/swa/test_file.rb
234
+ - test/soap/struct/test_struct.rb
235
+ - test/soap/literalArrayMapping/test_definedarray.rb
236
+ - test/soap/literalArrayMapping/amazonresponse.xml
237
+ - test/soap/literalArrayMapping/amazonEc.rb
238
+ - test/soap/literalArrayMapping/amazonEcDriver.rb
239
+ - test/soap/test_no_indent.rb
240
+ - test/soap/test_basetype.rb
241
+ - test/soap/fault/test_customfault.rb
242
+ - test/soap/fault/test_soaparray.rb
243
+ - test/soap/fault/test_fault.rb
244
+ - test/soap/case/test_mapping.rb
245
+ - test/soap/test_soapelement.rb
246
+ - test/soap/marshal/test_marshal.rb
247
+ - test/soap/marshal/test_struct.rb
248
+ - test/soap/marshal/test_digraph.rb
249
+ - test/soap/marshal/marshaltestlib.rb
250
+ - test/soap/filter/test_filter.rb
251
+ - test/soap/asp.net/test_aspdotnet.rb
252
+ - test/soap/asp.net/hello.wsdl
253
+ - test/soap/test_styleuse.rb
254
+ - test/soap/test_empty.rb
255
+ - test/soap/test_streamhandler.rb
256
+ - test/soap/test_nil.rb
257
+ - test/soap/test_nestedexception.rb
258
+ - test/soap/test_httpconfigloader.rb
259
+ - test/soap/test_generator.rb
260
+ - test/soap/styleuse/server.rb
261
+ - test/soap/styleuse/client.rb
262
+ - test/soap/helloworld/hw_s.rb
263
+ - test/soap/helloworld/test_helloworld.rb
264
+ - test/soap/auth/htpasswd
265
+ - test/soap/auth/test_digest.rb
266
+ - test/soap/auth/htdigest
267
+ - test/soap/auth/test_basic.rb
268
+ - test/soap/header/test_simplehandler.rb
269
+ - test/soap/header/server.cgi
270
+ - test/soap/header/session.pstoredb
271
+ - test/soap/header/test_authheader.rb
272
+ - test/soap/header/test_authheader_cgi.rb
273
+ - test/soap/test_mapping.rb
274
+ - test/soap/test_response_as_xml.rb
275
+ - test/soap/test_extraattr.rb
276
+ - test/soap/test_custommap.rb
277
+ - test/soap/test_cookie.rb
278
+ - test/soap/test_property.rb
279
+ - test/soap/test_custom_ns.rb
280
+ - test/wsdl/abstract/test_abstract.rb
281
+ - test/wsdl/abstract/abstract.wsdl
282
+ - test/wsdl/multiplefault.wsdl
283
+ - test/wsdl/test_emptycomplextype.rb
284
+ - test/wsdl/list/test_list.rb
285
+ - test/wsdl/list/list.wsdl
286
+ - test/wsdl/fault/fault.wsdl
287
+ - test/wsdl/fault/multifault.wsdl
288
+ - test/wsdl/fault/test_fault.rb
289
+ - test/wsdl/fault/test_multifault.rb
290
+ - test/wsdl/raa/raa.wsdl
291
+ - test/wsdl/raa/test_raa.rb
292
+ - test/wsdl/raa/RAAService.rb
293
+ - test/wsdl/raa/expectedDriver.rb
294
+ - test/wsdl/raa/expectedMappingRegistry.rb
295
+ - test/wsdl/raa/README.txt
296
+ - test/wsdl/raa/expectedClassDef.rb
297
+ - test/wsdl/document/test_number.rb
298
+ - test/wsdl/document/test_rpc.rb
299
+ - test/wsdl/document/ping_nosoapaction.wsdl
300
+ - test/wsdl/document/number.wsdl
301
+ - test/wsdl/document/document.wsdl
302
+ - test/wsdl/document/test_nosoapaction.rb
303
+ - test/wsdl/document/array/test_array.rb
304
+ - test/wsdl/document/array/double.wsdl
305
+ - test/wsdl/marshal/test_wsdlmarshal.rb
306
+ - test/wsdl/marshal/person_org.rb
307
+ - test/wsdl/marshal/person.wsdl
308
+ - test/wsdl/marshal/Person.rb
309
+ - test/wsdl/complexcontent/test_echo.rb
310
+ - test/wsdl/complexcontent/complexContent.wsdl
311
+ - test/wsdl/overload/overload.wsdl
312
+ - test/wsdl/overload/expectedDriver.rb
313
+ - test/wsdl/overload/expectedClient.rb
314
+ - test/wsdl/overload/test_overload.rb
315
+ - test/wsdl/overload/expectedServant.rb
316
+ - test/wsdl/soaptype/test_soaptype.rb
317
+ - test/wsdl/soaptype/soaptype.wsdl
318
+ - test/wsdl/simpletype/test_simpletype.rb
319
+ - test/wsdl/simpletype/simpletype.wsdl
320
+ - test/wsdl/simpletype/rpc/echo_version_service.rb
321
+ - test/wsdl/simpletype/rpc/test_rpc.rb
322
+ - test/wsdl/simpletype/rpc/expectedDriver.rb
323
+ - test/wsdl/simpletype/rpc/expectedClient.rb
324
+ - test/wsdl/simpletype/rpc/expectedService.rb
325
+ - test/wsdl/simpletype/rpc/expectedMappingRegistry.rb
326
+ - test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb
327
+ - test/wsdl/simpletype/rpc/expectedEchoVersion.rb
328
+ - test/wsdl/simpletype/rpc/echo_version.rb
329
+ - test/wsdl/simpletype/rpc/expectedServant.rb
330
+ - test/wsdl/simpletype/rpc/echo_versionDriver.rb
331
+ - test/wsdl/simpletype/rpc/rpc.wsdl
332
+ - test/wsdl/simpletype/rpc/echo_version_serviceClient.rb
333
+ - test/wsdl/simpletype/rpc/echo_versionServant.rb
334
+ - test/wsdl/datetime/test_datetime.rb
335
+ - test/wsdl/datetime/DatetimeService.rb
336
+ - test/wsdl/datetime/datetime.rb
337
+ - test/wsdl/datetime/datetimeServant.rb
338
+ - test/wsdl/datetime/datetime.wsdl
339
+ - test/wsdl/soap/wsdl2ruby/echo_version_service.rb
340
+ - test/wsdl/soap/wsdl2ruby/echo_version_service.cgi
341
+ - test/wsdl/soap/wsdl2ruby/expectedDriver.rb
342
+ - test/wsdl/soap/wsdl2ruby/expectedClient.rb
343
+ - test/wsdl/soap/wsdl2ruby/expectedService.rb
344
+ - test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb
345
+ - test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb
346
+ - test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb
347
+ - test/wsdl/soap/wsdl2ruby/echo_version.rb
348
+ - test/wsdl/soap/wsdl2ruby/expectedServant.rb
349
+ - test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl
350
+ - test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb
351
+ - test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb
352
+ - test/wsdl/soap/wsdl2ruby/expectedClassdef.rb
353
+ - test/wsdl/soap/wsdl2ruby/rpc.wsdl
354
+ - test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb
355
+ - test/wsdl/soap/wsdl2ruby/section/section.xsd
356
+ - test/wsdl/soap/wsdl2ruby/section/test_section.rb
357
+ - test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb
358
+ - test/wsdl/soap/wsdl2ruby/expectedService.cgi
359
+ - test/wsdl/soap/wsdl2ruby/echo_versionServant.rb
360
+ - test/wsdl/soap/test_soapbodyparts.rb
361
+ - test/wsdl/soap/soapbodyparts.wsdl
362
+ - test/wsdl/test_fault.rb
363
+ - test/wsdl/choice/choice.wsdl
364
+ - test/wsdl/choice/test_choice.rb
365
+ - test/wsdl/group/test_rpc.rb
366
+ - test/wsdl/group/expectedDriver.rb
367
+ - test/wsdl/group/expectedMappingRegistry.rb
368
+ - test/wsdl/group/expectedClassdef.rb
369
+ - test/wsdl/group/group.wsdl
370
+ - test/wsdl/emptycomplextype.wsdl
371
+ - test/wsdl/anonymous/expectedDriver.rb
372
+ - test/wsdl/anonymous/expectedMappingRegistry.rb
373
+ - test/wsdl/anonymous/test_anonymous.rb
374
+ - test/wsdl/anonymous/lp.wsdl
375
+ - test/wsdl/anonymous/expectedClassDef.rb
376
+ - test/wsdl/oneway/oneway.wsdl
377
+ - test/wsdl/oneway/test_oneway.rb
378
+ - test/wsdl/axisArray/axisArray.wsdl
379
+ - test/wsdl/axisArray/test_axisarray.rb
380
+ - test/wsdl/map/map.wsdl
381
+ - test/wsdl/map/test_map.rb
382
+ - test/wsdl/map/map.xml
383
+ - test/wsdl/simplecontent/test_simplecontent.rb
384
+ - test/wsdl/simplecontent/simplecontent.wsdl
385
+ - test/wsdl/any/test_any.rb
386
+ - test/wsdl/any/expectedDriver.rb
387
+ - test/wsdl/any/expectedService.rb
388
+ - test/wsdl/any/expectedMappingRegistry.rb
389
+ - test/wsdl/any/expectedEcho.rb
390
+ - test/wsdl/any/any.wsdl
391
+ - test/wsdl/qualified/test_qualified.rb
392
+ - test/wsdl/qualified/np.wsdl
393
+ - test/wsdl/qualified/lp.wsdl
394
+ - test/wsdl/qualified/test_unqualified.rb
395
+ - test/wsdl/qualified/lp.xsd
396
+ - test/wsdl/test_multiplefault.rb
397
+ - test/wsdl/rpc/test_rpc_lit.rb
398
+ - test/wsdl/rpc/test_rpc.rb
399
+ - test/wsdl/rpc/rpc.wsdl
400
+ - test/wsdl/rpc/test-rpc-lit.wsdl
401
+ - test/wsdl/ref/test_ref.rb
402
+ - test/wsdl/ref/expectedDriver.rb
403
+ - test/wsdl/ref/expectedProduct.rb
404
+ - test/wsdl/ref/product.wsdl
405
+ - test/16runner.rb
406
+ - test/interopR2/clientEasySoap.rb
407
+ - test/interopR2/server.cgi
408
+ - test/interopR2/client4S4C2.rb
409
+ - test/interopR2/clientPEAR.rb
410
+ - test/interopR2/clientSQLData.rb
411
+ - test/interopR2/clientNuWave.rb
412
+ - test/interopR2/clientOracle.rb
413
+ - test/interopR2/server.rb
414
+ - test/interopR2/clientHP.rb
415
+ - test/interopR2/clientMSSOAPToolkit2.0.rb
416
+ - test/interopR2/clientSpray2001.rb
417
+ - test/interopR2/iSimonReg.rb
418
+ - test/interopR2/clientPhalanx.rb
419
+ - test/interopR2/clienteSOAP.rb
420
+ - test/interopR2/client.rb
421
+ - test/interopR2/simonReg.rb
422
+ - test/interopR2/clientGLUE.rb
423
+ - test/interopR2/clientMSSOAPToolkit3.0.rb
424
+ - test/interopR2/clientgSOAP.rb
425
+ - test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
426
+ - test/interopR2/client.NetRemoting.rb
427
+ - test/interopR2/clientApacheSOAP.rb
428
+ - test/interopR2/README.txt
429
+ - test/interopR2/clientSun.rb
430
+ - test/interopR2/clientSOAP4R.rb
431
+ - test/interopR2/clientCapeConnect.rb
432
+ - test/interopR2/clientXMLBus.rb
433
+ - test/interopR2/interopService.rb
434
+ - test/interopR2/clientXSOAP.rb
435
+ - test/interopR2/SOAPBuildersInterop_R2.wsdl
436
+ - test/interopR2/clientFrontier.rb
437
+ - test/interopR2/test.sh
438
+ - test/interopR2/clientJSOAP.rb
439
+ - test/interopR2/clientASP.NET.rb
440
+ - test/interopR2/clientWingfoot.rb
441
+ - test/interopR2/clientkSOAP.rb
442
+ - test/interopR2/clientZSI.rb
443
+ - test/interopR2/base.rb
444
+ - test/interopR2/rwikiInteropService.rb
445
+ - test/interopR2/clientXMLRPC-EPI.rb
446
+ - test/interopR2/clientOpenLink.rb
447
+ - test/interopR2/client4S4C.rb
448
+ - test/interopR2/clientApacheAxis.rb
449
+ - test/interopR2/clientNuSOAP.rb
450
+ - test/interopR2/clientWASPC.rb
451
+ - test/interopR2/clientWASP.rb
452
+ - test/interopR2/clientSIMACE.rb
453
+ - test/interopR2/clientWebMethods.rb
454
+ - test/interopR2/clientVWOpentalkSoap.rb
455
+ - test/interopR2/interopResultBase.rb
456
+ - test/interopR2/clientSOAP__Lite.rb
457
+ - test/interopR2/clientDelphi.rb
458
+ - test/interopR2/clientSilverStream.rb
459
+ - test/interopR2/clientBase.rb
460
+ - test/interopR2/clientJAX-RPC.rb
461
+ - test/interopR2/clientWhiteMesa.rb
462
+ - test/interopR2/clientBEAWebLogic.rb
463
+ - test/interopR2/clientKafkaXSLT.rb
464
+ - setup.rb
465
+ - sample/showcase/soap/netDicV06/netDicV06.rb
466
+ - sample/showcase/soap/netDicV06/INetDicV06.rb
467
+ - sample/showcase/soap/raa/SOAP__Lite.pl
468
+ - sample/showcase/soap/raa/pocketSOAP.js
469
+ - sample/showcase/soap/hippo5tq/hippo5tq2.rb
470
+ - sample/showcase/soap/hippo5tq/hippo5tq.rb
471
+ - sample/showcase/soap/hippo5tq/hippoClient.rb
472
+ - sample/showcase/soap/soapbox/SoapBoxWebService.wsdl
473
+ - sample/showcase/soap/soapbox/ExceptionDataSet.xml
474
+ - sample/showcase/soap/soapbox/MessageDataSet.xml
475
+ - sample/showcase/soap/soapbox/ContactsDataSet.xml
476
+ - sample/showcase/soap/soapbox/wsdlDriver.rb
477
+ - sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl
478
+ - sample/showcase/soap/rwiki/rwikiClient.rb
479
+ - sample/showcase/soap/rwiki/rwikiServer.cgi
480
+ - sample/showcase/soap/icd/icd.rb
481
+ - sample/showcase/soap/icd/IICD.rb
482
+ - sample/showcase/soap/mssoap/stockQuoteService.wsdl
483
+ - sample/showcase/soap/mssoap/stockQuoteService.cgi
484
+ - sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb
485
+ - sample/showcase/soap/mssoap/README.txt
486
+ - sample/showcase/soap/mssoap/client.vba
487
+ - sample/showcase/soap/mssoap/stockQuoteService.rb
488
+ - sample/showcase/soap/mssoap/stockQuoteServiceClient.rb
489
+ - sample/showcase/soap/mssoap/stockQuoteServiceClient.xls
490
+ - sample/showcase/soap/raa2.4/raa.wsdl
491
+ - sample/showcase/soap/raa2.4/raaDriver.rb
492
+ - sample/showcase/soap/raa2.4/raa.rb
493
+ - sample/showcase/soap/raa2.4/raaServiceClient.rb
494
+ - sample/showcase/soap/raa2.4/sample.rb
495
+ - sample/showcase/wsdl/noaa/ndfdXMLClient.rb
496
+ - sample/showcase/wsdl/noaa/default.rb
497
+ - sample/showcase/wsdl/noaa/client.rb
498
+ - sample/showcase/wsdl/noaa/README.txt
499
+ - sample/showcase/wsdl/noaa/defaultMappingRegistry.rb
500
+ - sample/showcase/wsdl/noaa/defaultDriver.rb
501
+ - sample/showcase/wsdl/rnn/rnn-hash.wsdl
502
+ - sample/showcase/wsdl/rnn/client.rb
503
+ - sample/showcase/wsdl/rnn/post.rb
504
+ - sample/showcase/wsdl/rnn/submit.rb
505
+ - sample/showcase/wsdl/rnn/rnn.wsdl
506
+ - sample/showcase/wsdl/googleAdwords/client.rb
507
+ - sample/showcase/wsdl/googleAdwords/soap/property
508
+ - sample/showcase/wsdl/googleAdwords/CampaignService.wsdl
509
+ - sample/showcase/wsdl/googleAdwords/ca.pem
510
+ - sample/showcase/wsdl/eBaySvc/sampleclient.rb
511
+ - sample/showcase/wsdl/salesforce/default.rb
512
+ - sample/showcase/wsdl/salesforce/client.rb
513
+ - sample/showcase/wsdl/salesforce/defaultDriver.rb
514
+ - sample/showcase/wsdl/salesforce/SforceServiceClient.rb
515
+ - sample/showcase/wsdl/salesforce/soap/property
516
+ - sample/showcase/wsdl/salesforce/ca.pem
517
+ - sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb
518
+ - sample/showcase/wsdl/googleSearch/GoogleSearch.rb
519
+ - sample/showcase/wsdl/googleSearch/sjissearch.sh
520
+ - sample/showcase/wsdl/googleSearch/sampleClient.rb
521
+ - sample/showcase/wsdl/googleSearch/samplehttpd.conf
522
+ - sample/showcase/wsdl/googleSearch/README
523
+ - sample/showcase/wsdl/googleSearch/httpd.rb
524
+ - sample/showcase/wsdl/googleSearch/wsdlDriver.rb
525
+ - sample/showcase/wsdl/amazon/sampleClient.rb
526
+ - sample/showcase/wsdl/amazon/AmazonSearch.rb
527
+ - sample/showcase/wsdl/amazon/AmazonSearchDriver.rb
528
+ - sample/showcase/wsdl/amazon/wsdlDriver.rb
529
+ - sample/showcase/wsdl/PayPalSvc/client.rb
530
+ - sample/showcase/wsdl/amazonEC/client.rb
531
+ - sample/showcase/wsdl/raa2.4/raa.wsdl
532
+ - sample/showcase/wsdl/raa2.4/raa.rb
533
+ - sample/showcase/wsdl/raa2.4/wsdlDriver.rb
534
+ - sample/marshal/customfactory.rb
535
+ - sample/marshal/digraph.rb
536
+ - sample/marshal/enum/enum.xsd
537
+ - sample/marshal/enum/marshal.rb
538
+ - sample/marshal/enum/enumsample_mapping_registry.rb
539
+ - sample/marshal/enum/README.txt
540
+ - sample/marshal/enum/enumsample_mapper.rb
541
+ - sample/marshal/enum/enumsample.rb
542
+ - sample/marshal/customregistry.rb
543
+ - sample/soapheader/authheader/server2.rb
544
+ - sample/soapheader/authheader/server.rb
545
+ - sample/soapheader/authheader/client2.rb
546
+ - sample/soapheader/authheader/client.rb
547
+ - sample/soapheader/authheader/authmgr.rb
548
+ - sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb
549
+ - sample/soapheader/soapext_basicauth/client.rb
550
+ - sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl
551
+ - sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb
552
+ - sample/soapheader/soapext_basicauth/mms_MizGIS.rb
553
+ - sample/soapheader/soapext_basicauth/mms_MizGISClient.rb
554
+ - sample/howto/wsdl_fault/fault/AddServer.rb
555
+ - sample/howto/wsdl_fault/fault/fault.wsdl
556
+ - sample/howto/wsdl_fault/fault/AddServiceImpl.rb
557
+ - sample/howto/wsdl_fault/fault/AddClient.rb
558
+ - sample/howto/wsdl_fault/multifault/AddServer.rb
559
+ - sample/howto/wsdl_fault/multifault/fault.wsdl
560
+ - sample/howto/wsdl_fault/multifault/AddServiceImpl.rb
561
+ - sample/howto/wsdl_fault/multifault/AddClient.rb
562
+ - sample/howto/wsdl_fault/README.txt
563
+ - sample/howto/wsdl_hash/server.rb
564
+ - sample/howto/wsdl_hash/client.rb
565
+ - sample/howto/wsdl_hash/hash.wsdl
566
+ - sample/howto/filter/server.rb
567
+ - sample/howto/filter/client.rb
568
+ - sample/howto/as_xml/server.rb
569
+ - sample/howto/as_xml/client.rb
570
+ - sample/howto/base64/server.rb
571
+ - sample/howto/base64/client.rb
572
+ - sample/howto/styleuse/server.rb
573
+ - sample/howto/styleuse/client.rb
574
+ - sample/howto/custom_ns/server.rb
575
+ - sample/howto/custom_ns/client.rb
576
+ - sample/howto/documentliteral/client.rb
577
+ - sample/howto/documentliteral/echo.wsdl
578
+ - sample/howto/documentliteral/README.txt
579
+ - sample/howto/documentliteral/servant.rb
580
+ - sample/howto/scopesample/server.cgi
581
+ - sample/howto/scopesample/server.rb
582
+ - sample/howto/scopesample/client.rb
583
+ - sample/howto/scopesample/samplehttpd.conf
584
+ - sample/howto/scopesample/httpd.rb
585
+ - sample/howto/scopesample/servant.rb
586
+ - sample/payload/basicauth/htpasswd
587
+ - sample/payload/basicauth/server.rb
588
+ - sample/payload/basicauth/client.rb
589
+ - sample/payload/ssl/files/ca.cert
590
+ - sample/payload/ssl/files/sslclient_with_clientauth.properties
591
+ - sample/payload/ssl/files/subca.cert
592
+ - sample/payload/ssl/files/client.key
593
+ - sample/payload/ssl/files/sslclient_require_noserverauth.properties
594
+ - sample/payload/ssl/files/server.key
595
+ - sample/payload/ssl/files/README
596
+ - sample/payload/ssl/files/sslclient.properties
597
+ - sample/payload/ssl/files/server.cert
598
+ - sample/payload/ssl/files/client.cert
599
+ - sample/payload/ssl/sslclient_require_noserverauth.rb
600
+ - sample/payload/ssl/sslserver.rb
601
+ - sample/payload/ssl/sslserver_require_clientauth.rb
602
+ - sample/payload/ssl/sslclient.rb
603
+ - sample/payload/ssl/sslclient_with_clientauth.rb
604
+ - sample/payload/ssl/sslserver_noauth.rb
605
+ - sample/payload/gzipped/server.rb
606
+ - sample/payload/gzipped/client.rb
607
+ - sample/payload/cookies/server.rb
608
+ - sample/payload/cookies/client.rb
609
+ - sample/payload/cookies/filterclient.rb
610
+ - sample/payload/cookies/calc.rb
611
+ - sample/basic/calc/server2.rb
612
+ - sample/basic/calc/server.cgi
613
+ - sample/basic/calc/server.rb
614
+ - sample/basic/calc/client2.rb
615
+ - sample/basic/calc/client.rb
616
+ - sample/basic/calc/server.fcgi
617
+ - sample/basic/calc/samplehttpd.conf
618
+ - sample/basic/calc/calc2.rb
619
+ - sample/basic/calc/calc.rb
620
+ - sample/basic/calc/httpd.rb
621
+ - sample/basic/wsdl_helloworld/client/hws.wsdl
622
+ - sample/basic/wsdl_helloworld/client/default.rb
623
+ - sample/basic/wsdl_helloworld/client/defaultDriver.rb
624
+ - sample/basic/wsdl_helloworld/client/hwsClient.rb
625
+ - sample/basic/wsdl_helloworld/README
626
+ - sample/basic/wsdl_helloworld/server/hws.wsdl
627
+ - sample/basic/wsdl_helloworld/server/hw_s.rb
628
+ - sample/basic/whois.rb
629
+ - sample/basic/sampleStruct/server.cgi
630
+ - sample/basic/sampleStruct/server.rb
631
+ - sample/basic/sampleStruct/iSampleStruct.rb
632
+ - sample/basic/sampleStruct/client.rb
633
+ - sample/basic/sampleStruct/samplehttpd.conf
634
+ - sample/basic/sampleStruct/sampleStruct.rb
635
+ - sample/basic/sampleStruct/httpd.rb
636
+ - sample/basic/apacheClient.rb
637
+ - sample/basic/flickr.rb
638
+ - sample/basic/helloworld/server.rb
639
+ - sample/basic/helloworld/client.rb
640
+ - sample/basic/yahooNewsSearch.rb
641
+ - sample/basic/babelfish.rb
642
+ - sample/basic/exchange/server.cgi
643
+ - sample/basic/exchange/exchange.rb
644
+ - sample/basic/exchange/server.rb
645
+ - sample/basic/exchange/client.rb
646
+ - sample/basic/exchange/samplehttpd.conf
647
+ - sample/basic/exchange/httpd.rb
648
+ - sample/attachment/swa/server.rb
649
+ - sample/attachment/swa/client.rb
650
+ - sample/attachment/complexmime/plaatje.png
651
+ - sample/attachment/complexmime/server.rb
652
+ - sample/attachment/complexmime/client.rb
653
+ - sample/attachment/complexmime/README.txt
654
+ - sample/attachment/complexmime/EdmService.rb
655
+ - sample/attachment/complexmime/drift.cdf
656
+ - COPYING
657
+ - soap4r-spox.gemspec
658
+ - bin/wsdl2ruby.rb
659
+ - bin/xsd2ruby.rb
660
+ - GPL
661
+ - README.rdoc
662
+ - Rakefile
663
+ - rubyStyle.css
664
+ - RUBYS
665
+ homepage: http://github.com/spox/soap4r-spox
666
+ licenses: []
667
+ post_install_message:
668
+ rdoc_options: []
669
+ require_paths:
670
+ - lib
671
+ required_ruby_version: !ruby/object:Gem::Requirement
672
+ none: false
673
+ requirements:
674
+ - - ! '>='
675
+ - !ruby/object:Gem::Version
676
+ version: '0'
677
+ required_rubygems_version: !ruby/object:Gem::Requirement
678
+ none: false
679
+ requirements:
680
+ - - ! '>='
681
+ - !ruby/object:Gem::Version
682
+ version: '0'
683
+ requirements: []
684
+ rubyforge_project:
685
+ rubygems_version: 1.8.24
686
+ signing_key:
687
+ specification_version: 3
688
+ summary: Updated soap4r for 1.9
689
+ test_files: []