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,66 @@
1
+ require 'default.rb'
2
+ require 'defaultMappingRegistry.rb'
3
+ require 'soap/rpc/driver'
4
+
5
+ class NdfdXMLPortType < ::SOAP::RPC::Driver
6
+ DefaultEndpointUrl = "http://weather.gov/forecasts/xml/SOAP_server/ndfdXMLserver.php"
7
+
8
+ Methods = [
9
+ [ XSD::QName.new("http://weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl", "NDFDgen"),
10
+ "http://weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl#NDFDgen",
11
+ "nDFDgen",
12
+ [ [:in, "latitude", ["::SOAP::SOAPDecimal"]],
13
+ [:in, "longitude", ["::SOAP::SOAPDecimal"]],
14
+ [:in, "product", [nil, "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd", "productType"]],
15
+ [:in, "startTime", ["::SOAP::SOAPDateTime"]],
16
+ [:in, "endTime", ["::SOAP::SOAPDateTime"]],
17
+ [:in, "weatherParameters", ["WeatherParametersType", "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd", "weatherParametersType"]],
18
+ [:retval, "dwmlOut", ["::SOAP::SOAPString"]] ],
19
+ { :request_style => :rpc, :request_use => :encoded,
20
+ :response_style => :rpc, :response_use => :encoded,
21
+ :faults => {} }
22
+ ],
23
+ [ XSD::QName.new("http://weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl", "NDFDgenByDay"),
24
+ "http://weather.gov/forecasts/xml/DWMLgen/wsdl/ndfdXML.wsdl#NDFDgenByDay",
25
+ "nDFDgenByDay",
26
+ [ [:in, "latitude", ["::SOAP::SOAPDecimal"]],
27
+ [:in, "longitude", ["::SOAP::SOAPDecimal"]],
28
+ [:in, "startDate", ["::SOAP::SOAPDate"]],
29
+ [:in, "numDays", ["::SOAP::SOAPInteger"]],
30
+ [:in, "format", [nil, "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd", "formatType"]],
31
+ [:retval, "dwmlByDayOut", ["::SOAP::SOAPString"]] ],
32
+ { :request_style => :rpc, :request_use => :encoded,
33
+ :response_style => :rpc, :response_use => :encoded,
34
+ :faults => {} }
35
+ ]
36
+ ]
37
+
38
+ def initialize(endpoint_url = nil)
39
+ endpoint_url ||= DefaultEndpointUrl
40
+ super(endpoint_url, nil)
41
+ self.mapping_registry = DefaultMappingRegistry::EncodedRegistry
42
+ self.literal_mapping_registry = DefaultMappingRegistry::LiteralRegistry
43
+ init_methods
44
+ end
45
+
46
+ private
47
+
48
+ def init_methods
49
+ Methods.each do |definitions|
50
+ opt = definitions.last
51
+ if opt[:request_style] == :document
52
+ add_document_operation(*definitions)
53
+ else
54
+ add_rpc_operation(*definitions)
55
+ qname = definitions[0]
56
+ name = definitions[2]
57
+ if qname.name != name and qname.name.capitalize == name.capitalize
58
+ ::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
59
+ __send__(name, *arg)
60
+ end
61
+ end
62
+ end
63
+ end
64
+ end
65
+ end
66
+
@@ -0,0 +1,74 @@
1
+ require 'default.rb'
2
+ require 'soap/mapping'
3
+
4
+ module DefaultMappingRegistry
5
+ EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
6
+ LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
7
+
8
+ EncodedRegistry.register(
9
+ :class => WeatherParametersType,
10
+ :schema_ns => "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd",
11
+ :schema_type => "weatherParametersType",
12
+ :schema_element => [
13
+ ["maxt", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "maxt")]],
14
+ ["mint", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "mint")]],
15
+ ["temp", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "temp")]],
16
+ ["dew", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "dew")]],
17
+ ["pop12", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "pop12")]],
18
+ ["qpf", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "qpf")]],
19
+ ["sky", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "sky")]],
20
+ ["snow", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "snow")]],
21
+ ["wspd", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "wspd")]],
22
+ ["wdir", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "wdir")]],
23
+ ["wx", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "wx")]],
24
+ ["waveh", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "waveh")]],
25
+ ["icons", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "icons")]]
26
+ ]
27
+ )
28
+
29
+ EncodedRegistry.register(
30
+ :class => FormatType,
31
+ :schema_ns => "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd",
32
+ :schema_type => "formatType"
33
+ )
34
+
35
+ EncodedRegistry.register(
36
+ :class => ProductType,
37
+ :schema_ns => "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd",
38
+ :schema_type => "productType"
39
+ )
40
+
41
+ LiteralRegistry.register(
42
+ :class => WeatherParametersType,
43
+ :schema_ns => "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd",
44
+ :schema_type => "weatherParametersType",
45
+ :schema_qualified => false,
46
+ :schema_element => [
47
+ ["maxt", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "maxt")]],
48
+ ["mint", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "mint")]],
49
+ ["temp", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "temp")]],
50
+ ["dew", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "dew")]],
51
+ ["pop12", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "pop12")]],
52
+ ["qpf", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "qpf")]],
53
+ ["sky", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "sky")]],
54
+ ["snow", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "snow")]],
55
+ ["wspd", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "wspd")]],
56
+ ["wdir", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "wdir")]],
57
+ ["wx", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "wx")]],
58
+ ["waveh", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "waveh")]],
59
+ ["icons", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "icons")]]
60
+ ]
61
+ )
62
+
63
+ LiteralRegistry.register(
64
+ :class => FormatType,
65
+ :schema_ns => "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd",
66
+ :schema_type => "formatType"
67
+ )
68
+
69
+ LiteralRegistry.register(
70
+ :class => ProductType,
71
+ :schema_ns => "http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd",
72
+ :schema_type => "productType"
73
+ )
74
+ end
@@ -0,0 +1,43 @@
1
+ #!/usr/bin/env ruby
2
+ require 'defaultDriver.rb'
3
+
4
+ endpoint_url = ARGV.shift
5
+ obj = NdfdXMLPortType.new(endpoint_url)
6
+
7
+ # run ruby with -d to see SOAP wiredumps.
8
+ obj.wiredump_dev = STDERR if $DEBUG
9
+
10
+ # SYNOPSIS
11
+ # NDFDgen(latitude, longitude, product, startTime, endTime, weatherParameters)
12
+ #
13
+ # ARGS
14
+ # latitude Decimal - {http://www.w3.org/2001/XMLSchema}decimal
15
+ # longitude Decimal - {http://www.w3.org/2001/XMLSchema}decimal
16
+ # product ProductType - {http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd}productType
17
+ # startTime DateTime - {http://www.w3.org/2001/XMLSchema}dateTime
18
+ # endTime DateTime - {http://www.w3.org/2001/XMLSchema}dateTime
19
+ # weatherParameters WeatherParametersType - {http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd}weatherParametersType
20
+ #
21
+ # RETURNS
22
+ # dwmlOut C_String - {http://www.w3.org/2001/XMLSchema}string
23
+ #
24
+ latitude = longitude = product = startTime = endTime = weatherParameters = nil
25
+ puts obj.nDFDgen(latitude, longitude, product, startTime, endTime, weatherParameters)
26
+
27
+ # SYNOPSIS
28
+ # NDFDgenByDay(latitude, longitude, startDate, numDays, format)
29
+ #
30
+ # ARGS
31
+ # latitude Decimal - {http://www.w3.org/2001/XMLSchema}decimal
32
+ # longitude Decimal - {http://www.w3.org/2001/XMLSchema}decimal
33
+ # startDate Date - {http://www.w3.org/2001/XMLSchema}date
34
+ # numDays C_Integer - {http://www.w3.org/2001/XMLSchema}integer
35
+ # format FormatType - {http://weather.gov/forecasts/xml/DWMLgen/schema/ndfdXML.xsd}formatType
36
+ #
37
+ # RETURNS
38
+ # dwmlByDayOut C_String - {http://www.w3.org/2001/XMLSchema}string
39
+ #
40
+ latitude = longitude = startDate = numDays = format = nil
41
+ puts obj.nDFDgenByDay(latitude, longitude, startDate, numDays, format)
42
+
43
+
@@ -0,0 +1,134 @@
1
+ require 'xsd/qname'
2
+
3
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}Gem
4
+ # id - SOAP::SOAPInt
5
+ # category - Category
6
+ # owner - Owner
7
+ # project - Project
8
+ # updated - SOAP::SOAPDateTime
9
+ # created - SOAP::SOAPDateTime
10
+ class Gem
11
+ attr_accessor :id
12
+ attr_accessor :category
13
+ attr_accessor :owner
14
+ attr_accessor :project
15
+ attr_accessor :updated
16
+ attr_accessor :created
17
+
18
+ def initialize(id = nil, category = nil, owner = nil, project = nil, updated = nil, created = nil)
19
+ @id = id
20
+ @category = category
21
+ @owner = owner
22
+ @project = project
23
+ @updated = updated
24
+ @created = created
25
+ end
26
+ end
27
+
28
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}Category
29
+ # major - SOAP::SOAPString
30
+ # minor - SOAP::SOAPString
31
+ class Category
32
+ attr_accessor :major
33
+ attr_accessor :minor
34
+
35
+ def initialize(major = nil, minor = nil)
36
+ @major = major
37
+ @minor = minor
38
+ end
39
+ end
40
+
41
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}Owner
42
+ # id - SOAP::SOAPInt
43
+ # email - SOAP::SOAPAnyURI
44
+ # name - SOAP::SOAPString
45
+ class Owner
46
+ attr_accessor :id
47
+ attr_accessor :email
48
+ attr_accessor :name
49
+
50
+ def initialize(id = nil, email = nil, name = nil)
51
+ @id = id
52
+ @email = email
53
+ @name = name
54
+ end
55
+ end
56
+
57
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}Project
58
+ # name - SOAP::SOAPString
59
+ # short_description - SOAP::SOAPString
60
+ # version - SOAP::SOAPString
61
+ # status - SOAP::SOAPString
62
+ # url - SOAP::SOAPAnyURI
63
+ # download - SOAP::SOAPAnyURI
64
+ # license - SOAP::SOAPString
65
+ # description - SOAP::SOAPString
66
+ # description_style - SOAP::SOAPString
67
+ # updated - SOAP::SOAPDateTime
68
+ # history - ProjectArray
69
+ # dependency - ProjectDependencyArray
70
+ class Project
71
+ attr_accessor :name
72
+ attr_accessor :short_description
73
+ attr_accessor :version
74
+ attr_accessor :status
75
+ attr_accessor :url
76
+ attr_accessor :download
77
+ attr_accessor :license
78
+ attr_accessor :description
79
+ attr_accessor :description_style
80
+ attr_accessor :updated
81
+ attr_accessor :history
82
+ attr_accessor :dependency
83
+
84
+ def initialize(name = nil, short_description = nil, version = nil, status = nil, url = nil, download = nil, license = nil, description = nil, description_style = nil, updated = nil, history = nil, dependency = nil)
85
+ @name = name
86
+ @short_description = short_description
87
+ @version = version
88
+ @status = status
89
+ @url = url
90
+ @download = download
91
+ @license = license
92
+ @description = description
93
+ @description_style = description_style
94
+ @updated = updated
95
+ @history = history
96
+ @dependency = dependency
97
+ end
98
+ end
99
+
100
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}ProjectDependency
101
+ # project - SOAP::SOAPString
102
+ # version - SOAP::SOAPString
103
+ # description - SOAP::SOAPString
104
+ class ProjectDependency
105
+ attr_accessor :project
106
+ attr_accessor :version
107
+ attr_accessor :description
108
+
109
+ def initialize(project = nil, version = nil, description = nil)
110
+ @project = project
111
+ @version = version
112
+ @description = description
113
+ end
114
+ end
115
+
116
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}GemArray
117
+ class GemArray < ::Array
118
+ end
119
+
120
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}OwnerArray
121
+ class OwnerArray < ::Array
122
+ end
123
+
124
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}ProjectArray
125
+ class ProjectArray < ::Array
126
+ end
127
+
128
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}ProjectDependencyArray
129
+ class ProjectDependencyArray < ::Array
130
+ end
131
+
132
+ # {http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/}StringArray
133
+ class StringArray < ::Array
134
+ end
@@ -0,0 +1,644 @@
1
+ <?xml version="1.0"?>
2
+ <definitions
3
+ name="raa"
4
+ targetNamespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"
5
+ xmlns:tns="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"
6
+ xmlns:txd="http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/"
7
+ xmlns="http://schemas.xmlsoap.org/wsdl/"
8
+ xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
9
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
10
+ xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
11
+ xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
12
+ xmlns:apachesoap="http://xml.apache.org/xml-soap">
13
+
14
+ <types>
15
+ <schema
16
+ xmlns="http://www.w3.org/2001/XMLSchema"
17
+ targetNamespace="http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/">
18
+
19
+ <complexType name="Gem">
20
+ <all>
21
+ <element name="id" type="xsd:int"/>
22
+ <element name="category" type="txd:Category"/>
23
+ <element name="owner" type="txd:Owner"/>
24
+ <element name="project" type="txd:Project"/>
25
+ <element name="updated" type="xsd:dateTime"/>
26
+ <element name="created" type="xsd:dateTime"/>
27
+ </all>
28
+ </complexType>
29
+
30
+ <complexType name="Category">
31
+ <all>
32
+ <element name="major" type="xsd:string"/>
33
+ <element name="minor" type="xsd:string"/>
34
+ </all>
35
+ </complexType>
36
+
37
+ <complexType name="Owner">
38
+ <all>
39
+ <element name="id" type="xsd:int"/>
40
+ <element name="email" type="xsd:anyURI"/>
41
+ <element name="name" type="xsd:string"/>
42
+ </all>
43
+ </complexType>
44
+
45
+ <complexType name="Project">
46
+ <all>
47
+ <element name="name" type="xsd:string"/>
48
+ <element name="short_description" type="xsd:string"/>
49
+ <element name="version" type="xsd:string"/>
50
+ <element name="status" type="xsd:string"/>
51
+ <element name="url" type="xsd:anyURI"/>
52
+ <element name="download" type="xsd:anyURI"/>
53
+ <element name="license" type="xsd:string"/>
54
+ <element name="description" type="xsd:string"/>
55
+ <element name="description_style" type="xsd:string"/>
56
+ <element name="updated" type="xsd:dateTime"/>
57
+ <element name="history" type="txd:ProjectArray"/>
58
+ <element name="dependency" type="txd:ProjectDependencyArray"/>
59
+ </all>
60
+ </complexType>
61
+
62
+ <complexType name="ProjectDependency">
63
+ <all>
64
+ <element name="project" type="xsd:string"/>
65
+ <element name="version" type="xsd:string"/>
66
+ <element name="description" type="xsd:string"/>
67
+ </all>
68
+ </complexType>
69
+
70
+ <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
71
+ <complexType name="GemArray">
72
+ <complexContent>
73
+ <restriction base="soapenc:Array">
74
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Gem[]"/>
75
+ </restriction>
76
+ </complexContent>
77
+ </complexType>
78
+
79
+ <complexType name="OwnerArray">
80
+ <complexContent>
81
+ <restriction base="soapenc:Array">
82
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Owner[]"/>
83
+ </restriction>
84
+ </complexContent>
85
+ </complexType>
86
+
87
+ <complexType name="ProjectArray">
88
+ <complexContent>
89
+ <restriction base="soapenc:Array">
90
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Project[]"/>
91
+ </restriction>
92
+ </complexContent>
93
+ </complexType>
94
+
95
+ <complexType name="ProjectDependencyArray">
96
+ <complexContent>
97
+ <restriction base="soapenc:Array">
98
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="txd:ProjectDependency[]"/>
99
+ </restriction>
100
+ </complexContent>
101
+ </complexType>
102
+
103
+ <complexType name="StringArray">
104
+ <complexContent>
105
+ <restriction base="soapenc:Array">
106
+ <attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
107
+ </restriction>
108
+ </complexContent>
109
+ </complexType>
110
+ </schema>
111
+
112
+ <!-- type definition for ApacheSOAP's Map -->
113
+ <schema
114
+ xmlns="http://www.w3.org/2001/XMLSchema"
115
+ targetNamespace="http://xml.apache.org/xml-soap">
116
+ <complexType name="Map">
117
+ <sequence>
118
+ <element name="item" minOccurs="0" maxOccurs="unbounded">
119
+ <complexType>
120
+ <sequence>
121
+ <element name="key" type="xsd:anyType" />
122
+ <element name="value" type="xsd:anyType" />
123
+ </sequence>
124
+ </complexType>
125
+ </element>
126
+ </sequence>
127
+ </complexType>
128
+ </schema>
129
+ </types>
130
+
131
+ <message name="msg_empty"/>
132
+
133
+ <message name="msg_name">
134
+ <part name="name" type="xsd:string"/>
135
+ </message>
136
+
137
+ <message name="msg_index">
138
+ <part name="idx" type="xsd:int"/>
139
+ </message>
140
+
141
+ <message name="msg_category">
142
+ <part name="major" type="xsd:string"/>
143
+ <part name="minor" type="xsd:string"/>
144
+ </message>
145
+
146
+ <message name="msg_name_version">
147
+ <part name="name" type="xsd:string"/>
148
+ <part name="version" type="xsd:string"/>
149
+ </message>
150
+
151
+ <message name="msg_substring">
152
+ <part name="substring" type="xsd:string"/>
153
+ </message>
154
+
155
+ <message name="msg_owner_index">
156
+ <part name="owner_id" type="xsd:int"/>
157
+ </message>
158
+
159
+ <message name="msg_datetime_index">
160
+ <part name="date" type="xsd:dateTime"/>
161
+ <part name="idx" type="xsd:int"/>
162
+ </message>
163
+
164
+ <message name="msg_substring_index">
165
+ <part name="substring" type="xsd:string"/>
166
+ <part name="idx" type="xsd:int"/>
167
+ </message>
168
+
169
+ <message name="msg_update_request">
170
+ <part name="name" type="xsd:string"/>
171
+ <part name="pass" type="xsd:string"/>
172
+ <part name="gem" type="txd:Gem"/>
173
+ </message>
174
+
175
+ <message name="msg_update_pass_request">
176
+ <part name="name" type="xsd:string"/>
177
+ <part name="oldpass" type="xsd:string"/>
178
+ <part name="newpass" type="xsd:string"/>
179
+ </message>
180
+
181
+ <message name="msg_gem_response">
182
+ <part name="return" type="txd:Gem"/>
183
+ </message>
184
+
185
+ <message name="msg_dependency_array_response">
186
+ <part name="return" type="txd:ProjectDependencyArray"/>
187
+ </message>
188
+
189
+ <message name="msg_names_response">
190
+ <part name="return" type="txd:StringArray"/>
191
+ </message>
192
+
193
+ <message name="msg_size_response">
194
+ <part name="return" type="xsd:int"/>
195
+ </message>
196
+
197
+ <message name="msg_gem_tree_response">
198
+ <part name="return" type="apachesoap:Map"/>
199
+ </message>
200
+
201
+ <message name="msg_search_response">
202
+ <part name="return" type="apachesoap:Map"/>
203
+ </message>
204
+
205
+ <message name="msg_owner_response">
206
+ <part name="return" type="txd:Owner"/>
207
+ </message>
208
+
209
+ <message name="msg_owner_array_response">
210
+ <part name="return" type="txd:OwnerArray"/>
211
+ </message>
212
+
213
+ <portType name="raaServicePortType">
214
+ <operation name="gem">
215
+ <input message="tns:msg_name"/>
216
+ <output message="tns:msg_gem_response"/>
217
+ </operation>
218
+
219
+ <operation name="dependents">
220
+ <input message="tns:msg_name_version"/>
221
+ <output message="tns:msg_dependency_array_response"/>
222
+ </operation>
223
+
224
+ <operation name="names">
225
+ <input message="tns:msg_empty"/>
226
+ <output message="tns:msg_names_response"/>
227
+ </operation>
228
+
229
+ <operation name="size">
230
+ <input message="tns:msg_empty"/>
231
+ <output message="tns:msg_size_response"/>
232
+ </operation>
233
+
234
+ <operation name="list_by_category"
235
+ parameterOrder="ownerId">
236
+ <input message="tns:msg_category"/>
237
+ <output message="tns:msg_names_response"/>
238
+ </operation>
239
+
240
+ <operation name="tree_by_category"
241
+ parameterOrder="ownerId">
242
+ <input message="tns:msg_empty"/>
243
+ <output message="tns:msg_gem_tree_response"/>
244
+ </operation>
245
+
246
+ <operation name="list_recent_updated">
247
+ <input message="tns:msg_index"/>
248
+ <output message="tns:msg_names_response"/>
249
+ </operation>
250
+
251
+ <operation name="list_recent_created">
252
+ <input message="tns:msg_index"/>
253
+ <output message="tns:msg_names_response"/>
254
+ </operation>
255
+
256
+ <operation name="list_updated_since">
257
+ <input message="tns:msg_datetime_index"/>
258
+ <output message="tns:msg_names_response"/>
259
+ </operation>
260
+
261
+ <operation name="list_created_since">
262
+ <input message="tns:msg_datetime_index"/>
263
+ <output message="tns:msg_names_response"/>
264
+ </operation>
265
+
266
+ <operation name="list_by_owner">
267
+ <input message="tns:msg_owner_index"/>
268
+ <output message="tns:msg_names_response"/>
269
+ </operation>
270
+
271
+ <operation name="search_name">
272
+ <input message="tns:msg_substring_index"/>
273
+ <output message="tns:msg_names_response"/>
274
+ </operation>
275
+
276
+ <operation name="search_short_description">
277
+ <input message="tns:msg_substring_index"/>
278
+ <output message="tns:msg_names_response"/>
279
+ </operation>
280
+
281
+ <operation name="search_owner">
282
+ <input message="tns:msg_substring_index"/>
283
+ <output message="tns:msg_names_response"/>
284
+ </operation>
285
+
286
+ <operation name="search_version">
287
+ <input message="tns:msg_substring_index"/>
288
+ <output message="tns:msg_names_response"/>
289
+ </operation>
290
+
291
+ <operation name="search_status">
292
+ <input message="tns:msg_substring_index"/>
293
+ <output message="tns:msg_names_response"/>
294
+ </operation>
295
+
296
+ <operation name="search_description">
297
+ <input message="tns:msg_substring_index"/>
298
+ <output message="tns:msg_names_response"/>
299
+ </operation>
300
+
301
+ <operation name="search">
302
+ <input message="tns:msg_substring"/>
303
+ <output message="tns:msg_search_response"/>
304
+ </operation>
305
+
306
+ <operation name="owner">
307
+ <input message="tns:msg_owner_index"/>
308
+ <output message="tns:msg_owner_response"/>
309
+ </operation>
310
+
311
+ <operation name="list_owner">
312
+ <input message="tns:msg_index"/>
313
+ <output message="tns:msg_owner_array_response"/>
314
+ </operation>
315
+
316
+ <operation name="update">
317
+ <input message="tns:msg_update_request"/>
318
+ <output message="tns:msg_gem_response"/>
319
+ </operation>
320
+
321
+ <operation name="update_pass">
322
+ <input message="tns:msg_update_pass_request"/>
323
+ <output message="tns:msg_empty"/>
324
+ </operation>
325
+ </portType>
326
+
327
+ <binding name="raaServicePortBinding" type="tns:raaServicePortType">
328
+ <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
329
+
330
+ <operation name="gem">
331
+ <soap:operation soapAction=""/>
332
+ <input>
333
+ <soap:body use="encoded"
334
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
335
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
336
+ </input>
337
+ <output>
338
+ <soap:body use="encoded"
339
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
340
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
341
+ </output>
342
+ </operation>
343
+
344
+ <operation name="dependents">
345
+ <soap:operation soapAction=""/>
346
+ <input>
347
+ <soap:body use="encoded"
348
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
349
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
350
+ </input>
351
+ <output>
352
+ <soap:body use="encoded"
353
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
354
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
355
+ </output>
356
+ </operation>
357
+
358
+ <operation name="names">
359
+ <soap:operation soapAction=""/>
360
+ <input>
361
+ <soap:body use="encoded"
362
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
363
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
364
+ </input>
365
+ <output>
366
+ <soap:body use="encoded"
367
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
368
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
369
+ </output>
370
+ </operation>
371
+
372
+ <operation name="size">
373
+ <soap:operation soapAction=""/>
374
+ <input>
375
+ <soap:body use="encoded"
376
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
377
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
378
+ </input>
379
+ <output>
380
+ <soap:body use="encoded"
381
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
382
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
383
+ </output>
384
+ </operation>
385
+
386
+ <operation name="list_by_category">
387
+ <soap:operation soapAction=""/>
388
+ <input>
389
+ <soap:body use="encoded"
390
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
391
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
392
+ </input>
393
+ <output>
394
+ <soap:body use="encoded"
395
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
396
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
397
+ </output>
398
+ </operation>
399
+
400
+ <operation name="tree_by_category">
401
+ <soap:operation soapAction=""/>
402
+ <input>
403
+ <soap:body use="encoded"
404
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
405
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
406
+ </input>
407
+ <output>
408
+ <soap:body use="encoded"
409
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
410
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
411
+ </output>
412
+ </operation>
413
+
414
+ <operation name="list_recent_updated">
415
+ <soap:operation soapAction=""/>
416
+ <input>
417
+ <soap:body use="encoded"
418
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
419
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
420
+ </input>
421
+ <output>
422
+ <soap:body use="encoded"
423
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
424
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
425
+ </output>
426
+ </operation>
427
+
428
+ <operation name="list_recent_created">
429
+ <soap:operation soapAction=""/>
430
+ <input>
431
+ <soap:body use="encoded"
432
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
433
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
434
+ </input>
435
+ <output>
436
+ <soap:body use="encoded"
437
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
438
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
439
+ </output>
440
+ </operation>
441
+
442
+ <operation name="list_updated_since">
443
+ <soap:operation soapAction=""/>
444
+ <input>
445
+ <soap:body use="encoded"
446
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
447
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
448
+ </input>
449
+ <output>
450
+ <soap:body use="encoded"
451
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
452
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
453
+ </output>
454
+ </operation>
455
+
456
+ <operation name="list_created_since">
457
+ <soap:operation soapAction=""/>
458
+ <input>
459
+ <soap:body use="encoded"
460
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
461
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
462
+ </input>
463
+ <output>
464
+ <soap:body use="encoded"
465
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
466
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
467
+ </output>
468
+ </operation>
469
+
470
+ <operation name="list_by_owner">
471
+ <soap:operation soapAction=""/>
472
+ <input>
473
+ <soap:body use="encoded"
474
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
475
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
476
+ </input>
477
+ <output>
478
+ <soap:body use="encoded"
479
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
480
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
481
+ </output>
482
+ </operation>
483
+
484
+ <operation name="search_name">
485
+ <soap:operation soapAction=""/>
486
+ <input>
487
+ <soap:body use="encoded"
488
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
489
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
490
+ </input>
491
+ <output>
492
+ <soap:body use="encoded"
493
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
494
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
495
+ </output>
496
+ </operation>
497
+
498
+ <operation name="search_short_description">
499
+ <soap:operation soapAction=""/>
500
+ <input>
501
+ <soap:body use="encoded"
502
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
503
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
504
+ </input>
505
+ <output>
506
+ <soap:body use="encoded"
507
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
508
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
509
+ </output>
510
+ </operation>
511
+
512
+ <operation name="search_owner">
513
+ <soap:operation soapAction=""/>
514
+ <input>
515
+ <soap:body use="encoded"
516
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
517
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
518
+ </input>
519
+ <output>
520
+ <soap:body use="encoded"
521
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
522
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
523
+ </output>
524
+ </operation>
525
+
526
+ <operation name="search_version">
527
+ <soap:operation soapAction=""/>
528
+ <input>
529
+ <soap:body use="encoded"
530
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
531
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
532
+ </input>
533
+ <output>
534
+ <soap:body use="encoded"
535
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
536
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
537
+ </output>
538
+ </operation>
539
+
540
+ <operation name="search_status">
541
+ <soap:operation soapAction=""/>
542
+ <input>
543
+ <soap:body use="encoded"
544
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
545
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
546
+ </input>
547
+ <output>
548
+ <soap:body use="encoded"
549
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
550
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
551
+ </output>
552
+ </operation>
553
+
554
+ <operation name="search_description">
555
+ <soap:operation soapAction=""/>
556
+ <input>
557
+ <soap:body use="encoded"
558
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
559
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
560
+ </input>
561
+ <output>
562
+ <soap:body use="encoded"
563
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
564
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
565
+ </output>
566
+ </operation>
567
+
568
+ <operation name="search">
569
+ <soap:operation soapAction=""/>
570
+ <input>
571
+ <soap:body use="encoded"
572
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
573
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
574
+ </input>
575
+ <output>
576
+ <soap:body use="encoded"
577
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
578
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
579
+ </output>
580
+ </operation>
581
+
582
+ <operation name="owner">
583
+ <soap:operation soapAction=""/>
584
+ <input>
585
+ <soap:body use="encoded"
586
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
587
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
588
+ </input>
589
+ <output>
590
+ <soap:body use="encoded"
591
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
592
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
593
+ </output>
594
+ </operation>
595
+
596
+ <operation name="list_owner">
597
+ <soap:operation soapAction=""/>
598
+ <input>
599
+ <soap:body use="encoded"
600
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
601
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
602
+ </input>
603
+ <output>
604
+ <soap:body use="encoded"
605
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
606
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
607
+ </output>
608
+ </operation>
609
+
610
+ <operation name="update">
611
+ <soap:operation soapAction=""/>
612
+ <input>
613
+ <soap:body use="encoded"
614
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
615
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
616
+ </input>
617
+ <output>
618
+ <soap:body use="encoded"
619
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
620
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
621
+ </output>
622
+ </operation>
623
+
624
+ <operation name="update_pass">
625
+ <soap:operation soapAction=""/>
626
+ <input>
627
+ <soap:body use="encoded"
628
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
629
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
630
+ </input>
631
+ <output>
632
+ <soap:body use="encoded"
633
+ encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
634
+ namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
635
+ </output>
636
+ </operation>
637
+ </binding>
638
+
639
+ <service name="raaService">
640
+ <port name="raaServicePort" binding="tns:raaServicePortBinding">
641
+ <soap:address location="http://raa.ruby-lang.org/soapsrv"/>
642
+ </port>
643
+ </service>
644
+ </definitions>