soap4r 1.5.5.20061022

Sign up to get free protection for your applications and to get access to all the features.
Files changed (440) hide show
  1. data/bin/wsdl2ruby.rb +131 -0
  2. data/bin/xsd2ruby.rb +82 -0
  3. data/lib/soap/XMLSchemaDatatypes.rb +9 -0
  4. data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
  5. data/lib/soap/attachment.rb +108 -0
  6. data/lib/soap/baseData.rb +992 -0
  7. data/lib/soap/cgistub.rb +9 -0
  8. data/lib/soap/charset.rb +9 -0
  9. data/lib/soap/compat.rb +182 -0
  10. data/lib/soap/driver.rb +9 -0
  11. data/lib/soap/element.rb +266 -0
  12. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  13. data/lib/soap/encodingstyle/handler.rb +109 -0
  14. data/lib/soap/encodingstyle/literalHandler.rb +241 -0
  15. data/lib/soap/encodingstyle/soapHandler.rb +598 -0
  16. data/lib/soap/generator.rb +264 -0
  17. data/lib/soap/header/handler.rb +60 -0
  18. data/lib/soap/header/handlerset.rb +70 -0
  19. data/lib/soap/header/simplehandler.rb +44 -0
  20. data/lib/soap/httpconfigloader.rb +119 -0
  21. data/lib/soap/mapping.rb +12 -0
  22. data/lib/soap/mapping/encodedregistry.rb +531 -0
  23. data/lib/soap/mapping/factory.rb +372 -0
  24. data/lib/soap/mapping/literalregistry.rb +321 -0
  25. data/lib/soap/mapping/mapping.rb +561 -0
  26. data/lib/soap/mapping/registry.rb +258 -0
  27. data/lib/soap/mapping/rubytypeFactory.rb +475 -0
  28. data/lib/soap/mapping/typeMap.rb +82 -0
  29. data/lib/soap/mapping/wsdlencodedregistry.rb +253 -0
  30. data/lib/soap/mapping/wsdlliteralregistry.rb +246 -0
  31. data/lib/soap/mappingRegistry.rb +9 -0
  32. data/lib/soap/marshal.rb +59 -0
  33. data/lib/soap/mimemessage.rb +241 -0
  34. data/lib/soap/namespace.rb +9 -0
  35. data/lib/soap/netHttpClient.rb +204 -0
  36. data/lib/soap/parser.rb +251 -0
  37. data/lib/soap/processor.rb +66 -0
  38. data/lib/soap/property.rb +333 -0
  39. data/lib/soap/proxy.rb +14 -0
  40. data/lib/soap/qname.rb +9 -0
  41. data/lib/soap/rpc/cgistub.rb +214 -0
  42. data/lib/soap/rpc/driver.rb +245 -0
  43. data/lib/soap/rpc/element.rb +330 -0
  44. data/lib/soap/rpc/httpserver.rb +143 -0
  45. data/lib/soap/rpc/proxy.rb +563 -0
  46. data/lib/soap/rpc/router.rb +602 -0
  47. data/lib/soap/rpc/rpc.rb +25 -0
  48. data/lib/soap/rpc/soaplet.rb +162 -0
  49. data/lib/soap/rpc/standaloneServer.rb +43 -0
  50. data/lib/soap/rpcRouter.rb +9 -0
  51. data/lib/soap/rpcUtils.rb +9 -0
  52. data/lib/soap/server.rb +9 -0
  53. data/lib/soap/soap.rb +150 -0
  54. data/lib/soap/standaloneServer.rb +9 -0
  55. data/lib/soap/streamHandler.rb +258 -0
  56. data/lib/soap/wsdlDriver.rb +580 -0
  57. data/lib/wsdl/binding.rb +65 -0
  58. data/lib/wsdl/data.rb +64 -0
  59. data/lib/wsdl/definitions.rb +250 -0
  60. data/lib/wsdl/documentation.rb +32 -0
  61. data/lib/wsdl/import.rb +80 -0
  62. data/lib/wsdl/importer.rb +38 -0
  63. data/lib/wsdl/info.rb +39 -0
  64. data/lib/wsdl/message.rb +54 -0
  65. data/lib/wsdl/operation.rb +175 -0
  66. data/lib/wsdl/operationBinding.rb +116 -0
  67. data/lib/wsdl/param.rb +85 -0
  68. data/lib/wsdl/parser.rb +163 -0
  69. data/lib/wsdl/part.rb +52 -0
  70. data/lib/wsdl/port.rb +84 -0
  71. data/lib/wsdl/portType.rb +75 -0
  72. data/lib/wsdl/service.rb +61 -0
  73. data/lib/wsdl/soap/address.rb +40 -0
  74. data/lib/wsdl/soap/binding.rb +49 -0
  75. data/lib/wsdl/soap/body.rb +56 -0
  76. data/lib/wsdl/soap/cgiStubCreator.rb +88 -0
  77. data/lib/wsdl/soap/classDefCreator.rb +340 -0
  78. data/lib/wsdl/soap/classDefCreatorSupport.rb +131 -0
  79. data/lib/wsdl/soap/clientSkeltonCreator.rb +93 -0
  80. data/lib/wsdl/soap/complexType.rb +166 -0
  81. data/lib/wsdl/soap/data.rb +42 -0
  82. data/lib/wsdl/soap/definitions.rb +151 -0
  83. data/lib/wsdl/soap/driverCreator.rb +110 -0
  84. data/lib/wsdl/soap/element.rb +28 -0
  85. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +117 -0
  86. data/lib/wsdl/soap/fault.rb +56 -0
  87. data/lib/wsdl/soap/header.rb +86 -0
  88. data/lib/wsdl/soap/headerfault.rb +56 -0
  89. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +188 -0
  90. data/lib/wsdl/soap/mappingRegistryCreator.rb +53 -0
  91. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +233 -0
  92. data/lib/wsdl/soap/methodDefCreator.rb +253 -0
  93. data/lib/wsdl/soap/operation.rb +122 -0
  94. data/lib/wsdl/soap/servantSkeltonCreator.rb +78 -0
  95. data/lib/wsdl/soap/standaloneServerStubCreator.rb +98 -0
  96. data/lib/wsdl/soap/wsdl2ruby.rb +196 -0
  97. data/lib/wsdl/types.rb +44 -0
  98. data/lib/wsdl/wsdl.rb +23 -0
  99. data/lib/wsdl/xmlSchema/all.rb +24 -0
  100. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  101. data/lib/wsdl/xmlSchema/any.rb +56 -0
  102. data/lib/wsdl/xmlSchema/attribute.rb +123 -0
  103. data/lib/wsdl/xmlSchema/choice.rb +55 -0
  104. data/lib/wsdl/xmlSchema/complexContent.rb +88 -0
  105. data/lib/wsdl/xmlSchema/complexExtension.rb +104 -0
  106. data/lib/wsdl/xmlSchema/complexRestriction.rb +92 -0
  107. data/lib/wsdl/xmlSchema/complexType.rb +152 -0
  108. data/lib/wsdl/xmlSchema/content.rb +74 -0
  109. data/lib/wsdl/xmlSchema/data.rb +90 -0
  110. data/lib/wsdl/xmlSchema/element.rb +158 -0
  111. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  112. data/lib/wsdl/xmlSchema/import.rb +65 -0
  113. data/lib/wsdl/xmlSchema/importer.rb +87 -0
  114. data/lib/wsdl/xmlSchema/include.rb +54 -0
  115. data/lib/wsdl/xmlSchema/length.rb +35 -0
  116. data/lib/wsdl/xmlSchema/list.rb +48 -0
  117. data/lib/wsdl/xmlSchema/maxlength.rb +35 -0
  118. data/lib/wsdl/xmlSchema/minlength.rb +35 -0
  119. data/lib/wsdl/xmlSchema/parser.rb +166 -0
  120. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  121. data/lib/wsdl/xmlSchema/schema.rb +144 -0
  122. data/lib/wsdl/xmlSchema/sequence.rb +51 -0
  123. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  124. data/lib/wsdl/xmlSchema/simpleExtension.rb +54 -0
  125. data/lib/wsdl/xmlSchema/simpleRestriction.rb +91 -0
  126. data/lib/wsdl/xmlSchema/simpleType.rb +80 -0
  127. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  128. data/lib/wsdl/xmlSchema/xsd2ruby.rb +107 -0
  129. data/lib/xsd/charset.rb +187 -0
  130. data/lib/xsd/codegen.rb +12 -0
  131. data/lib/xsd/codegen/classdef.rb +203 -0
  132. data/lib/xsd/codegen/commentdef.rb +34 -0
  133. data/lib/xsd/codegen/gensupport.rb +168 -0
  134. data/lib/xsd/codegen/methoddef.rb +70 -0
  135. data/lib/xsd/codegen/moduledef.rb +191 -0
  136. data/lib/xsd/datatypes.rb +1282 -0
  137. data/lib/xsd/datatypes1999.rb +20 -0
  138. data/lib/xsd/iconvcharset.rb +33 -0
  139. data/lib/xsd/mapping.rb +42 -0
  140. data/lib/xsd/namedelements.rb +124 -0
  141. data/lib/xsd/ns.rb +146 -0
  142. data/lib/xsd/qname.rb +78 -0
  143. data/lib/xsd/xmlparser.rb +61 -0
  144. data/lib/xsd/xmlparser/parser.rb +96 -0
  145. data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
  146. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  147. data/lib/xsd/xmlparser/xmlscanner.rb +147 -0
  148. data/test/16runner.rb +68 -0
  149. data/test/interopR2/README.txt +2 -0
  150. data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
  151. data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
  152. data/test/interopR2/base.rb +288 -0
  153. data/test/interopR2/client.NetRemoting.rb +17 -0
  154. data/test/interopR2/client.NetRemoting.rb.result +3410 -0
  155. data/test/interopR2/client.NetRemoting_Base.log +6279 -0
  156. data/test/interopR2/client.NetRemoting_GroupB.log +1188 -0
  157. data/test/interopR2/client.rb +1228 -0
  158. data/test/interopR2/client4S4C.rb +15 -0
  159. data/test/interopR2/client4S4C2.rb +14 -0
  160. data/test/interopR2/client4S4C2_Base.log +4955 -0
  161. data/test/interopR2/client4S4C2_GroupB.log +1000 -0
  162. data/test/interopR2/client4S4C_Base.log +4635 -0
  163. data/test/interopR2/client4S4C_GroupB.log +900 -0
  164. data/test/interopR2/clientASP.NET.rb +17 -0
  165. data/test/interopR2/clientASP.NET_Base.log +5468 -0
  166. data/test/interopR2/clientASP.NET_GroupB.log +977 -0
  167. data/test/interopR2/clientApacheAxis.rb +16 -0
  168. data/test/interopR2/clientApacheAxis_Base.log +3171 -0
  169. data/test/interopR2/clientApacheAxis_GroupB.log +498 -0
  170. data/test/interopR2/clientApacheSOAP.rb +17 -0
  171. data/test/interopR2/clientApacheSOAP_Base.log +3171 -0
  172. data/test/interopR2/clientBEAWebLogic.rb +17 -0
  173. data/test/interopR2/clientBEAWebLogic_Base.log +3171 -0
  174. data/test/interopR2/clientBEAWebLogic_GroupB.log +498 -0
  175. data/test/interopR2/clientBase.rb +1970 -0
  176. data/test/interopR2/clientCapeConnect.rb +18 -0
  177. data/test/interopR2/clientCapeConnect_Base.log +2126 -0
  178. data/test/interopR2/clientDelphi.rb +19 -0
  179. data/test/interopR2/clientDelphi_Base.log +0 -0
  180. data/test/interopR2/clientEasySoap.rb +14 -0
  181. data/test/interopR2/clientEasySoap_Base.log +6187 -0
  182. data/test/interopR2/clientEasySoap_GroupB.log +1076 -0
  183. data/test/interopR2/clientFrontier.rb +25 -0
  184. data/test/interopR2/clientFrontier_Base.log +5188 -0
  185. data/test/interopR2/clientGLUE.rb +32 -0
  186. data/test/interopR2/clientHP.rb +13 -0
  187. data/test/interopR2/clientHP_Base.log +3171 -0
  188. data/test/interopR2/clientHP_GroupB.log +498 -0
  189. data/test/interopR2/clientJAX-RPC.rb +19 -0
  190. data/test/interopR2/clientJSOAP.rb +14 -0
  191. data/test/interopR2/clientJSOAP_Base.log +4465 -0
  192. data/test/interopR2/clientJSOAP_GroupB.log +824 -0
  193. data/test/interopR2/clientKafkaXSLT.rb +15 -0
  194. data/test/interopR2/clientKafkaXSLT_Base.log +10299 -0
  195. data/test/interopR2/clientKafkaXSLT_GroupB.log +1739 -0
  196. data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
  197. data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +4805 -0
  198. data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +871 -0
  199. data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
  200. data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +5076 -0
  201. data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +908 -0
  202. data/test/interopR2/clientNuSOAP.rb +19 -0
  203. data/test/interopR2/clientNuSOAP_Base.log +5076 -0
  204. data/test/interopR2/clientNuSOAP_GroupB.log +958 -0
  205. data/test/interopR2/clientNuWave.rb +15 -0
  206. data/test/interopR2/clientNuWave_Base.log +2019 -0
  207. data/test/interopR2/clientOpenLink.rb +15 -0
  208. data/test/interopR2/clientOpenLink_Base.log +6171 -0
  209. data/test/interopR2/clientOpenLink_GroupB.log +1094 -0
  210. data/test/interopR2/clientOracle.rb +15 -0
  211. data/test/interopR2/clientOracle_Base.log +5594 -0
  212. data/test/interopR2/clientPEAR.rb +18 -0
  213. data/test/interopR2/clientPEAR_Base.log +6261 -0
  214. data/test/interopR2/clientPEAR_GroupB.log +1106 -0
  215. data/test/interopR2/clientPhalanx.rb +18 -0
  216. data/test/interopR2/clientPhalanx_Base.log +41036 -0
  217. data/test/interopR2/clientPhalanx_GroupB.log +6519 -0
  218. data/test/interopR2/clientSIMACE.rb +18 -0
  219. data/test/interopR2/clientSIMACE_Base.log +6171 -0
  220. data/test/interopR2/clientSIMACE_GroupB.log +1093 -0
  221. data/test/interopR2/clientSOAP4R.rb +18 -0
  222. data/test/interopR2/clientSOAP4R.rb.result +3409 -0
  223. data/test/interopR2/clientSOAP4R_Base.log +6366 -0
  224. data/test/interopR2/clientSOAP4R_GroupB.log +1112 -0
  225. data/test/interopR2/clientSOAP__Lite.rb +14 -0
  226. data/test/interopR2/clientSQLData.rb +18 -0
  227. data/test/interopR2/clientSQLData_Base.log +4857 -0
  228. data/test/interopR2/clientSQLData_GroupB.log +770 -0
  229. data/test/interopR2/clientSilverStream.rb +17 -0
  230. data/test/interopR2/clientSilverStream_Base.log +3171 -0
  231. data/test/interopR2/clientSpray2001.rb +17 -0
  232. data/test/interopR2/clientSpray2001_Base.log +8187 -0
  233. data/test/interopR2/clientSpray2001_GroupB.log +1408 -0
  234. data/test/interopR2/clientSun.rb +19 -0
  235. data/test/interopR2/clientSun_Base.log +4641 -0
  236. data/test/interopR2/clientSun_GroupB.log +856 -0
  237. data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
  238. data/test/interopR2/clientVWOpentalkSoap_Base.log +5402 -0
  239. data/test/interopR2/clientVWOpentalkSoap_GroupB.log +972 -0
  240. data/test/interopR2/clientWASP.rb +19 -0
  241. data/test/interopR2/clientWASPC.rb +18 -0
  242. data/test/interopR2/clientWASPC_Base.log +4187 -0
  243. data/test/interopR2/clientWASPC_GroupB.log +763 -0
  244. data/test/interopR2/clientWASP_Base.log +5414 -0
  245. data/test/interopR2/clientWASP_GroupB.log +970 -0
  246. data/test/interopR2/clientWebMethods.rb +15 -0
  247. data/test/interopR2/clientWebMethods_Base.log +3075 -0
  248. data/test/interopR2/clientWebMethods_GroupB.log +483 -0
  249. data/test/interopR2/clientWhiteMesa.rb +28 -0
  250. data/test/interopR2/clientWhiteMesa_Base.log +4359 -0
  251. data/test/interopR2/clientWhiteMesa_GroupB.log +808 -0
  252. data/test/interopR2/clientWingfoot.rb +15 -0
  253. data/test/interopR2/clientWingfoot_Base.log +4445 -0
  254. data/test/interopR2/clientWingfoot_GroupB.log +848 -0
  255. data/test/interopR2/clientXMLBus.rb +19 -0
  256. data/test/interopR2/clientXMLBus_Base.log +3075 -0
  257. data/test/interopR2/clientXMLBus_GroupB.log +483 -0
  258. data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
  259. data/test/interopR2/clientXSOAP.rb +14 -0
  260. data/test/interopR2/clientXSOAP_Base.log +4445 -0
  261. data/test/interopR2/clientZSI.rb +19 -0
  262. data/test/interopR2/clienteSOAP.rb +18 -0
  263. data/test/interopR2/clienteSOAP_Base.log +8728 -0
  264. data/test/interopR2/clientgSOAP.rb +18 -0
  265. data/test/interopR2/clientgSOAP_Base.log +4689 -0
  266. data/test/interopR2/clientgSOAP_GroupB.log +1014 -0
  267. data/test/interopR2/clientkSOAP.rb +17 -0
  268. data/test/interopR2/clientkSOAP_Base.log +5625 -0
  269. data/test/interopR2/iSimonReg.rb +112 -0
  270. data/test/interopR2/interopResultBase.rb +114 -0
  271. data/test/interopR2/interopService.rb +247 -0
  272. data/test/interopR2/result_client.NetRemoting.txt +4593 -0
  273. data/test/interopR2/rwikiInteropService.rb +105 -0
  274. data/test/interopR2/server.cgi +270 -0
  275. data/test/interopR2/server.rb +274 -0
  276. data/test/interopR2/simonReg.rb +123 -0
  277. data/test/interopR2/test.sh +49 -0
  278. data/test/interopR4/client.rb +112 -0
  279. data/test/runner.rb +9 -0
  280. data/test/sm11/classDef.rb +156 -0
  281. data/test/sm11/client.rb +542 -0
  282. data/test/sm11/driver.rb +183 -0
  283. data/test/sm11/servant.rb +1067 -0
  284. data/test/sm11/server.rb +25 -0
  285. data/test/soap/asp.net/hello.wsdl +96 -0
  286. data/test/soap/asp.net/test_aspdotnet.rb +112 -0
  287. data/test/soap/calc/calc.rb +17 -0
  288. data/test/soap/calc/calc2.rb +29 -0
  289. data/test/soap/calc/server.cgi +13 -0
  290. data/test/soap/calc/server.rb +17 -0
  291. data/test/soap/calc/server2.rb +20 -0
  292. data/test/soap/calc/test_calc.rb +49 -0
  293. data/test/soap/calc/test_calc2.rb +53 -0
  294. data/test/soap/calc/test_calc_cgi.rb +69 -0
  295. data/test/soap/fault/test_customfault.rb +58 -0
  296. data/test/soap/header/server.cgi +119 -0
  297. data/test/soap/header/test_authheader.rb +240 -0
  298. data/test/soap/header/test_authheader_cgi.rb +121 -0
  299. data/test/soap/header/test_simplehandler.rb +116 -0
  300. data/test/soap/helloworld/hw_s.rb +16 -0
  301. data/test/soap/helloworld/test_helloworld.rb +41 -0
  302. data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
  303. data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
  304. data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
  305. data/test/soap/literalArrayMapping/test_definedarray.rb +36 -0
  306. data/test/soap/marshal/marshaltestlib.rb +494 -0
  307. data/test/soap/marshal/test_digraph.rb +56 -0
  308. data/test/soap/marshal/test_marshal.rb +26 -0
  309. data/test/soap/marshal/test_struct.rb +47 -0
  310. data/test/soap/ssl/README +1 -0
  311. data/test/soap/ssl/ca.cert +23 -0
  312. data/test/soap/ssl/client.cert +19 -0
  313. data/test/soap/ssl/client.key +15 -0
  314. data/test/soap/ssl/server.cert +19 -0
  315. data/test/soap/ssl/server.key +15 -0
  316. data/test/soap/ssl/sslsvr.rb +57 -0
  317. data/test/soap/ssl/subca.cert +21 -0
  318. data/test/soap/ssl/test_ssl.rb +245 -0
  319. data/test/soap/struct/test_struct.rb +77 -0
  320. data/test/soap/styleuse/client.rb +20 -0
  321. data/test/soap/styleuse/server.rb +86 -0
  322. data/test/soap/swa/test_file.rb +73 -0
  323. data/test/soap/test_basetype.rb +976 -0
  324. data/test/soap/test_custommap.rb +108 -0
  325. data/test/soap/test_empty.rb +79 -0
  326. data/test/soap/test_envelopenamespace.rb +92 -0
  327. data/test/soap/test_httpconfigloader.rb +39 -0
  328. data/test/soap/test_mapping.rb +59 -0
  329. data/test/soap/test_no_indent.rb +86 -0
  330. data/test/soap/test_property.rb +424 -0
  331. data/test/soap/test_response_as_xml.rb +95 -0
  332. data/test/soap/test_soapelement.rb +120 -0
  333. data/test/soap/test_streamhandler.rb +262 -0
  334. data/test/soap/test_styleuse.rb +333 -0
  335. data/test/soap/wsdlDriver/README.txt +2 -0
  336. data/test/soap/wsdlDriver/calc.wsdl +126 -0
  337. data/test/soap/wsdlDriver/document.wsdl +54 -0
  338. data/test/soap/wsdlDriver/echo_version.rb +29 -0
  339. data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
  340. data/test/soap/wsdlDriver/test_calc.rb +100 -0
  341. data/test/soap/wsdlDriver/test_document.rb +78 -0
  342. data/test/soap/wsdlDriver/test_simpletype.rb +87 -0
  343. data/test/wsdl/abstract/abstract.wsdl +97 -0
  344. data/test/wsdl/abstract/test_abstract.rb +130 -0
  345. data/test/wsdl/any/any.wsdl +51 -0
  346. data/test/wsdl/any/expectedDriver.rb +46 -0
  347. data/test/wsdl/any/expectedEcho.rb +18 -0
  348. data/test/wsdl/any/expectedService.rb +42 -0
  349. data/test/wsdl/any/test_any.rb +193 -0
  350. data/test/wsdl/axisArray/axisArray.wsdl +60 -0
  351. data/test/wsdl/axisArray/itemList.rb +14 -0
  352. data/test/wsdl/axisArray/test_axisarray.rb +69 -0
  353. data/test/wsdl/choice/choice.wsdl +91 -0
  354. data/test/wsdl/choice/test_choice.rb +134 -0
  355. data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
  356. data/test/wsdl/complexcontent/test_echo.rb +101 -0
  357. data/test/wsdl/datetime/DatetimeService.rb +44 -0
  358. data/test/wsdl/datetime/datetime.rb +0 -0
  359. data/test/wsdl/datetime/datetime.wsdl +45 -0
  360. data/test/wsdl/datetime/datetimeServant.rb +21 -0
  361. data/test/wsdl/datetime/test_datetime.rb +82 -0
  362. data/test/wsdl/document/array/double.wsdl +72 -0
  363. data/test/wsdl/document/array/test_array.rb +117 -0
  364. data/test/wsdl/document/document.wsdl +74 -0
  365. data/test/wsdl/document/number.wsdl +54 -0
  366. data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
  367. data/test/wsdl/document/test_nosoapaction.rb +109 -0
  368. data/test/wsdl/document/test_number.rb +99 -0
  369. data/test/wsdl/document/test_rpc.rb +211 -0
  370. data/test/wsdl/emptycomplextype.wsdl +31 -0
  371. data/test/wsdl/list/list.wsdl +93 -0
  372. data/test/wsdl/list/test_list.rb +134 -0
  373. data/test/wsdl/map/map.wsdl +92 -0
  374. data/test/wsdl/map/map.xml +43 -0
  375. data/test/wsdl/map/test_map.rb +99 -0
  376. data/test/wsdl/marshal/person.wsdl +21 -0
  377. data/test/wsdl/marshal/person_org.rb +18 -0
  378. data/test/wsdl/marshal/test_wsdlmarshal.rb +79 -0
  379. data/test/wsdl/multiplefault.wsdl +68 -0
  380. data/test/wsdl/overload/overload.wsdl +80 -0
  381. data/test/wsdl/overload/test_overload.rb +118 -0
  382. data/test/wsdl/qualified/lp.wsdl +47 -0
  383. data/test/wsdl/qualified/lp.xsd +26 -0
  384. data/test/wsdl/qualified/np.wsdl +51 -0
  385. data/test/wsdl/qualified/test_qualified.rb +145 -0
  386. data/test/wsdl/qualified/test_unqualified.rb +159 -0
  387. data/test/wsdl/raa/RAA.rb +120 -0
  388. data/test/wsdl/raa/RAAServant.rb +107 -0
  389. data/test/wsdl/raa/RAAService.rb +120 -0
  390. data/test/wsdl/raa/README.txt +8 -0
  391. data/test/wsdl/raa/raa.wsdl +264 -0
  392. data/test/wsdl/raa/server.rb +103 -0
  393. data/test/wsdl/raa/test_raa.rb +91 -0
  394. data/test/wsdl/ref/expectedProduct.rb +158 -0
  395. data/test/wsdl/ref/product.wsdl +147 -0
  396. data/test/wsdl/ref/test_ref.rb +289 -0
  397. data/test/wsdl/rpc/rpc.wsdl +83 -0
  398. data/test/wsdl/rpc/test-rpc-lit.wsdl +364 -0
  399. data/test/wsdl/rpc/test_rpc.rb +173 -0
  400. data/test/wsdl/rpc/test_rpc_lit.rb +407 -0
  401. data/test/wsdl/simplecontent/simplecontent.wsdl +83 -0
  402. data/test/wsdl/simplecontent/test_simplecontent.rb +116 -0
  403. data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
  404. data/test/wsdl/simpletype/rpc/expectedDriver.rb +55 -0
  405. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +19 -0
  406. data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
  407. data/test/wsdl/simpletype/rpc/expectedService.rb +51 -0
  408. data/test/wsdl/simpletype/rpc/rpc.wsdl +80 -0
  409. data/test/wsdl/simpletype/rpc/test_rpc.rb +62 -0
  410. data/test/wsdl/simpletype/simpletype.wsdl +95 -0
  411. data/test/wsdl/simpletype/test_simpletype.rb +99 -0
  412. data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
  413. data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
  414. data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +19 -0
  415. data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
  416. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +55 -0
  417. data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
  418. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +44 -0
  419. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +51 -0
  420. data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
  421. data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +31 -0
  422. data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
  423. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
  424. data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
  425. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +96 -0
  426. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +79 -0
  427. data/test/wsdl/soaptype/soaptype.wsdl +61 -0
  428. data/test/wsdl/soaptype/test_soaptype.rb +160 -0
  429. data/test/wsdl/test_emptycomplextype.rb +21 -0
  430. data/test/wsdl/test_fault.rb +50 -0
  431. data/test/wsdl/test_multiplefault.rb +39 -0
  432. data/test/xsd/codegen/test_classdef.rb +214 -0
  433. data/test/xsd/noencoding.xml +4 -0
  434. data/test/xsd/test_noencoding.rb +32 -0
  435. data/test/xsd/test_ns.rb +20 -0
  436. data/test/xsd/test_xmlschemaparser.rb +22 -0
  437. data/test/xsd/test_xsd.rb +1523 -0
  438. data/test/xsd/xmllang.xml +43 -0
  439. data/test/xsd/xmlschema.xml +12 -0
  440. metadata +539 -0
@@ -0,0 +1,1094 @@
1
+ File: clientOpenLink_GroupB.log - Wiredumps for SOAP4R client / OpenLink server.
2
+ Date: Sat Jul 23 21:11:54 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
8
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
9
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
10
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
11
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
12
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
13
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
14
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
15
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1676:in `doTestGroupB'
16
+ clientOpenLink.rb:14
17
+
18
+ ! CONNECTION CLOSED
19
+ Wire dump:
20
+
21
+ = Request
22
+
23
+ ! CONNECTION ESTABLISHED
24
+ POST /Interop HTTP/1.1
25
+ SOAPAction: "http://soapinterop.org/"
26
+ Content-Type: text/xml; charset=utf-8
27
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
28
+ Date: Sat Jul 23 21:11:55 JST 2005
29
+ Content-Length: 700
30
+ Host: demo.openlinksw.com:8890
31
+
32
+ <?xml version="1.0" encoding="utf-8" ?>
33
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
34
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
35
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
36
+ <env:Body>
37
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
38
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
39
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
40
+ xsi:type="n2:SOAPStruct">
41
+ <varString xsi:type="xsd:string">a</varString>
42
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
43
+ <varInt xsi:type="xsd:int">1</varInt>
44
+ </inputStruct>
45
+ </n1:echoStructAsSimpleTypes>
46
+ </env:Body>
47
+ </env:Envelope>
48
+
49
+ = Response
50
+
51
+ HTTP/1.1 404 File not found
52
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
53
+ Connection: Keep-Alive
54
+ Content-Type: text/html; charset=ISO-8859-1
55
+ Date: Sat, 23 Jul 2005 16:30:29 GMT
56
+ Accept-Ranges: bytes
57
+ Content-Length: 221
58
+
59
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
60
+ <html>
61
+ <head>
62
+ <title>Error HTTP/</title>
63
+ </head>
64
+ <body>
65
+ <h3>Error HTTP/</h3><pre>
66
+ The requested URL was not found
67
+ URI = '/Interop'
68
+ </pre></body>
69
+ </html>
70
+
71
+
72
+
73
+ ##########
74
+ # echoStructAsSimpleTypes (nil)
75
+
76
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
77
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
78
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
79
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
80
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
81
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
82
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
83
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
84
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1687:in `doTestGroupB'
85
+ clientOpenLink.rb:14
86
+
87
+ Wire dump:
88
+
89
+ = Request
90
+
91
+ POST /Interop HTTP/1.1
92
+ SOAPAction: "http://soapinterop.org/"
93
+ Content-Type: text/xml; charset=utf-8
94
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
95
+ Date: Sat Jul 23 21:11:55 JST 2005
96
+ Content-Length: 677
97
+ Host: demo.openlinksw.com:8890
98
+
99
+ <?xml version="1.0" encoding="utf-8" ?>
100
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
101
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
102
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
103
+ <env:Body>
104
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
105
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
106
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
107
+ xsi:type="n2:SOAPStruct">
108
+ <varString xsi:nil="true"></varString>
109
+ <varFloat xsi:nil="true"></varFloat>
110
+ <varInt xsi:nil="true"></varInt>
111
+ </inputStruct>
112
+ </n1:echoStructAsSimpleTypes>
113
+ </env:Body>
114
+ </env:Envelope>
115
+
116
+ = Response
117
+
118
+ HTTP/1.1 404 File not found
119
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
120
+ Connection: Keep-Alive
121
+ Content-Type: text/html; charset=ISO-8859-1
122
+ Date: Sat, 23 Jul 2005 16:30:30 GMT
123
+ Accept-Ranges: bytes
124
+ Content-Length: 221
125
+
126
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
127
+ <html>
128
+ <head>
129
+ <title>Error HTTP/</title>
130
+ </head>
131
+ <body>
132
+ <h3>Error HTTP/</h3><pre>
133
+ The requested URL was not found
134
+ URI = '/Interop'
135
+ </pre></body>
136
+ </html>
137
+
138
+
139
+
140
+ ##########
141
+ # echoSimpleTypesAsStruct
142
+
143
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
144
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
145
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
146
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
147
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
148
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
149
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
150
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
151
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1698:in `doTestGroupB'
152
+ clientOpenLink.rb:14
153
+
154
+ Wire dump:
155
+
156
+ = Request
157
+
158
+ POST /Interop HTTP/1.1
159
+ SOAPAction: "http://soapinterop.org/"
160
+ Content-Type: text/xml; charset=utf-8
161
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
162
+ Date: Sat Jul 23 21:11:56 JST 2005
163
+ Content-Length: 600
164
+ Host: demo.openlinksw.com:8890
165
+
166
+ <?xml version="1.0" encoding="utf-8" ?>
167
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
168
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
169
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
170
+ <env:Body>
171
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
172
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
173
+ <inputString xsi:type="xsd:string">a</inputString>
174
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
175
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
176
+ </n1:echoSimpleTypesAsStruct>
177
+ </env:Body>
178
+ </env:Envelope>
179
+
180
+ = Response
181
+
182
+ HTTP/1.1 404 File not found
183
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
184
+ Connection: Keep-Alive
185
+ Content-Type: text/html; charset=ISO-8859-1
186
+ Date: Sat, 23 Jul 2005 16:30:30 GMT
187
+ Accept-Ranges: bytes
188
+ Content-Length: 221
189
+
190
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
191
+ <html>
192
+ <head>
193
+ <title>Error HTTP/</title>
194
+ </head>
195
+ <body>
196
+ <h3>Error HTTP/</h3><pre>
197
+ The requested URL was not found
198
+ URI = '/Interop'
199
+ </pre></body>
200
+ </html>
201
+
202
+
203
+
204
+ ##########
205
+ # echoSimpleTypesAsStruct (nil)
206
+
207
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
208
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
209
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
210
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
211
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
212
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
213
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
214
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
215
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1708:in `doTestGroupB'
216
+ clientOpenLink.rb:14
217
+
218
+ Wire dump:
219
+
220
+ = Request
221
+
222
+ POST /Interop HTTP/1.1
223
+ SOAPAction: "http://soapinterop.org/"
224
+ Content-Type: text/xml; charset=utf-8
225
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
226
+ Date: Sat Jul 23 21:11:56 JST 2005
227
+ Content-Length: 577
228
+ Host: demo.openlinksw.com:8890
229
+
230
+ <?xml version="1.0" encoding="utf-8" ?>
231
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
232
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
233
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
234
+ <env:Body>
235
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
236
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
237
+ <inputString xsi:nil="true"></inputString>
238
+ <inputInteger xsi:nil="true"></inputInteger>
239
+ <inputFloat xsi:nil="true"></inputFloat>
240
+ </n1:echoSimpleTypesAsStruct>
241
+ </env:Body>
242
+ </env:Envelope>
243
+
244
+ = Response
245
+
246
+ HTTP/1.1 404 File not found
247
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
248
+ Connection: Keep-Alive
249
+ Content-Type: text/html; charset=ISO-8859-1
250
+ Date: Sat, 23 Jul 2005 16:30:31 GMT
251
+ Accept-Ranges: bytes
252
+ Content-Length: 221
253
+
254
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
255
+ <html>
256
+ <head>
257
+ <title>Error HTTP/</title>
258
+ </head>
259
+ <body>
260
+ <h3>Error HTTP/</h3><pre>
261
+ The requested URL was not found
262
+ URI = '/Interop'
263
+ </pre></body>
264
+ </html>
265
+
266
+
267
+
268
+ ##########
269
+ # echo2DStringArray
270
+
271
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
272
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
273
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
274
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
275
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
276
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
277
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
278
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
279
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1747:in `doTestGroupB'
280
+ clientOpenLink.rb:14
281
+
282
+ Wire dump:
283
+
284
+ = Request
285
+
286
+ POST /Interop HTTP/1.1
287
+ SOAPAction: "http://soapinterop.org/"
288
+ Content-Type: text/xml; charset=utf-8
289
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
290
+ Date: Sat Jul 23 21:11:57 JST 2005
291
+ Content-Length: 889
292
+ Host: demo.openlinksw.com:8890
293
+
294
+ <?xml version="1.0" encoding="utf-8" ?>
295
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
296
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
297
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
298
+ <env:Body>
299
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
300
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
301
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
302
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
303
+ xsi:type="n2:ArrayOfString2D"
304
+ n3:arrayType="xsd:string[3,3]">
305
+ <item>r0c0</item>
306
+ <item>r1c0</item>
307
+ <item>r2c0</item>
308
+ <item>r0c1</item>
309
+ <item>r1c1</item>
310
+ <item>r2c1</item>
311
+ <item>r0c2</item>
312
+ <item>r1c2</item>
313
+ <item>r2c2</item>
314
+ </input2DStringArray>
315
+ </n1:echo2DStringArray>
316
+ </env:Body>
317
+ </env:Envelope>
318
+
319
+ = Response
320
+
321
+ HTTP/1.1 404 File not found
322
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
323
+ Connection: Keep-Alive
324
+ Content-Type: text/html; charset=ISO-8859-1
325
+ Date: Sat, 23 Jul 2005 16:30:31 GMT
326
+ Accept-Ranges: bytes
327
+ Content-Length: 221
328
+
329
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
330
+ <html>
331
+ <head>
332
+ <title>Error HTTP/</title>
333
+ </head>
334
+ <body>
335
+ <h3>Error HTTP/</h3><pre>
336
+ The requested URL was not found
337
+ URI = '/Interop'
338
+ </pre></body>
339
+ </html>
340
+
341
+
342
+
343
+ ##########
344
+ # echo2DStringArray (anyType array)
345
+
346
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
347
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
348
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
349
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
350
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
351
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
352
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
353
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
354
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1765:in `doTestGroupB'
355
+ clientOpenLink.rb:14
356
+
357
+ Wire dump:
358
+
359
+ = Request
360
+
361
+ POST /Interop HTTP/1.1
362
+ SOAPAction: "http://soapinterop.org/"
363
+ Content-Type: text/xml; charset=utf-8
364
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
365
+ Date: Sat Jul 23 21:11:57 JST 2005
366
+ Content-Length: 1088
367
+ Host: demo.openlinksw.com:8890
368
+
369
+ <?xml version="1.0" encoding="utf-8" ?>
370
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
371
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
372
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
373
+ <env:Body>
374
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
375
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
376
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
377
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
378
+ xsi:type="n2:ArrayOfString2D"
379
+ n3:arrayType="xsd:anyType[3,3]">
380
+ <item xsi:type="xsd:string">r0c0</item>
381
+ <item xsi:type="xsd:string">r0c1</item>
382
+ <item xsi:type="xsd:string">r0c2</item>
383
+ <item xsi:type="xsd:string">r1c0</item>
384
+ <item xsi:type="xsd:string">r1c1</item>
385
+ <item xsi:type="xsd:string">r1c2</item>
386
+ <item xsi:type="xsd:string">r2c0</item>
387
+ <item xsi:type="xsd:string">r0c1</item>
388
+ <item xsi:type="xsd:string">r2c2</item>
389
+ </input2DStringArray>
390
+ </n1:echo2DStringArray>
391
+ </env:Body>
392
+ </env:Envelope>
393
+
394
+ = Response
395
+
396
+ HTTP/1.1 404 File not found
397
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
398
+ Connection: Keep-Alive
399
+ Content-Type: text/html; charset=ISO-8859-1
400
+ Date: Sat, 23 Jul 2005 16:30:32 GMT
401
+ Accept-Ranges: bytes
402
+ Content-Length: 221
403
+
404
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
405
+ <html>
406
+ <head>
407
+ <title>Error HTTP/</title>
408
+ </head>
409
+ <body>
410
+ <h3>Error HTTP/</h3><pre>
411
+ The requested URL was not found
412
+ URI = '/Interop'
413
+ </pre></body>
414
+ </html>
415
+
416
+
417
+
418
+ ##########
419
+ # echo2DStringArray (multi-ref)
420
+
421
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
422
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
423
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
424
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
425
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
426
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
427
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
428
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
429
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
430
+ clientOpenLink.rb:14
431
+
432
+ Wire dump:
433
+
434
+ = Request
435
+
436
+ POST /Interop HTTP/1.1
437
+ SOAPAction: "http://soapinterop.org/"
438
+ Content-Type: text/xml; charset=utf-8
439
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
440
+ Date: Sat Jul 23 21:11:58 JST 2005
441
+ Content-Length: 1063
442
+ Host: demo.openlinksw.com:8890
443
+
444
+ <?xml version="1.0" encoding="utf-8" ?>
445
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
446
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
447
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
448
+ <env:Body>
449
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
450
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
451
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
452
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
453
+ xsi:type="n2:ArrayOfString2D"
454
+ n3:arrayType="xsd:string[3,3]">
455
+ <item>r0c0</item>
456
+ <item>r1c0</item>
457
+ <item href="#id-605680782"></item>
458
+ <item>r0c1</item>
459
+ <item>r1c1</item>
460
+ <item>r2c1</item>
461
+ <item href="#id-605680782"></item>
462
+ <item>r1c2</item>
463
+ <item>r2c2</item>
464
+ </input2DStringArray>
465
+ </n1:echo2DStringArray>
466
+ <item id="id-605680782"
467
+ xsi:type="xsd:string"
468
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
469
+ </env:Body>
470
+ </env:Envelope>
471
+
472
+ = Response
473
+
474
+ HTTP/1.1 404 File not found
475
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
476
+ Connection: Keep-Alive
477
+ Content-Type: text/html; charset=ISO-8859-1
478
+ Date: Sat, 23 Jul 2005 16:30:32 GMT
479
+ Accept-Ranges: bytes
480
+ Content-Length: 221
481
+
482
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
483
+ <html>
484
+ <head>
485
+ <title>Error HTTP/</title>
486
+ </head>
487
+ <body>
488
+ <h3>Error HTTP/</h3><pre>
489
+ The requested URL was not found
490
+ URI = '/Interop'
491
+ </pre></body>
492
+ </html>
493
+
494
+
495
+
496
+ ##########
497
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
498
+
499
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
500
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
501
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
502
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
503
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
504
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
505
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
506
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
507
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1852:in `doTestGroupB'
508
+ clientOpenLink.rb:14
509
+
510
+ Wire dump:
511
+
512
+ = Request
513
+
514
+ POST /Interop HTTP/1.1
515
+ SOAPAction: "http://soapinterop.org/"
516
+ Content-Type: text/xml; charset=utf-8
517
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
518
+ Date: Sat Jul 23 21:11:58 JST 2005
519
+ Content-Length: 1063
520
+ Host: demo.openlinksw.com:8890
521
+
522
+ <?xml version="1.0" encoding="utf-8" ?>
523
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
524
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
525
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
526
+ <env:Body>
527
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
528
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
529
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
530
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
531
+ xsi:type="n2:ArrayOfString2D"
532
+ n3:arrayType="xsd:string[3,3]">
533
+ <item>r0c0</item>
534
+ <item>r1c0</item>
535
+ <item href="#id-605713272"></item>
536
+ <item>r0c1</item>
537
+ <item>r1c1</item>
538
+ <item>r2c1</item>
539
+ <item href="#id-605713272"></item>
540
+ <item>r1c2</item>
541
+ <item>r2c2</item>
542
+ </input2DStringArray>
543
+ </n1:echo2DStringArray>
544
+ <item id="id-605713272"
545
+ xsi:type="xsd:string"
546
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
547
+ </env:Body>
548
+ </env:Envelope>
549
+
550
+ = Response
551
+
552
+ HTTP/1.1 404 File not found
553
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
554
+ Connection: Keep-Alive
555
+ Content-Type: text/html; charset=ISO-8859-1
556
+ Date: Sat, 23 Jul 2005 16:30:33 GMT
557
+ Accept-Ranges: bytes
558
+ Content-Length: 221
559
+
560
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
561
+ <html>
562
+ <head>
563
+ <title>Error HTTP/</title>
564
+ </head>
565
+ <body>
566
+ <h3>Error HTTP/</h3><pre>
567
+ The requested URL was not found
568
+ URI = '/Interop'
569
+ </pre></body>
570
+ </html>
571
+
572
+
573
+
574
+ ##########
575
+ # echoNestedStruct
576
+
577
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
578
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
579
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
580
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
581
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
582
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
583
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
584
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
585
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1882:in `doTestGroupB'
586
+ clientOpenLink.rb:14
587
+
588
+ Wire dump:
589
+
590
+ = Request
591
+
592
+ POST /Interop HTTP/1.1
593
+ SOAPAction: "http://soapinterop.org/"
594
+ Content-Type: text/xml; charset=utf-8
595
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
596
+ Date: Sat Jul 23 21:11:59 JST 2005
597
+ Content-Length: 920
598
+ Host: demo.openlinksw.com:8890
599
+
600
+ <?xml version="1.0" encoding="utf-8" ?>
601
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
602
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
603
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
604
+ <env:Body>
605
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
606
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
607
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
608
+ xsi:type="n2:SOAPStructStruct">
609
+ <varString xsi:type="xsd:string">a</varString>
610
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
611
+ <varInt xsi:type="xsd:int">1</varInt>
612
+ <varStruct xsi:type="n2:SOAPStruct">
613
+ <varString xsi:type="xsd:string">b</varString>
614
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
615
+ <varInt xsi:type="xsd:int">2</varInt>
616
+ </varStruct>
617
+ </inputStruct>
618
+ </n1:echoNestedStruct>
619
+ </env:Body>
620
+ </env:Envelope>
621
+
622
+ = Response
623
+
624
+ HTTP/1.1 404 File not found
625
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
626
+ Connection: Keep-Alive
627
+ Content-Type: text/html; charset=ISO-8859-1
628
+ Date: Sat, 23 Jul 2005 16:30:33 GMT
629
+ Accept-Ranges: bytes
630
+ Content-Length: 221
631
+
632
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
633
+ <html>
634
+ <head>
635
+ <title>Error HTTP/</title>
636
+ </head>
637
+ <body>
638
+ <h3>Error HTTP/</h3><pre>
639
+ The requested URL was not found
640
+ URI = '/Interop'
641
+ </pre></body>
642
+ </html>
643
+
644
+
645
+
646
+ ##########
647
+ # echoNestedStruct (nil)
648
+
649
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
650
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
651
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
652
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
653
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
654
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
655
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
656
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
657
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1894:in `doTestGroupB'
658
+ clientOpenLink.rb:14
659
+
660
+ Wire dump:
661
+
662
+ = Request
663
+
664
+ POST /Interop HTTP/1.1
665
+ SOAPAction: "http://soapinterop.org/"
666
+ Content-Type: text/xml; charset=utf-8
667
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
668
+ Date: Sat Jul 23 21:11:59 JST 2005
669
+ Content-Length: 874
670
+ Host: demo.openlinksw.com:8890
671
+
672
+ <?xml version="1.0" encoding="utf-8" ?>
673
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
674
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
675
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
676
+ <env:Body>
677
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
678
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
679
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
680
+ xsi:type="n2:SOAPStructStruct">
681
+ <varString xsi:nil="true"></varString>
682
+ <varFloat xsi:nil="true"></varFloat>
683
+ <varInt xsi:nil="true"></varInt>
684
+ <varStruct xsi:type="n2:SOAPStruct">
685
+ <varString xsi:nil="true"></varString>
686
+ <varFloat xsi:nil="true"></varFloat>
687
+ <varInt xsi:nil="true"></varInt>
688
+ </varStruct>
689
+ </inputStruct>
690
+ </n1:echoNestedStruct>
691
+ </env:Body>
692
+ </env:Envelope>
693
+
694
+ = Response
695
+
696
+ HTTP/1.1 404 File not found
697
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
698
+ Connection: Keep-Alive
699
+ Content-Type: text/html; charset=ISO-8859-1
700
+ Date: Sat, 23 Jul 2005 16:30:34 GMT
701
+ Accept-Ranges: bytes
702
+ Content-Length: 221
703
+
704
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
705
+ <html>
706
+ <head>
707
+ <title>Error HTTP/</title>
708
+ </head>
709
+ <body>
710
+ <h3>Error HTTP/</h3><pre>
711
+ The requested URL was not found
712
+ URI = '/Interop'
713
+ </pre></body>
714
+ </html>
715
+
716
+
717
+
718
+ ##########
719
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
720
+
721
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
722
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
723
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
724
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
725
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
726
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
727
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
728
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
729
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1907:in `doTestGroupB'
730
+ clientOpenLink.rb:14
731
+
732
+ Wire dump:
733
+
734
+ = Request
735
+
736
+ POST /Interop HTTP/1.1
737
+ SOAPAction: "http://soapinterop.org/"
738
+ Content-Type: text/xml; charset=utf-8
739
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
740
+ Date: Sat Jul 23 21:12:00 JST 2005
741
+ Content-Length: 1062
742
+ Host: demo.openlinksw.com:8890
743
+
744
+ <?xml version="1.0" encoding="utf-8" ?>
745
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
746
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
747
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
748
+ <env:Body>
749
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
750
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
751
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
752
+ xsi:type="n2:SOAPStructStruct">
753
+ <varString href="#id-605748842"></varString>
754
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
755
+ <varInt xsi:type="xsd:int">1</varInt>
756
+ <varStruct xsi:type="n2:SOAPStruct">
757
+ <varString href="#id-605748842"></varString>
758
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
759
+ <varInt xsi:type="xsd:int">2</varInt>
760
+ </varStruct>
761
+ </inputStruct>
762
+ </n1:echoNestedStruct>
763
+ <varString id="id-605748842"
764
+ xsi:type="xsd:string"
765
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
766
+ </env:Body>
767
+ </env:Envelope>
768
+
769
+ = Response
770
+
771
+ HTTP/1.1 404 File not found
772
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
773
+ Connection: Keep-Alive
774
+ Content-Type: text/html; charset=ISO-8859-1
775
+ Date: Sat, 23 Jul 2005 16:30:34 GMT
776
+ Accept-Ranges: bytes
777
+ Content-Length: 221
778
+
779
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
780
+ <html>
781
+ <head>
782
+ <title>Error HTTP/</title>
783
+ </head>
784
+ <body>
785
+ <h3>Error HTTP/</h3><pre>
786
+ The requested URL was not found
787
+ URI = '/Interop'
788
+ </pre></body>
789
+ </html>
790
+
791
+
792
+
793
+ ##########
794
+ # echoNestedArray
795
+
796
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
797
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
798
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
799
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
800
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
801
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
802
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
803
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
804
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1917:in `doTestGroupB'
805
+ clientOpenLink.rb:14
806
+
807
+ Wire dump:
808
+
809
+ = Request
810
+
811
+ POST /Interop HTTP/1.1
812
+ SOAPAction: "http://soapinterop.org/"
813
+ Content-Type: text/xml; charset=utf-8
814
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
815
+ Date: Sat Jul 23 21:12:00 JST 2005
816
+ Content-Length: 931
817
+ Host: demo.openlinksw.com:8890
818
+
819
+ <?xml version="1.0" encoding="utf-8" ?>
820
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
821
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
822
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
823
+ <env:Body>
824
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
825
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
826
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
827
+ xsi:type="n2:SOAPArrayStruct">
828
+ <varString xsi:type="xsd:string">a</varString>
829
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
830
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
831
+ xsi:type="n3:Array"
832
+ n3:arrayType="xsd:string[3]">
833
+ <item>2</item>
834
+ <item>2.2</item>
835
+ <item>b</item>
836
+ </varArray>
837
+ <varInt xsi:type="xsd:int">1</varInt>
838
+ </inputStruct>
839
+ </n1:echoNestedArray>
840
+ </env:Body>
841
+ </env:Envelope>
842
+
843
+ = Response
844
+
845
+ HTTP/1.1 404 File not found
846
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
847
+ Connection: Keep-Alive
848
+ Content-Type: text/html; charset=ISO-8859-1
849
+ Date: Sat, 23 Jul 2005 16:30:35 GMT
850
+ Accept-Ranges: bytes
851
+ Content-Length: 221
852
+
853
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
854
+ <html>
855
+ <head>
856
+ <title>Error HTTP/</title>
857
+ </head>
858
+ <body>
859
+ <h3>Error HTTP/</h3><pre>
860
+ The requested URL was not found
861
+ URI = '/Interop'
862
+ </pre></body>
863
+ </html>
864
+
865
+
866
+
867
+ ##########
868
+ # echoNestedArray (anyType array)
869
+
870
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
871
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
872
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
873
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
874
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
875
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
876
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
877
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
878
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
879
+ clientOpenLink.rb:14
880
+
881
+ Wire dump:
882
+
883
+ = Request
884
+
885
+ POST /Interop HTTP/1.1
886
+ SOAPAction: "http://soapinterop.org/"
887
+ Content-Type: text/xml; charset=utf-8
888
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
889
+ Date: Sat Jul 23 21:12:01 JST 2005
890
+ Content-Length: 998
891
+ Host: demo.openlinksw.com:8890
892
+
893
+ <?xml version="1.0" encoding="utf-8" ?>
894
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
895
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
896
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
897
+ <env:Body>
898
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
899
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
900
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
901
+ xsi:type="n2:SOAPArrayStruct">
902
+ <varString xsi:type="xsd:string">a</varString>
903
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
904
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
905
+ xsi:type="n3:Array"
906
+ n3:arrayType="xsd:anyType[3]">
907
+ <item xsi:type="xsd:string">2</item>
908
+ <item xsi:type="xsd:string">2.2</item>
909
+ <item xsi:type="xsd:string">b</item>
910
+ </varArray>
911
+ <varInt xsi:type="xsd:int">1</varInt>
912
+ </inputStruct>
913
+ </n1:echoNestedArray>
914
+ </env:Body>
915
+ </env:Envelope>
916
+
917
+ = Response
918
+
919
+ HTTP/1.1 404 File not found
920
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
921
+ Connection: Keep-Alive
922
+ Content-Type: text/html; charset=ISO-8859-1
923
+ Date: Sat, 23 Jul 2005 16:30:35 GMT
924
+ Accept-Ranges: bytes
925
+ Content-Length: 221
926
+
927
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
928
+ <html>
929
+ <head>
930
+ <title>Error HTTP/</title>
931
+ </head>
932
+ <body>
933
+ <h3>Error HTTP/</h3><pre>
934
+ The requested URL was not found
935
+ URI = '/Interop'
936
+ </pre></body>
937
+ </html>
938
+
939
+
940
+
941
+ ##########
942
+ # echoNestedArray (multi-ref)
943
+
944
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
945
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
946
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
947
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
948
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
949
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
950
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
951
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
952
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1938:in `doTestGroupB'
953
+ clientOpenLink.rb:14
954
+
955
+ Wire dump:
956
+
957
+ = Request
958
+
959
+ POST /Interop HTTP/1.1
960
+ SOAPAction: "http://soapinterop.org/"
961
+ Content-Type: text/xml; charset=utf-8
962
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
963
+ Date: Sat Jul 23 21:12:01 JST 2005
964
+ Content-Length: 1093
965
+ Host: demo.openlinksw.com:8890
966
+
967
+ <?xml version="1.0" encoding="utf-8" ?>
968
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
969
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
970
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
971
+ <env:Body>
972
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
973
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
974
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
975
+ xsi:type="n2:SOAPArrayStruct">
976
+ <varString href="#id-605781982"></varString>
977
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
978
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
979
+ xsi:type="n3:Array"
980
+ n3:arrayType="xsd:string[3]">
981
+ <item>2</item>
982
+ <item href="#id-605781982"></item>
983
+ <item>b</item>
984
+ </varArray>
985
+ <varInt xsi:type="xsd:int">1</varInt>
986
+ </inputStruct>
987
+ </n1:echoNestedArray>
988
+ <varString id="id-605781982"
989
+ xsi:type="xsd:string"
990
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
991
+ </env:Body>
992
+ </env:Envelope>
993
+
994
+ = Response
995
+
996
+ HTTP/1.1 404 File not found
997
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
998
+ Connection: Keep-Alive
999
+ Content-Type: text/html; charset=ISO-8859-1
1000
+ Date: Sat, 23 Jul 2005 16:30:36 GMT
1001
+ Accept-Ranges: bytes
1002
+ Content-Length: 221
1003
+
1004
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
1005
+ <html>
1006
+ <head>
1007
+ <title>Error HTTP/</title>
1008
+ </head>
1009
+ <body>
1010
+ <h3>Error HTTP/</h3><pre>
1011
+ The requested URL was not found
1012
+ URI = '/Interop'
1013
+ </pre></body>
1014
+ </html>
1015
+
1016
+
1017
+
1018
+ ##########
1019
+ # echoNestedArray (multi-ref: varString == varArray[1])
1020
+
1021
+ Result: Exception: 404: File not found (SOAP::HTTPStreamError)
1022
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
1023
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
1024
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
1025
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1026
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1027
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
1028
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
1029
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1949:in `doTestGroupB'
1030
+ clientOpenLink.rb:14
1031
+
1032
+ Wire dump:
1033
+
1034
+ = Request
1035
+
1036
+ POST /Interop HTTP/1.1
1037
+ SOAPAction: "http://soapinterop.org/"
1038
+ Content-Type: text/xml; charset=utf-8
1039
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1040
+ Date: Sat Jul 23 21:12:02 JST 2005
1041
+ Content-Length: 1093
1042
+ Host: demo.openlinksw.com:8890
1043
+
1044
+ <?xml version="1.0" encoding="utf-8" ?>
1045
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1046
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1047
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1048
+ <env:Body>
1049
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1050
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1051
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1052
+ xsi:type="n2:SOAPArrayStruct">
1053
+ <varString href="#id-605793462"></varString>
1054
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
1055
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1056
+ xsi:type="n3:Array"
1057
+ n3:arrayType="xsd:string[3]">
1058
+ <item>2</item>
1059
+ <item href="#id-605793462"></item>
1060
+ <item>b</item>
1061
+ </varArray>
1062
+ <varInt xsi:type="xsd:int">1</varInt>
1063
+ </inputStruct>
1064
+ </n1:echoNestedArray>
1065
+ <varString id="id-605793462"
1066
+ xsi:type="xsd:string"
1067
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
1068
+ </env:Body>
1069
+ </env:Envelope>
1070
+
1071
+ = Response
1072
+
1073
+ HTTP/1.1 404 File not found
1074
+ Server: Virtuoso/04.00.2807 (Linux) i686-pc-linux-gnu Mono ECMA-CLI 1.1.6, Java VM 1.4 and PHP4
1075
+ Connection: Keep-Alive
1076
+ Content-Type: text/html; charset=ISO-8859-1
1077
+ Date: Sat, 23 Jul 2005 16:30:36 GMT
1078
+ Accept-Ranges: bytes
1079
+ Content-Length: 221
1080
+
1081
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
1082
+ <html>
1083
+ <head>
1084
+ <title>Error HTTP/</title>
1085
+ </head>
1086
+ <body>
1087
+ <h3>Error HTTP/</h3><pre>
1088
+ The requested URL was not found
1089
+ URI = '/Interop'
1090
+ </pre></body>
1091
+ </html>
1092
+
1093
+
1094
+