soap4r 1.5.5.20061022

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,1076 @@
1
+ File: clientEasySoap_GroupB.log - Wiredumps for SOAP4R client / EasySoap++ server.
2
+ Date: Sat Jul 23 20:23:03 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: OK
8
+
9
+ Wire dump:
10
+
11
+ = Request
12
+
13
+ ! CONNECTION ESTABLISHED
14
+ POST /cgi-bin/interopserver HTTP/1.1
15
+ SOAPAction: "http://soapinterop.org/"
16
+ Content-Type: text/xml; charset=utf-8
17
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
18
+ Date: Sat Jul 23 20:23:04 JST 2005
19
+ Content-Length: 700
20
+ Host: easysoap.sourceforge.net
21
+
22
+ <?xml version="1.0" encoding="utf-8" ?>
23
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
24
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
25
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
26
+ <env:Body>
27
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
28
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
29
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
30
+ xsi:type="n2:SOAPStruct">
31
+ <varString xsi:type="xsd:string">a</varString>
32
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
33
+ <varInt xsi:type="xsd:int">1</varInt>
34
+ </inputStruct>
35
+ </n1:echoStructAsSimpleTypes>
36
+ </env:Body>
37
+ </env:Envelope>
38
+
39
+ = Response
40
+
41
+ HTTP/1.1 200 OK
42
+ Date: Sat, 23 Jul 2005 11:24:48 GMT
43
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
44
+ SOAPServer: EasySoap++/0.6
45
+ Content-Length: 591
46
+ Connection: close
47
+ Content-Type: text/xml; charset="UTF-8"
48
+
49
+ <E:Envelope
50
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
51
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
52
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
53
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
54
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
55
+ <E:Body>
56
+ <m:echoStructAsSimpleTypesResponse
57
+ xmlns:m="http://soapinterop.org/">
58
+ <outputString
59
+ s:type="y:string">a</outputString>
60
+ <outputInteger
61
+ s:type="y:int">1</outputInteger>
62
+ <outputFloat
63
+ s:type="y:float">1.10000002</outputFloat>
64
+ </m:echoStructAsSimpleTypesResponse>
65
+ </E:Body>
66
+ </E:Envelope>
67
+ ! CONNECTION CLOSED
68
+
69
+
70
+
71
+ ##########
72
+ # echoStructAsSimpleTypes (nil)
73
+
74
+ Result: Exception: Cannot convert null value to integer. (SOAP::FaultError)
75
+
76
+
77
+ Wire dump:
78
+
79
+ = Request
80
+
81
+ ! CONNECTION ESTABLISHED
82
+ POST /cgi-bin/interopserver HTTP/1.1
83
+ SOAPAction: "http://soapinterop.org/"
84
+ Content-Type: text/xml; charset=utf-8
85
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
86
+ Date: Sat Jul 23 20:23:04 JST 2005
87
+ Content-Length: 677
88
+ Host: easysoap.sourceforge.net
89
+
90
+ <?xml version="1.0" encoding="utf-8" ?>
91
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
92
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
93
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
94
+ <env:Body>
95
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
96
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
97
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
98
+ xsi:type="n2:SOAPStruct">
99
+ <varString xsi:nil="true"></varString>
100
+ <varFloat xsi:nil="true"></varFloat>
101
+ <varInt xsi:nil="true"></varInt>
102
+ </inputStruct>
103
+ </n1:echoStructAsSimpleTypes>
104
+ </env:Body>
105
+ </env:Envelope>
106
+
107
+ = Response
108
+
109
+ HTTP/1.1 500 Internal Server Error
110
+ Date: Sat, 23 Jul 2005 11:24:49 GMT
111
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
112
+ SOAPServer: EasySoap++/0.6
113
+ Content-Length: 433
114
+ Connection: close
115
+ Content-Type: text/xml; charset="UTF-8"
116
+
117
+ <SOAP-ENV:Envelope
118
+ xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
119
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
120
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
121
+ <SOAP-ENV:Body>
122
+ <SOAP-ENV:Fault>
123
+ <faultstring
124
+ xsi:type="xsd:string">Cannot convert null value to integer.</faultstring>
125
+ <faultcode
126
+ xsi:type="xsd:string">SOAP-ENV:Server</faultcode>
127
+ </SOAP-ENV:Fault>
128
+ </SOAP-ENV:Body>
129
+ </SOAP-ENV:Envelope>
130
+ ! CONNECTION CLOSED
131
+
132
+
133
+
134
+ ##########
135
+ # echoSimpleTypesAsStruct
136
+
137
+ Result: OK
138
+
139
+ Wire dump:
140
+
141
+ = Request
142
+
143
+ ! CONNECTION ESTABLISHED
144
+ POST /cgi-bin/interopserver HTTP/1.1
145
+ SOAPAction: "http://soapinterop.org/"
146
+ Content-Type: text/xml; charset=utf-8
147
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
148
+ Date: Sat Jul 23 20:23:05 JST 2005
149
+ Content-Length: 600
150
+ Host: easysoap.sourceforge.net
151
+
152
+ <?xml version="1.0" encoding="utf-8" ?>
153
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
154
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
155
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
156
+ <env:Body>
157
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
158
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
159
+ <inputString xsi:type="xsd:string">a</inputString>
160
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
161
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
162
+ </n1:echoSimpleTypesAsStruct>
163
+ </env:Body>
164
+ </env:Envelope>
165
+
166
+ = Response
167
+
168
+ HTTP/1.1 200 OK
169
+ Date: Sat, 23 Jul 2005 11:24:50 GMT
170
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
171
+ SOAPServer: EasySoap++/0.6
172
+ Content-Length: 653
173
+ Connection: close
174
+ Content-Type: text/xml; charset="UTF-8"
175
+
176
+ <E:Envelope
177
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
178
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
179
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
180
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
181
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
182
+ <E:Body>
183
+ <m:echoSimpleTypesAsStructResponse
184
+ xmlns:m="http://soapinterop.org/">
185
+ <return
186
+ s:type="ns1:SOAPStruct"
187
+ xmlns:ns1="http://soapinterop.org/xsd">
188
+ <varString
189
+ s:type="y:string">a</varString>
190
+ <varInt
191
+ s:type="y:int">1</varInt>
192
+ <varFloat
193
+ s:type="y:float">1.10000002</varFloat>
194
+ </return>
195
+ </m:echoSimpleTypesAsStructResponse>
196
+ </E:Body>
197
+ </E:Envelope>
198
+ ! CONNECTION CLOSED
199
+
200
+
201
+
202
+ ##########
203
+ # echoSimpleTypesAsStruct (nil)
204
+
205
+ Result: Exception: Cannot convert null value to integer. (SOAP::FaultError)
206
+
207
+
208
+ Wire dump:
209
+
210
+ = Request
211
+
212
+ ! CONNECTION ESTABLISHED
213
+ POST /cgi-bin/interopserver HTTP/1.1
214
+ SOAPAction: "http://soapinterop.org/"
215
+ Content-Type: text/xml; charset=utf-8
216
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
217
+ Date: Sat Jul 23 20:23:06 JST 2005
218
+ Content-Length: 577
219
+ Host: easysoap.sourceforge.net
220
+
221
+ <?xml version="1.0" encoding="utf-8" ?>
222
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
223
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
224
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
225
+ <env:Body>
226
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
227
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
228
+ <inputString xsi:nil="true"></inputString>
229
+ <inputInteger xsi:nil="true"></inputInteger>
230
+ <inputFloat xsi:nil="true"></inputFloat>
231
+ </n1:echoSimpleTypesAsStruct>
232
+ </env:Body>
233
+ </env:Envelope>
234
+
235
+ = Response
236
+
237
+ HTTP/1.1 500 Internal Server Error
238
+ Date: Sat, 23 Jul 2005 11:24:50 GMT
239
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
240
+ SOAPServer: EasySoap++/0.6
241
+ Content-Length: 433
242
+ Connection: close
243
+ Content-Type: text/xml; charset="UTF-8"
244
+
245
+ <SOAP-ENV:Envelope
246
+ xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
247
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
248
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
249
+ <SOAP-ENV:Body>
250
+ <SOAP-ENV:Fault>
251
+ <faultstring
252
+ xsi:type="xsd:string">Cannot convert null value to integer.</faultstring>
253
+ <faultcode
254
+ xsi:type="xsd:string">SOAP-ENV:Server</faultcode>
255
+ </SOAP-ENV:Fault>
256
+ </SOAP-ENV:Body>
257
+ </SOAP-ENV:Envelope>
258
+ ! CONNECTION CLOSED
259
+
260
+
261
+
262
+ ##########
263
+ # echo2DStringArray
264
+
265
+ Result: OK
266
+
267
+ Wire dump:
268
+
269
+ = Request
270
+
271
+ ! CONNECTION ESTABLISHED
272
+ POST /cgi-bin/interopserver HTTP/1.1
273
+ SOAPAction: "http://soapinterop.org/"
274
+ Content-Type: text/xml; charset=utf-8
275
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
276
+ Date: Sat Jul 23 20:23:07 JST 2005
277
+ Content-Length: 889
278
+ Host: easysoap.sourceforge.net
279
+
280
+ <?xml version="1.0" encoding="utf-8" ?>
281
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
282
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
283
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
284
+ <env:Body>
285
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
286
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
287
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
288
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
289
+ xsi:type="n2:ArrayOfString2D"
290
+ n3:arrayType="xsd:string[3,3]">
291
+ <item>r0c0</item>
292
+ <item>r1c0</item>
293
+ <item>r2c0</item>
294
+ <item>r0c1</item>
295
+ <item>r1c1</item>
296
+ <item>r2c1</item>
297
+ <item>r0c2</item>
298
+ <item>r1c2</item>
299
+ <item>r2c2</item>
300
+ </input2DStringArray>
301
+ </n1:echo2DStringArray>
302
+ </env:Body>
303
+ </env:Envelope>
304
+
305
+ = Response
306
+
307
+ HTTP/1.1 200 OK
308
+ Date: Sat, 23 Jul 2005 11:24:51 GMT
309
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
310
+ SOAPServer: EasySoap++/0.6
311
+ Content-Length: 659
312
+ Connection: close
313
+ Content-Type: text/xml; charset="UTF-8"
314
+
315
+ <E:Envelope
316
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
317
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
318
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
319
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
320
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
321
+ <E:Body>
322
+ <m:echo2DStringArrayResponse
323
+ xmlns:m="http://soapinterop.org/">
324
+ <return
325
+ s:type="A:Array"
326
+ A:arrayType="y:string[3,3]">
327
+ <item>r0c0</item>
328
+ <item>r1c0</item>
329
+ <item>r2c0</item>
330
+ <item>r0c1</item>
331
+ <item>r1c1</item>
332
+ <item>r2c1</item>
333
+ <item>r0c2</item>
334
+ <item>r1c2</item>
335
+ <item>r2c2</item>
336
+ </return>
337
+ </m:echo2DStringArrayResponse>
338
+ </E:Body>
339
+ </E:Envelope>
340
+ ! CONNECTION CLOSED
341
+
342
+
343
+
344
+ ##########
345
+ # echo2DStringArray (anyType array)
346
+
347
+ Result: OK
348
+
349
+ Wire dump:
350
+
351
+ = Request
352
+
353
+ ! CONNECTION ESTABLISHED
354
+ POST /cgi-bin/interopserver HTTP/1.1
355
+ SOAPAction: "http://soapinterop.org/"
356
+ Content-Type: text/xml; charset=utf-8
357
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
358
+ Date: Sat Jul 23 20:23:07 JST 2005
359
+ Content-Length: 1088
360
+ Host: easysoap.sourceforge.net
361
+
362
+ <?xml version="1.0" encoding="utf-8" ?>
363
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
364
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
365
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
366
+ <env:Body>
367
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
368
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
369
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
370
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
371
+ xsi:type="n2:ArrayOfString2D"
372
+ n3:arrayType="xsd:anyType[3,3]">
373
+ <item xsi:type="xsd:string">r0c0</item>
374
+ <item xsi:type="xsd:string">r0c1</item>
375
+ <item xsi:type="xsd:string">r0c2</item>
376
+ <item xsi:type="xsd:string">r1c0</item>
377
+ <item xsi:type="xsd:string">r1c1</item>
378
+ <item xsi:type="xsd:string">r1c2</item>
379
+ <item xsi:type="xsd:string">r2c0</item>
380
+ <item xsi:type="xsd:string">r0c1</item>
381
+ <item xsi:type="xsd:string">r2c2</item>
382
+ </input2DStringArray>
383
+ </n1:echo2DStringArray>
384
+ </env:Body>
385
+ </env:Envelope>
386
+
387
+ = Response
388
+
389
+ HTTP/1.1 200 OK
390
+ Date: Sat, 23 Jul 2005 11:24:52 GMT
391
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
392
+ SOAPServer: EasySoap++/0.6
393
+ Content-Length: 659
394
+ Connection: close
395
+ Content-Type: text/xml; charset="UTF-8"
396
+
397
+ <E:Envelope
398
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
399
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
400
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
401
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
402
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
403
+ <E:Body>
404
+ <m:echo2DStringArrayResponse
405
+ xmlns:m="http://soapinterop.org/">
406
+ <return
407
+ s:type="A:Array"
408
+ A:arrayType="y:string[3,3]">
409
+ <item>r0c0</item>
410
+ <item>r0c1</item>
411
+ <item>r0c2</item>
412
+ <item>r1c0</item>
413
+ <item>r1c1</item>
414
+ <item>r1c2</item>
415
+ <item>r2c0</item>
416
+ <item>r0c1</item>
417
+ <item>r2c2</item>
418
+ </return>
419
+ </m:echo2DStringArrayResponse>
420
+ </E:Body>
421
+ </E:Envelope>
422
+ ! CONNECTION CLOSED
423
+
424
+
425
+
426
+ ##########
427
+ # echo2DStringArray (multi-ref)
428
+
429
+ Result: Exception: execution expired (Timeout::Error)
430
+ /usr/local/lib/ruby/1.9/timeout.rb:44:in `initialize'
431
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1061:in `create_socket'
432
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1345:in `create_socket'
433
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1310:in `connect'
434
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1309:in `timeout'
435
+ /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
436
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1309:in `connect'
437
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1169:in `query'
438
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:891:in `query'
439
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:433:in `do_get_block'
440
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
441
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
442
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
443
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
444
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
445
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
446
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
447
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
448
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
449
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
450
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
451
+ clientEasySoap.rb:13
452
+
453
+ Wire dump:
454
+
455
+ = Request
456
+
457
+
458
+ ##########
459
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
460
+
461
+ Result: Expected = "String#-604986702" // Actual = "String#-604945562"
462
+
463
+ Wire dump:
464
+
465
+ = Request
466
+
467
+ ! CONNECTION ESTABLISHED
468
+ POST /cgi-bin/interopserver HTTP/1.1
469
+ SOAPAction: "http://soapinterop.org/"
470
+ Content-Type: text/xml; charset=utf-8
471
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
472
+ Date: Sat Jul 23 20:23:13 JST 2005
473
+ Content-Length: 1063
474
+ Host: easysoap.sourceforge.net
475
+
476
+ <?xml version="1.0" encoding="utf-8" ?>
477
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
478
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
479
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
480
+ <env:Body>
481
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
482
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
483
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
484
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
485
+ xsi:type="n2:ArrayOfString2D"
486
+ n3:arrayType="xsd:string[3,3]">
487
+ <item>r0c0</item>
488
+ <item>r1c0</item>
489
+ <item href="#id-605631962"></item>
490
+ <item>r0c1</item>
491
+ <item>r1c1</item>
492
+ <item>r2c1</item>
493
+ <item href="#id-605631962"></item>
494
+ <item>r1c2</item>
495
+ <item>r2c2</item>
496
+ </input2DStringArray>
497
+ </n1:echo2DStringArray>
498
+ <item id="id-605631962"
499
+ xsi:type="xsd:string"
500
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
501
+ </env:Body>
502
+ </env:Envelope>
503
+
504
+ = Response
505
+
506
+ HTTP/1.1 200 OK
507
+ Date: Sat, 23 Jul 2005 11:24:58 GMT
508
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
509
+ SOAPServer: EasySoap++/0.6
510
+ Content-Length: 659
511
+ Connection: close
512
+ Content-Type: text/xml; charset="UTF-8"
513
+
514
+ <E:Envelope
515
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
516
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
517
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
518
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
519
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
520
+ <E:Body>
521
+ <m:echo2DStringArrayResponse
522
+ xmlns:m="http://soapinterop.org/">
523
+ <return
524
+ s:type="A:Array"
525
+ A:arrayType="y:string[3,3]">
526
+ <item>r0c0</item>
527
+ <item>r1c0</item>
528
+ <item>item</item>
529
+ <item>r0c1</item>
530
+ <item>r1c1</item>
531
+ <item>r2c1</item>
532
+ <item>item</item>
533
+ <item>r1c2</item>
534
+ <item>r2c2</item>
535
+ </return>
536
+ </m:echo2DStringArrayResponse>
537
+ </E:Body>
538
+ </E:Envelope>
539
+ ! CONNECTION CLOSED
540
+
541
+
542
+
543
+ ##########
544
+ # echoNestedStruct
545
+
546
+ Result: OK
547
+
548
+ Wire dump:
549
+
550
+ = Request
551
+
552
+ ! CONNECTION ESTABLISHED
553
+ POST /cgi-bin/interopserver HTTP/1.1
554
+ SOAPAction: "http://soapinterop.org/"
555
+ Content-Type: text/xml; charset=utf-8
556
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
557
+ Date: Sat Jul 23 20:23:14 JST 2005
558
+ Content-Length: 920
559
+ Host: easysoap.sourceforge.net
560
+
561
+ <?xml version="1.0" encoding="utf-8" ?>
562
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
563
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
564
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
565
+ <env:Body>
566
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
567
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
568
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
569
+ xsi:type="n2:SOAPStructStruct">
570
+ <varStruct xsi:type="n2:SOAPStruct">
571
+ <varString xsi:type="xsd:string">b</varString>
572
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
573
+ <varInt xsi:type="xsd:int">2</varInt>
574
+ </varStruct>
575
+ <varString xsi:type="xsd:string">a</varString>
576
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
577
+ <varInt xsi:type="xsd:int">1</varInt>
578
+ </inputStruct>
579
+ </n1:echoNestedStruct>
580
+ </env:Body>
581
+ </env:Envelope>
582
+
583
+ = Response
584
+
585
+ HTTP/1.1 200 OK
586
+ Date: Sat, 23 Jul 2005 11:24:58 GMT
587
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
588
+ SOAPServer: EasySoap++/0.6
589
+ Content-Length: 833
590
+ Connection: close
591
+ Content-Type: text/xml; charset="UTF-8"
592
+
593
+ <E:Envelope
594
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
595
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
596
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
597
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
598
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
599
+ <E:Body>
600
+ <m:echoNestedStructResponse
601
+ xmlns:m="http://soapinterop.org/">
602
+ <return
603
+ s:type="ns1:SOAPStructStruct"
604
+ xmlns:ns1="http://soapinterop.org/xsd">
605
+ <varString
606
+ s:type="y:string">a</varString>
607
+ <varInt
608
+ s:type="y:int">1</varInt>
609
+ <varFloat
610
+ s:type="y:float">1.10000002</varFloat>
611
+ <varStruct
612
+ s:type="ns1:SOAPStruct">
613
+ <varString
614
+ s:type="y:string">b</varString>
615
+ <varInt
616
+ s:type="y:int">2</varInt>
617
+ <varFloat
618
+ s:type="y:float">2.20000005</varFloat>
619
+ </varStruct>
620
+ </return>
621
+ </m:echoNestedStructResponse>
622
+ </E:Body>
623
+ </E:Envelope>
624
+ ! CONNECTION CLOSED
625
+
626
+
627
+
628
+ ##########
629
+ # echoNestedStruct (nil)
630
+
631
+ Result: Exception: Cannot convert null value to integer. (SOAP::FaultError)
632
+
633
+
634
+ Wire dump:
635
+
636
+ = Request
637
+
638
+ ! CONNECTION ESTABLISHED
639
+ POST /cgi-bin/interopserver HTTP/1.1
640
+ SOAPAction: "http://soapinterop.org/"
641
+ Content-Type: text/xml; charset=utf-8
642
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
643
+ Date: Sat Jul 23 20:23:15 JST 2005
644
+ Content-Length: 874
645
+ Host: easysoap.sourceforge.net
646
+
647
+ <?xml version="1.0" encoding="utf-8" ?>
648
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
649
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
650
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
651
+ <env:Body>
652
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
653
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
654
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
655
+ xsi:type="n2:SOAPStructStruct">
656
+ <varStruct xsi:type="n2:SOAPStruct">
657
+ <varString xsi:nil="true"></varString>
658
+ <varFloat xsi:nil="true"></varFloat>
659
+ <varInt xsi:nil="true"></varInt>
660
+ </varStruct>
661
+ <varString xsi:nil="true"></varString>
662
+ <varFloat xsi:nil="true"></varFloat>
663
+ <varInt xsi:nil="true"></varInt>
664
+ </inputStruct>
665
+ </n1:echoNestedStruct>
666
+ </env:Body>
667
+ </env:Envelope>
668
+
669
+ = Response
670
+
671
+ HTTP/1.1 500 Internal Server Error
672
+ Date: Sat, 23 Jul 2005 11:24:59 GMT
673
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
674
+ SOAPServer: EasySoap++/0.6
675
+ Content-Length: 433
676
+ Connection: close
677
+ Content-Type: text/xml; charset="UTF-8"
678
+
679
+ <SOAP-ENV:Envelope
680
+ xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
681
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
682
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema">
683
+ <SOAP-ENV:Body>
684
+ <SOAP-ENV:Fault>
685
+ <faultstring
686
+ xsi:type="xsd:string">Cannot convert null value to integer.</faultstring>
687
+ <faultcode
688
+ xsi:type="xsd:string">SOAP-ENV:Server</faultcode>
689
+ </SOAP-ENV:Fault>
690
+ </SOAP-ENV:Body>
691
+ </SOAP-ENV:Envelope>
692
+ ! CONNECTION CLOSED
693
+
694
+
695
+
696
+ ##########
697
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
698
+
699
+ Result: Expected = "String#-605151282" // Actual = "String#-605152862"
700
+
701
+ Wire dump:
702
+
703
+ = Request
704
+
705
+ ! CONNECTION ESTABLISHED
706
+ POST /cgi-bin/interopserver HTTP/1.1
707
+ SOAPAction: "http://soapinterop.org/"
708
+ Content-Type: text/xml; charset=utf-8
709
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
710
+ Date: Sat Jul 23 20:23:15 JST 2005
711
+ Content-Length: 1062
712
+ Host: easysoap.sourceforge.net
713
+
714
+ <?xml version="1.0" encoding="utf-8" ?>
715
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
716
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
717
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
718
+ <env:Body>
719
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
720
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
721
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
722
+ xsi:type="n2:SOAPStructStruct">
723
+ <varStruct xsi:type="n2:SOAPStruct">
724
+ <varString href="#id-605110412"></varString>
725
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
726
+ <varInt xsi:type="xsd:int">2</varInt>
727
+ </varStruct>
728
+ <varString href="#id-605110412"></varString>
729
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
730
+ <varInt xsi:type="xsd:int">1</varInt>
731
+ </inputStruct>
732
+ </n1:echoNestedStruct>
733
+ <varString id="id-605110412"
734
+ xsi:type="xsd:string"
735
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
736
+ </env:Body>
737
+ </env:Envelope>
738
+
739
+ = Response
740
+
741
+ HTTP/1.1 200 OK
742
+ Date: Sat, 23 Jul 2005 11:25:00 GMT
743
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
744
+ SOAPServer: EasySoap++/0.6
745
+ Content-Length: 831
746
+ Connection: close
747
+ Content-Type: text/xml; charset="UTF-8"
748
+
749
+ <E:Envelope
750
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
751
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
752
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
753
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
754
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
755
+ <E:Body>
756
+ <m:echoNestedStructResponse
757
+ xmlns:m="http://soapinterop.org/">
758
+ <return
759
+ s:type="ns1:SOAPStructStruct"
760
+ xmlns:ns1="http://soapinterop.org/xsd">
761
+ <varString
762
+ s:type="y:string"></varString>
763
+ <varInt
764
+ s:type="y:int">1</varInt>
765
+ <varFloat
766
+ s:type="y:float">1.10000002</varFloat>
767
+ <varStruct
768
+ s:type="ns1:SOAPStruct">
769
+ <varString
770
+ s:type="y:string"></varString>
771
+ <varInt
772
+ s:type="y:int">2</varInt>
773
+ <varFloat
774
+ s:type="y:float">2.20000005</varFloat>
775
+ </varStruct>
776
+ </return>
777
+ </m:echoNestedStructResponse>
778
+ </E:Body>
779
+ </E:Envelope>
780
+ ! CONNECTION CLOSED
781
+
782
+
783
+
784
+ ##########
785
+ # echoNestedArray
786
+
787
+ Result: OK
788
+
789
+ Wire dump:
790
+
791
+ = Request
792
+
793
+ ! CONNECTION ESTABLISHED
794
+ POST /cgi-bin/interopserver HTTP/1.1
795
+ SOAPAction: "http://soapinterop.org/"
796
+ Content-Type: text/xml; charset=utf-8
797
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
798
+ Date: Sat Jul 23 20:23:16 JST 2005
799
+ Content-Length: 931
800
+ Host: easysoap.sourceforge.net
801
+
802
+ <?xml version="1.0" encoding="utf-8" ?>
803
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
804
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
805
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
806
+ <env:Body>
807
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
808
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
809
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
810
+ xsi:type="n2:SOAPArrayStruct">
811
+ <varString xsi:type="xsd:string">a</varString>
812
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
813
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
814
+ xsi:type="n3:Array"
815
+ n3:arrayType="xsd:string[3]">
816
+ <item>2</item>
817
+ <item>2.2</item>
818
+ <item>b</item>
819
+ </varArray>
820
+ <varInt xsi:type="xsd:int">1</varInt>
821
+ </inputStruct>
822
+ </n1:echoNestedArray>
823
+ </env:Body>
824
+ </env:Envelope>
825
+
826
+ = Response
827
+
828
+ HTTP/1.1 200 OK
829
+ Date: Sat, 23 Jul 2005 11:25:01 GMT
830
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
831
+ SOAPServer: EasySoap++/0.6
832
+ Content-Length: 764
833
+ Connection: close
834
+ Content-Type: text/xml; charset="UTF-8"
835
+
836
+ <E:Envelope
837
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
838
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
839
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
840
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
841
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
842
+ <E:Body>
843
+ <m:echoNestedArrayResponse
844
+ xmlns:m="http://soapinterop.org/">
845
+ <return
846
+ s:type="ns1:SOAPArrayStruct"
847
+ xmlns:ns1="http://soapinterop.org/xsd">
848
+ <varString
849
+ s:type="y:string">a</varString>
850
+ <varInt
851
+ s:type="y:int">1</varInt>
852
+ <varFloat
853
+ s:type="y:float">1.10000002</varFloat>
854
+ <varArray
855
+ s:type="A:Array"
856
+ A:arrayType="y:string[3]">
857
+ <item>2</item>
858
+ <item>2.2</item>
859
+ <item>b</item>
860
+ </varArray>
861
+ </return>
862
+ </m:echoNestedArrayResponse>
863
+ </E:Body>
864
+ </E:Envelope>
865
+ ! CONNECTION CLOSED
866
+
867
+
868
+
869
+ ##########
870
+ # echoNestedArray (anyType array)
871
+
872
+ Result: Exception: execution expired (Timeout::Error)
873
+ /usr/local/lib/ruby/1.9/timeout.rb:44:in `initialize'
874
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1061:in `create_socket'
875
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1345:in `create_socket'
876
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1310:in `connect'
877
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1309:in `timeout'
878
+ /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
879
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1309:in `connect'
880
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1169:in `query'
881
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:891:in `query'
882
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:433:in `do_get_block'
883
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
884
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
885
+ /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
886
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
887
+ /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
888
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
889
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
890
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
891
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
892
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
893
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
894
+ clientEasySoap.rb:13
895
+
896
+ Wire dump:
897
+
898
+ = Request
899
+
900
+
901
+ ##########
902
+ # echoNestedArray (multi-ref)
903
+
904
+ Result: OK
905
+
906
+ Wire dump:
907
+
908
+ = Request
909
+
910
+ ! CONNECTION ESTABLISHED
911
+ POST /cgi-bin/interopserver HTTP/1.1
912
+ SOAPAction: "http://soapinterop.org/"
913
+ Content-Type: text/xml; charset=utf-8
914
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
915
+ Date: Sat Jul 23 20:23:22 JST 2005
916
+ Content-Length: 1093
917
+ Host: easysoap.sourceforge.net
918
+
919
+ <?xml version="1.0" encoding="utf-8" ?>
920
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
921
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
922
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
923
+ <env:Body>
924
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
925
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
926
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
927
+ xsi:type="n2:SOAPArrayStruct">
928
+ <varString href="#id-605218022"></varString>
929
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
930
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
931
+ xsi:type="n3:Array"
932
+ n3:arrayType="xsd:string[3]">
933
+ <item>2</item>
934
+ <item href="#id-605218022"></item>
935
+ <item>b</item>
936
+ </varArray>
937
+ <varInt xsi:type="xsd:int">1</varInt>
938
+ </inputStruct>
939
+ </n1:echoNestedArray>
940
+ <varString id="id-605218022"
941
+ xsi:type="xsd:string"
942
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
943
+ </env:Body>
944
+ </env:Envelope>
945
+
946
+ = Response
947
+
948
+ HTTP/1.1 200 OK
949
+ Date: Sat, 23 Jul 2005 11:25:06 GMT
950
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
951
+ SOAPServer: EasySoap++/0.6
952
+ Content-Length: 760
953
+ Connection: close
954
+ Content-Type: text/xml; charset="UTF-8"
955
+
956
+ <E:Envelope
957
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
958
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
959
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
960
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
961
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
962
+ <E:Body>
963
+ <m:echoNestedArrayResponse
964
+ xmlns:m="http://soapinterop.org/">
965
+ <return
966
+ s:type="ns1:SOAPArrayStruct"
967
+ xmlns:ns1="http://soapinterop.org/xsd">
968
+ <varString
969
+ s:type="y:string"></varString>
970
+ <varInt
971
+ s:type="y:int">1</varInt>
972
+ <varFloat
973
+ s:type="y:float">1.10000002</varFloat>
974
+ <varArray
975
+ s:type="A:Array"
976
+ A:arrayType="y:string[3]">
977
+ <item>2</item>
978
+ <item></item>
979
+ <item>b</item>
980
+ </varArray>
981
+ </return>
982
+ </m:echoNestedArrayResponse>
983
+ </E:Body>
984
+ </E:Envelope>
985
+ ! CONNECTION CLOSED
986
+
987
+
988
+
989
+ ##########
990
+ # echoNestedArray (multi-ref: varString == varArray[1])
991
+
992
+ Result: Expected = "String#-605311052" // Actual = "String#-605312202"
993
+
994
+ Wire dump:
995
+
996
+ = Request
997
+
998
+ ! CONNECTION ESTABLISHED
999
+ POST /cgi-bin/interopserver HTTP/1.1
1000
+ SOAPAction: "http://soapinterop.org/"
1001
+ Content-Type: text/xml; charset=utf-8
1002
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1003
+ Date: Sat Jul 23 20:23:22 JST 2005
1004
+ Content-Length: 1093
1005
+ Host: easysoap.sourceforge.net
1006
+
1007
+ <?xml version="1.0" encoding="utf-8" ?>
1008
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1009
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1010
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1011
+ <env:Body>
1012
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1013
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1014
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1015
+ xsi:type="n2:SOAPArrayStruct">
1016
+ <varString href="#id-605252222"></varString>
1017
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
1018
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1019
+ xsi:type="n3:Array"
1020
+ n3:arrayType="xsd:string[3]">
1021
+ <item>2</item>
1022
+ <item href="#id-605252222"></item>
1023
+ <item>b</item>
1024
+ </varArray>
1025
+ <varInt xsi:type="xsd:int">1</varInt>
1026
+ </inputStruct>
1027
+ </n1:echoNestedArray>
1028
+ <varString id="id-605252222"
1029
+ xsi:type="xsd:string"
1030
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
1031
+ </env:Body>
1032
+ </env:Envelope>
1033
+
1034
+ = Response
1035
+
1036
+ HTTP/1.1 200 OK
1037
+ Date: Sat, 23 Jul 2005 11:25:07 GMT
1038
+ Server: Apache/1.3.33 (Unix) PHP/4.3.10
1039
+ SOAPServer: EasySoap++/0.6
1040
+ Content-Length: 760
1041
+ Connection: close
1042
+ Content-Type: text/xml; charset="UTF-8"
1043
+
1044
+ <E:Envelope
1045
+ xmlns:E="http://schemas.xmlsoap.org/soap/envelope/"
1046
+ xmlns:A="http://schemas.xmlsoap.org/soap/encoding/"
1047
+ xmlns:s="http://www.w3.org/2001/XMLSchema-instance"
1048
+ xmlns:y="http://www.w3.org/2001/XMLSchema"
1049
+ E:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1050
+ <E:Body>
1051
+ <m:echoNestedArrayResponse
1052
+ xmlns:m="http://soapinterop.org/">
1053
+ <return
1054
+ s:type="ns1:SOAPArrayStruct"
1055
+ xmlns:ns1="http://soapinterop.org/xsd">
1056
+ <varString
1057
+ s:type="y:string"></varString>
1058
+ <varInt
1059
+ s:type="y:int">1</varInt>
1060
+ <varFloat
1061
+ s:type="y:float">1.10000002</varFloat>
1062
+ <varArray
1063
+ s:type="A:Array"
1064
+ A:arrayType="y:string[3]">
1065
+ <item>2</item>
1066
+ <item></item>
1067
+ <item>b</item>
1068
+ </varArray>
1069
+ </return>
1070
+ </m:echoNestedArrayResponse>
1071
+ </E:Body>
1072
+ </E:Envelope>
1073
+ ! CONNECTION CLOSED
1074
+
1075
+
1076
+