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,763 @@
1
+ File: clientWASPC_GroupB.log - Wiredumps for SOAP4R client / WASPforC++ server.
2
+ Date: Sat Jul 23 22:03:49 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: Expected = #<SOAPBuildersInterop::SOAPStruct:0xb7d20a9c @varFloat=#<SOAP::SOAPFloat:0x..fdbe9053a {}varFloat {http://www.w3.org/2001/XMLSchema}float>, @varInt=1, @varString="a"> // Actual = #<SOAPBuildersInterop::SOAPStruct:0xb7d19c74 @varFloat=#<SOAP::SOAPFloat:0x..fdbe8ce26 {} {http://www.w3.org/2001/XMLSchema}float>, @varInt="1", @varString="a">
8
+
9
+ Wire dump:
10
+
11
+ = Request
12
+
13
+ ! CONNECTION ESTABLISHED
14
+ POST /InteropBService/ 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 22:03:53 JST 2005
19
+ Content-Length: 700
20
+ Host: soap.systinet.net:6070
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
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
32
+ <varInt xsi:type="xsd:int">1</varInt>
33
+ <varString xsi:type="xsd:string">a</varString>
34
+ </inputStruct>
35
+ </n1:echoStructAsSimpleTypes>
36
+ </env:Body>
37
+ </env:Envelope>
38
+
39
+ = Response
40
+
41
+ HTTP/1.1 200 OK
42
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
43
+ Content-Type: text/xml; charset="UTF-8"
44
+ Connection: Keep-Alive
45
+ Content-Length: 559
46
+
47
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStructAsSimpleTypesResponse xmlns:ns0="http://soapinterop.org/"><outputString>a</outputString><outputInteger>1</outputInteger><outputFloat>1.100000024</outputFloat></ns0:echoStructAsSimpleTypesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
48
+
49
+
50
+ ##########
51
+ # echoStructAsSimpleTypes (nil)
52
+
53
+ Result: Expected = #<SOAPBuildersInterop::SOAPStruct:0xb7d1992c @varFloat=nil, @varInt=nil, @varString=nil> // Actual = #<SOAPBuildersInterop::SOAPStruct:0xb7d13cfc @varFloat=nil, @varInt="0", @varString="0">
54
+
55
+ Wire dump:
56
+
57
+ = Request
58
+
59
+ POST /InteropBService/ HTTP/1.1
60
+ SOAPAction: "http://soapinterop.org/"
61
+ Content-Type: text/xml; charset=utf-8
62
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
63
+ Date: Sat Jul 23 22:03:54 JST 2005
64
+ Content-Length: 677
65
+ Host: soap.systinet.net:6070
66
+
67
+ <?xml version="1.0" encoding="utf-8" ?>
68
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
69
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
70
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
71
+ <env:Body>
72
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
73
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
74
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
75
+ xsi:type="n2:SOAPStruct">
76
+ <varFloat xsi:nil="true"></varFloat>
77
+ <varInt xsi:nil="true"></varInt>
78
+ <varString xsi:nil="true"></varString>
79
+ </inputStruct>
80
+ </n1:echoStructAsSimpleTypes>
81
+ </env:Body>
82
+ </env:Envelope>
83
+
84
+ = Response
85
+
86
+ HTTP/1.1 200 OK
87
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
88
+ Content-Type: text/xml; charset="UTF-8"
89
+ Connection: Keep-Alive
90
+ Content-Length: 519
91
+
92
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStructAsSimpleTypesResponse xmlns:ns0="http://soapinterop.org/"><outputInteger>0</outputInteger><outputFloat>0</outputFloat></ns0:echoStructAsSimpleTypesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
93
+
94
+
95
+ ##########
96
+ # echoSimpleTypesAsStruct
97
+
98
+ Result: Expected = #<SOAPBuildersInterop::SOAPStruct:0xb7d13b44 @varFloat=#<SOAP::SOAPFloat:0x..fdbe89d8e {}inputFloat {http://www.w3.org/2001/XMLSchema}float>, @varInt=1, @varString="a"> // Actual = #<SOAPBuildersInterop::SOAPStruct:0xb7d0d7bc @varFloat="1.100000024", @varInt="1", @varString="a">
99
+
100
+ Wire dump:
101
+
102
+ = Request
103
+
104
+ POST /InteropBService/ HTTP/1.1
105
+ SOAPAction: "http://soapinterop.org/"
106
+ Content-Type: text/xml; charset=utf-8
107
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
108
+ Date: Sat Jul 23 22:03:55 JST 2005
109
+ Content-Length: 600
110
+ Host: soap.systinet.net:6070
111
+
112
+ <?xml version="1.0" encoding="utf-8" ?>
113
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
114
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
115
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
116
+ <env:Body>
117
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
118
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
119
+ <inputString xsi:type="xsd:string">a</inputString>
120
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
121
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
122
+ </n1:echoSimpleTypesAsStruct>
123
+ </env:Body>
124
+ </env:Envelope>
125
+
126
+ = Response
127
+
128
+ HTTP/1.1 200 OK
129
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
130
+ Content-Type: text/xml; charset="UTF-8"
131
+ Connection: Keep-Alive
132
+ Content-Length: 615
133
+
134
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoSimpleTypesAsStructResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString>a</varString><varInt>1</varInt><varFloat>1.100000024</varFloat></return></ns0:echoSimpleTypesAsStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
135
+
136
+
137
+ ##########
138
+ # echoSimpleTypesAsStruct (nil)
139
+
140
+ Result: Expected = #<SOAPBuildersInterop::SOAPStruct:0xb7d0cc2c @varFloat=nil, @varInt=nil, @varString=nil> // Actual = #<SOAPBuildersInterop::SOAPStruct:0xb7d070d8 @varFloat="0", @varInt="0">
141
+
142
+ Wire dump:
143
+
144
+ = Request
145
+
146
+ POST /InteropBService/ HTTP/1.1
147
+ SOAPAction: "http://soapinterop.org/"
148
+ Content-Type: text/xml; charset=utf-8
149
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
150
+ Date: Sat Jul 23 22:03:56 JST 2005
151
+ Content-Length: 577
152
+ Host: soap.systinet.net:6070
153
+
154
+ <?xml version="1.0" encoding="utf-8" ?>
155
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
156
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
157
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
158
+ <env:Body>
159
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
160
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
161
+ <inputString xsi:nil="true"></inputString>
162
+ <inputInteger xsi:nil="true"></inputInteger>
163
+ <inputFloat xsi:nil="true"></inputFloat>
164
+ </n1:echoSimpleTypesAsStruct>
165
+ </env:Body>
166
+ </env:Envelope>
167
+
168
+ = Response
169
+
170
+ HTTP/1.1 200 OK
171
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
172
+ Content-Type: text/xml; charset="UTF-8"
173
+ Connection: Keep-Alive
174
+ Content-Length: 581
175
+
176
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoSimpleTypesAsStructResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPStruct" xmlns:ns1="http://soapinterop.org/xsd"><varInt>0</varInt><varFloat>0</varFloat></return></ns0:echoSimpleTypesAsStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
177
+
178
+
179
+ ##########
180
+ # echo2DStringArray
181
+
182
+ Result: OK
183
+
184
+ Wire dump:
185
+
186
+ = Request
187
+
188
+ POST /InteropBService/ HTTP/1.1
189
+ SOAPAction: "http://soapinterop.org/"
190
+ Content-Type: text/xml; charset=utf-8
191
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
192
+ Date: Sat Jul 23 22:03:57 JST 2005
193
+ Content-Length: 889
194
+ Host: soap.systinet.net:6070
195
+
196
+ <?xml version="1.0" encoding="utf-8" ?>
197
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
198
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
199
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
200
+ <env:Body>
201
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
202
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
203
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
204
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
205
+ xsi:type="n2:ArrayOfString2D"
206
+ n3:arrayType="xsd:string[3,3]">
207
+ <item>r0c0</item>
208
+ <item>r1c0</item>
209
+ <item>r2c0</item>
210
+ <item>r0c1</item>
211
+ <item>r1c1</item>
212
+ <item>r2c1</item>
213
+ <item>r0c2</item>
214
+ <item>r1c2</item>
215
+ <item>r2c2</item>
216
+ </input2DStringArray>
217
+ </n1:echo2DStringArray>
218
+ </env:Body>
219
+ </env:Envelope>
220
+
221
+ = Response
222
+
223
+ HTTP/1.1 200 OK
224
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
225
+ Content-Type: text/xml; charset="UTF-8"
226
+ Connection: Keep-Alive
227
+ Content-Length: 648
228
+
229
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echo2DStringArrayResponse xmlns:ns0="http://soapinterop.org/"><return SE:arrayType="xsd:string[3,3]"><item>r0c0</item><item>r1c0</item><item>r2c0</item><item>r0c1</item><item>r1c1</item><item>r2c1</item><item>r0c2</item><item>r1c2</item><item>r2c2</item></return></ns0:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
230
+
231
+
232
+ ##########
233
+ # echo2DStringArray (anyType array)
234
+
235
+ Result: OK
236
+
237
+ Wire dump:
238
+
239
+ = Request
240
+
241
+ POST /InteropBService/ HTTP/1.1
242
+ SOAPAction: "http://soapinterop.org/"
243
+ Content-Type: text/xml; charset=utf-8
244
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
245
+ Date: Sat Jul 23 22:03:58 JST 2005
246
+ Content-Length: 1088
247
+ Host: soap.systinet.net:6070
248
+
249
+ <?xml version="1.0" encoding="utf-8" ?>
250
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
251
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
252
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
253
+ <env:Body>
254
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
255
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
256
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
257
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
258
+ xsi:type="n2:ArrayOfString2D"
259
+ n3:arrayType="xsd:anyType[3,3]">
260
+ <item xsi:type="xsd:string">r0c0</item>
261
+ <item xsi:type="xsd:string">r0c1</item>
262
+ <item xsi:type="xsd:string">r0c2</item>
263
+ <item xsi:type="xsd:string">r1c0</item>
264
+ <item xsi:type="xsd:string">r1c1</item>
265
+ <item xsi:type="xsd:string">r1c2</item>
266
+ <item xsi:type="xsd:string">r2c0</item>
267
+ <item xsi:type="xsd:string">r0c1</item>
268
+ <item xsi:type="xsd:string">r2c2</item>
269
+ </input2DStringArray>
270
+ </n1:echo2DStringArray>
271
+ </env:Body>
272
+ </env:Envelope>
273
+
274
+ = Response
275
+
276
+ HTTP/1.1 200 OK
277
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
278
+ Content-Type: text/xml; charset="UTF-8"
279
+ Connection: Keep-Alive
280
+ Content-Length: 648
281
+
282
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echo2DStringArrayResponse xmlns:ns0="http://soapinterop.org/"><return SE:arrayType="xsd:string[3,3]"><item>r0c0</item><item>r0c1</item><item>r0c2</item><item>r1c0</item><item>r1c1</item><item>r1c2</item><item>r2c0</item><item>r0c1</item><item>r2c2</item></return></ns0:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
283
+
284
+
285
+ ##########
286
+ # echo2DStringArray (multi-ref)
287
+
288
+ Result: OK
289
+
290
+ Wire dump:
291
+
292
+ = Request
293
+
294
+ POST /InteropBService/ HTTP/1.1
295
+ SOAPAction: "http://soapinterop.org/"
296
+ Content-Type: text/xml; charset=utf-8
297
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
298
+ Date: Sat Jul 23 22:03:59 JST 2005
299
+ Content-Length: 1063
300
+ Host: soap.systinet.net:6070
301
+
302
+ <?xml version="1.0" encoding="utf-8" ?>
303
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
304
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
305
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
306
+ <env:Body>
307
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
308
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
309
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
310
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
311
+ xsi:type="n2:ArrayOfString2D"
312
+ n3:arrayType="xsd:string[3,3]">
313
+ <item>r0c0</item>
314
+ <item>r1c0</item>
315
+ <item href="#id-605598046"></item>
316
+ <item>r0c1</item>
317
+ <item>r1c1</item>
318
+ <item>r2c1</item>
319
+ <item href="#id-605598046"></item>
320
+ <item>r1c2</item>
321
+ <item>r2c2</item>
322
+ </input2DStringArray>
323
+ </n1:echo2DStringArray>
324
+ <item id="id-605598046"
325
+ xsi:type="xsd:string"
326
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
327
+ </env:Body>
328
+ </env:Envelope>
329
+
330
+ = Response
331
+
332
+ HTTP/1.1 200 OK
333
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
334
+ Content-Type: text/xml; charset="UTF-8"
335
+ Connection: Keep-Alive
336
+ Content-Length: 682
337
+
338
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echo2DStringArrayResponse xmlns:ns0="http://soapinterop.org/"><return SE:arrayType="xsd:string[3,3]"><item>r0c0</item><item>r1c0</item><item href="#3"/><item>r0c1</item><item>r1c1</item><item>r2c1</item><item href="#3"/><item>r1c2</item><item>r2c2</item></return></ns0:echo2DStringArrayResponse><reference id="3">item</reference></SOAP-ENV:Body></SOAP-ENV:Envelope>
339
+
340
+
341
+ ##########
342
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
343
+
344
+ Result: OK
345
+
346
+ Wire dump:
347
+
348
+ = Request
349
+
350
+ POST /InteropBService/ HTTP/1.1
351
+ SOAPAction: "http://soapinterop.org/"
352
+ Content-Type: text/xml; charset=utf-8
353
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
354
+ Date: Sat Jul 23 22:04:00 JST 2005
355
+ Content-Length: 1063
356
+ Host: soap.systinet.net:6070
357
+
358
+ <?xml version="1.0" encoding="utf-8" ?>
359
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
360
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
361
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
362
+ <env:Body>
363
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
364
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
365
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
366
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
367
+ xsi:type="n2:ArrayOfString2D"
368
+ n3:arrayType="xsd:string[3,3]">
369
+ <item>r0c0</item>
370
+ <item>r1c0</item>
371
+ <item href="#id-605626176"></item>
372
+ <item>r0c1</item>
373
+ <item>r1c1</item>
374
+ <item>r2c1</item>
375
+ <item href="#id-605626176"></item>
376
+ <item>r1c2</item>
377
+ <item>r2c2</item>
378
+ </input2DStringArray>
379
+ </n1:echo2DStringArray>
380
+ <item id="id-605626176"
381
+ xsi:type="xsd:string"
382
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
383
+ </env:Body>
384
+ </env:Envelope>
385
+
386
+ = Response
387
+
388
+ HTTP/1.1 200 OK
389
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
390
+ Content-Type: text/xml; charset="UTF-8"
391
+ Connection: Keep-Alive
392
+ Content-Length: 682
393
+
394
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echo2DStringArrayResponse xmlns:ns0="http://soapinterop.org/"><return SE:arrayType="xsd:string[3,3]"><item>r0c0</item><item>r1c0</item><item href="#3"/><item>r0c1</item><item>r1c1</item><item>r2c1</item><item href="#3"/><item>r1c2</item><item>r2c2</item></return></ns0:echo2DStringArrayResponse><reference id="3">item</reference></SOAP-ENV:Body></SOAP-ENV:Envelope>
395
+
396
+
397
+ ##########
398
+ # echoNestedStruct
399
+
400
+ Result: Expected = #<SOAPBuildersInterop::SOAPStructStruct:0xb7ccfda4 @varFloat=#<SOAP::SOAPFloat:0x..fdbe67e96 {}varFloat {http://www.w3.org/2001/XMLSchema}float>, @varInt=1, @varStruct=#<SOAPBuildersInterop::SOAPStruct:0xb7ccfdb8 @varFloat=#<SOAP::SOAPFloat:0x..fdbe67ec8 {}varFloat {http://www.w3.org/2001/XMLSchema}float>, @varInt=2, @varString="b">, @varString="a"> // Actual = #<SOAPBuildersInterop::SOAPStructStruct:0xb7e33d08 @varFloat="1.100000024", @varInt="1", @varStruct=#<SOAPBuildersInterop::SOAPStruct:0xb7e22684 @varFloat="2.200000048", @varInt="2", @varString="b">, @varString="a">
401
+
402
+ Wire dump:
403
+
404
+ = Request
405
+
406
+ POST /InteropBService/ HTTP/1.1
407
+ SOAPAction: "http://soapinterop.org/"
408
+ Content-Type: text/xml; charset=utf-8
409
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
410
+ Date: Sat Jul 23 22:04:02 JST 2005
411
+ Content-Length: 920
412
+ Host: soap.systinet.net:6070
413
+
414
+ <?xml version="1.0" encoding="utf-8" ?>
415
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
416
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
417
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
418
+ <env:Body>
419
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
420
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
421
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
422
+ xsi:type="n2:SOAPStructStruct">
423
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
424
+ <varInt xsi:type="xsd:int">1</varInt>
425
+ <varStruct xsi:type="n2:SOAPStruct">
426
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
427
+ <varInt xsi:type="xsd:int">2</varInt>
428
+ <varString xsi:type="xsd:string">b</varString>
429
+ </varStruct>
430
+ <varString xsi:type="xsd:string">a</varString>
431
+ </inputStruct>
432
+ </n1:echoNestedStruct>
433
+ </env:Body>
434
+ </env:Envelope>
435
+
436
+ = Response
437
+
438
+ HTTP/1.1 200 OK
439
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
440
+ Content-Type: text/xml; charset="UTF-8"
441
+ Connection: Keep-Alive
442
+ Content-Length: 730
443
+
444
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedStructResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPStructStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString>a</varString><varInt>1</varInt><varFloat>1.100000024</varFloat><varStruct xsi:type="ns1:SOAPStruct"><varString>b</varString><varInt>2</varInt><varFloat>2.200000048</varFloat></varStruct></return></ns0:echoNestedStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
445
+
446
+
447
+ ##########
448
+ # echoNestedStruct (nil)
449
+
450
+ Result: Expected = #<SOAPBuildersInterop::SOAPStructStruct:0xb7e0b63c @varFloat=nil, @varInt=nil, @varStruct=#<SOAPBuildersInterop::SOAPStruct:0xb7e0bac4 @varFloat=nil, @varInt=nil, @varString=nil>, @varString=nil> // Actual = #<SOAPBuildersInterop::SOAPStructStruct:0xb7e9eee4 @varFloat="0", @varInt="0", @varStruct=#<SOAPBuildersInterop::SOAPStruct:0xb7e9888c @varFloat="0", @varInt="0">>
451
+
452
+ Wire dump:
453
+
454
+ = Request
455
+
456
+ POST /InteropBService/ HTTP/1.1
457
+ SOAPAction: "http://soapinterop.org/"
458
+ Content-Type: text/xml; charset=utf-8
459
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
460
+ Date: Sat Jul 23 22:04:03 JST 2005
461
+ Content-Length: 874
462
+ Host: soap.systinet.net:6070
463
+
464
+ <?xml version="1.0" encoding="utf-8" ?>
465
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
466
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
467
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
468
+ <env:Body>
469
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
470
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
471
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
472
+ xsi:type="n2:SOAPStructStruct">
473
+ <varFloat xsi:nil="true"></varFloat>
474
+ <varInt xsi:nil="true"></varInt>
475
+ <varStruct xsi:type="n2:SOAPStruct">
476
+ <varFloat xsi:nil="true"></varFloat>
477
+ <varInt xsi:nil="true"></varInt>
478
+ <varString xsi:nil="true"></varString>
479
+ </varStruct>
480
+ <varString xsi:nil="true"></varString>
481
+ </inputStruct>
482
+ </n1:echoNestedStruct>
483
+ </env:Body>
484
+ </env:Envelope>
485
+
486
+ = Response
487
+
488
+ HTTP/1.1 200 OK
489
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
490
+ Content-Type: text/xml; charset="UTF-8"
491
+ Connection: Keep-Alive
492
+ Content-Length: 662
493
+
494
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedStructResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPStructStruct" xmlns:ns1="http://soapinterop.org/xsd"><varInt>0</varInt><varFloat>0</varFloat><varStruct xsi:type="ns1:SOAPStruct"><varInt>0</varInt><varFloat>0</varFloat></varStruct></return></ns0:echoNestedStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
495
+
496
+
497
+ ##########
498
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
499
+
500
+ Result: OK
501
+
502
+ Wire dump:
503
+
504
+ = Request
505
+
506
+ POST /InteropBService/ HTTP/1.1
507
+ SOAPAction: "http://soapinterop.org/"
508
+ Content-Type: text/xml; charset=utf-8
509
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
510
+ Date: Sat Jul 23 22:04:04 JST 2005
511
+ Content-Length: 1062
512
+ Host: soap.systinet.net:6070
513
+
514
+ <?xml version="1.0" encoding="utf-8" ?>
515
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
516
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
517
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
518
+ <env:Body>
519
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
520
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
521
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
522
+ xsi:type="n2:SOAPStructStruct">
523
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
524
+ <varInt xsi:type="xsd:int">1</varInt>
525
+ <varStruct xsi:type="n2:SOAPStruct">
526
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
527
+ <varInt xsi:type="xsd:int">2</varInt>
528
+ <varString href="#id-605076996"></varString>
529
+ </varStruct>
530
+ <varString href="#id-605076996"></varString>
531
+ </inputStruct>
532
+ </n1:echoNestedStruct>
533
+ <varString id="id-605076996"
534
+ xsi:type="xsd:string"
535
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
536
+ </env:Body>
537
+ </env:Envelope>
538
+
539
+ = Response
540
+
541
+ HTTP/1.1 200 OK
542
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
543
+ Content-Type: text/xml; charset="UTF-8"
544
+ Connection: Keep-Alive
545
+ Content-Length: 756
546
+
547
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedStructResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPStructStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString href="#1"/><varInt>1</varInt><varFloat>1.100000024</varFloat><varStruct xsi:type="ns1:SOAPStruct"><varString href="#1"/><varInt>2</varInt><varFloat>2.200000048</varFloat></varStruct></return></ns0:echoNestedStructResponse><reference id="1"></reference></SOAP-ENV:Body></SOAP-ENV:Envelope>
548
+
549
+
550
+ ##########
551
+ # echoNestedArray
552
+
553
+ Result: Expected = #<SOAPBuildersInterop::SOAPArrayStruct:0xb7dcf2f4 @varFloat=#<SOAP::SOAPFloat:0x..fdbee795c {}varFloat {http://www.w3.org/2001/XMLSchema}float>, @varArray=["2", "2.2", "b"], @varInt=1, @varString="a"> // Actual = #<SOAPBuildersInterop::SOAPArrayStruct:0xb7dbafe8 @varFloat="1.100000024", @varArray=["2", "2.2", "b"], @varInt="1", @varString="a">
554
+
555
+ Wire dump:
556
+
557
+ = Request
558
+
559
+ POST /InteropBService/ HTTP/1.1
560
+ SOAPAction: "http://soapinterop.org/"
561
+ Content-Type: text/xml; charset=utf-8
562
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
563
+ Date: Sat Jul 23 22:04:05 JST 2005
564
+ Content-Length: 931
565
+ Host: soap.systinet.net:6070
566
+
567
+ <?xml version="1.0" encoding="utf-8" ?>
568
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
569
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
570
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
571
+ <env:Body>
572
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
573
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
574
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
575
+ xsi:type="n2:SOAPArrayStruct">
576
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
577
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
578
+ xsi:type="n3:Array"
579
+ n3:arrayType="xsd:string[3]">
580
+ <item>2</item>
581
+ <item>2.2</item>
582
+ <item>b</item>
583
+ </varArray>
584
+ <varInt xsi:type="xsd:int">1</varInt>
585
+ <varString xsi:type="xsd:string">a</varString>
586
+ </inputStruct>
587
+ </n1:echoNestedArray>
588
+ </env:Body>
589
+ </env:Envelope>
590
+
591
+ = Response
592
+
593
+ HTTP/1.1 200 OK
594
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
595
+ Content-Type: text/xml; charset="UTF-8"
596
+ Connection: Keep-Alive
597
+ Content-Length: 698
598
+
599
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedArrayResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPArrayStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString>a</varString><varInt>1</varInt><varFloat>1.100000024</varFloat><varArray SE:arrayType="xsd:string[3]"><item>2</item><item>2.2</item><item>b</item></varArray></return></ns0:echoNestedArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
600
+
601
+
602
+ ##########
603
+ # echoNestedArray (anyType array)
604
+
605
+ Result: Expected = #<SOAPBuildersInterop::SOAPArrayStruct:0xb7db8680 @varFloat=#<SOAP::SOAPFloat:0x..fdbedc32c {}varFloat {http://www.w3.org/2001/XMLSchema}float>, @varArray=["2", "2.2", "b"], @varInt=1, @varString="a"> // Actual = #<SOAPBuildersInterop::SOAPArrayStruct:0xb7da1fd4 @varFloat="1.100000024", @varArray=["2", "2.2", "b"], @varInt="1", @varString="a">
606
+
607
+ Wire dump:
608
+
609
+ = Request
610
+
611
+ POST /InteropBService/ HTTP/1.1
612
+ SOAPAction: "http://soapinterop.org/"
613
+ Content-Type: text/xml; charset=utf-8
614
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
615
+ Date: Sat Jul 23 22:04:09 JST 2005
616
+ Content-Length: 998
617
+ Host: soap.systinet.net:6070
618
+
619
+ <?xml version="1.0" encoding="utf-8" ?>
620
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
621
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
622
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
623
+ <env:Body>
624
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
625
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
626
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
627
+ xsi:type="n2:SOAPArrayStruct">
628
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
629
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
630
+ xsi:type="n3:Array"
631
+ n3:arrayType="xsd:anyType[3]">
632
+ <item xsi:type="xsd:string">2</item>
633
+ <item xsi:type="xsd:string">2.2</item>
634
+ <item xsi:type="xsd:string">b</item>
635
+ </varArray>
636
+ <varInt xsi:type="xsd:int">1</varInt>
637
+ <varString xsi:type="xsd:string">a</varString>
638
+ </inputStruct>
639
+ </n1:echoNestedArray>
640
+ </env:Body>
641
+ </env:Envelope>
642
+
643
+ = Response
644
+
645
+ HTTP/1.1 200 OK
646
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
647
+ Content-Type: text/xml; charset="UTF-8"
648
+ Connection: Keep-Alive
649
+ Content-Length: 698
650
+
651
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedArrayResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPArrayStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString>a</varString><varInt>1</varInt><varFloat>1.100000024</varFloat><varArray SE:arrayType="xsd:string[3]"><item>2</item><item>2.2</item><item>b</item></varArray></return></ns0:echoNestedArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
652
+
653
+
654
+ ##########
655
+ # echoNestedArray (multi-ref)
656
+
657
+ Result: Expected = #<SOAPBuildersInterop::SOAPArrayStruct:0xb7da0724 @varFloat=#<SOAP::SOAPFloat:0x..fdbed037e {}varFloat {http://www.w3.org/2001/XMLSchema}float>, @varArray=["2", "", "b"], @varInt=1, @varString=""> // Actual = #<SOAPBuildersInterop::SOAPArrayStruct:0xb7d969e0 @varFloat="1.100000024", @varArray=["2", #<SOAP::Mapping::Object:0x..fdbecb428>, "b"], @varInt="1", @varString=#<SOAP::Mapping::Object:0x..fdbecb428>>
658
+
659
+ Wire dump:
660
+
661
+ = Request
662
+
663
+ POST /InteropBService/ HTTP/1.1
664
+ SOAPAction: "http://soapinterop.org/"
665
+ Content-Type: text/xml; charset=utf-8
666
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
667
+ Date: Sat Jul 23 22:04:10 JST 2005
668
+ Content-Length: 1083
669
+ Host: soap.systinet.net:6070
670
+
671
+ <?xml version="1.0" encoding="utf-8" ?>
672
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
673
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
674
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
675
+ <env:Body>
676
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
677
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
678
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
679
+ xsi:type="n2:SOAPArrayStruct">
680
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
681
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
682
+ xsi:type="n3:Array"
683
+ n3:arrayType="xsd:string[3]">
684
+ <item>2</item>
685
+ <item href="#id-605226676"></item>
686
+ <item>b</item>
687
+ </varArray>
688
+ <varInt xsi:type="xsd:int">1</varInt>
689
+ <varString href="#id-605226676"></varString>
690
+ </inputStruct>
691
+ </n1:echoNestedArray>
692
+ <item id="id-605226676"
693
+ xsi:type="xsd:string"
694
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
695
+ </env:Body>
696
+ </env:Envelope>
697
+
698
+ = Response
699
+
700
+ HTTP/1.1 200 OK
701
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
702
+ Content-Type: text/xml; charset="UTF-8"
703
+ Connection: Keep-Alive
704
+ Content-Length: 727
705
+
706
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedArrayResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPArrayStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString href="#1"/><varInt>1</varInt><varFloat>1.100000024</varFloat><varArray SE:arrayType="xsd:string[3]"><item>2</item><item href="#1"/><item>b</item></varArray></return></ns0:echoNestedArrayResponse><reference id="1"></reference></SOAP-ENV:Body></SOAP-ENV:Envelope>
707
+
708
+
709
+ ##########
710
+ # echoNestedArray (multi-ref: varString == varArray[1])
711
+
712
+ Result: OK
713
+
714
+ Wire dump:
715
+
716
+ = Request
717
+
718
+ POST /InteropBService/ HTTP/1.1
719
+ SOAPAction: "http://soapinterop.org/"
720
+ Content-Type: text/xml; charset=utf-8
721
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
722
+ Date: Sat Jul 23 22:04:11 JST 2005
723
+ Content-Length: 1083
724
+ Host: soap.systinet.net:6070
725
+
726
+ <?xml version="1.0" encoding="utf-8" ?>
727
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
728
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
729
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
730
+ <env:Body>
731
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
732
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
733
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
734
+ xsi:type="n2:SOAPArrayStruct">
735
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
736
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
737
+ xsi:type="n3:Array"
738
+ n3:arrayType="xsd:string[3]">
739
+ <item>2</item>
740
+ <item href="#id-605249936"></item>
741
+ <item>b</item>
742
+ </varArray>
743
+ <varInt xsi:type="xsd:int">1</varInt>
744
+ <varString href="#id-605249936"></varString>
745
+ </inputStruct>
746
+ </n1:echoNestedArray>
747
+ <item id="id-605249936"
748
+ xsi:type="xsd:string"
749
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
750
+ </env:Body>
751
+ </env:Envelope>
752
+
753
+ = Response
754
+
755
+ HTTP/1.1 200 OK
756
+ Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
757
+ Content-Type: text/xml; charset="UTF-8"
758
+ Connection: Keep-Alive
759
+ Content-Length: 727
760
+
761
+ <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoNestedArrayResponse xmlns:ns0="http://soapinterop.org/"><return xsi:type="ns1:SOAPArrayStruct" xmlns:ns1="http://soapinterop.org/xsd"><varString href="#1"/><varInt>1</varInt><varFloat>1.100000024</varFloat><varArray SE:arrayType="xsd:string[3]"><item>2</item><item href="#1"/><item>b</item></varArray></return></ns0:echoNestedArrayResponse><reference id="1"></reference></SOAP-ENV:Body></SOAP-ENV:Envelope>
762
+
763
+