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,1188 @@
1
+ File: client.NetRemoting_GroupB.log - Wiredumps for SOAP4R client / dotNetRemotingWebServices server.
2
+ Date: Sat Jul 23 21:06:12 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: OK
8
+
9
+ Wire dump:
10
+
11
+ = Request
12
+
13
+ ! CONNECTION ESTABLISHED
14
+ POST /remoting/ServiceB.soap 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 21:06:12 JST 2005
19
+ Content-Length: 700
20
+ Host: www.mssoapinterop.org
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 100 Continue
42
+ Server: Microsoft-IIS/5.0
43
+ Date: Sat, 23 Jul 2005 12:54:54 GMT
44
+ X-Powered-By: ASP.NET
45
+
46
+ HTTP/1.1 200 OK
47
+ Server: Microsoft-IIS/5.0
48
+ Date: Sat, 23 Jul 2005 12:54:54 GMT
49
+ X-Powered-By: ASP.NET
50
+ X-AspNet-Version: 2.0.40301
51
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
52
+ Cache-Control: private
53
+ Content-Type: text/xml; charset="utf-8"
54
+ Content-Length: 994
55
+
56
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
57
+ <SOAP-ENV:Header>
58
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
59
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
60
+ </a1:LogicalCallContext>
61
+ </SOAP-ENV:Header>
62
+ <SOAP-ENV:Body>
63
+ <i5:echoStructAsSimpleTypes id="ref-1" xmlns:i5="http://soapinterop.org/">
64
+ <outputString xsi:type="xsd:string">a</outputString>
65
+ <outputInteger xsi:type="xsd:int">1</outputInteger>
66
+ <outputFloat xsi:type="xsd:float">1.1</outputFloat>
67
+ </i5:echoStructAsSimpleTypes>
68
+ </SOAP-ENV:Body>
69
+ </SOAP-ENV:Envelope>
70
+
71
+
72
+
73
+ ##########
74
+ # echoStructAsSimpleTypes (nil)
75
+
76
+ Result: Exception: **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server's .config file. (SOAP::FaultError)
77
+ #<SOAP::Mapping::Object:0xb7c0026c>
78
+
79
+ Wire dump:
80
+
81
+ = Request
82
+
83
+ POST /remoting/ServiceB.soap HTTP/1.1
84
+ SOAPAction: "http://soapinterop.org/"
85
+ Content-Type: text/xml; charset=utf-8
86
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
87
+ Date: Sat Jul 23 21:06:13 JST 2005
88
+ Content-Length: 677
89
+ Host: www.mssoapinterop.org
90
+
91
+ <?xml version="1.0" encoding="utf-8" ?>
92
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
93
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
94
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
95
+ <env:Body>
96
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
97
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
98
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
99
+ xsi:type="n2:SOAPStruct">
100
+ <varFloat xsi:nil="true"></varFloat>
101
+ <varInt xsi:nil="true"></varInt>
102
+ <varString xsi:nil="true"></varString>
103
+ </inputStruct>
104
+ </n1:echoStructAsSimpleTypes>
105
+ </env:Body>
106
+ </env:Envelope>
107
+
108
+ = Response
109
+
110
+ HTTP/1.1 100 Continue
111
+ Server: Microsoft-IIS/5.0
112
+ Date: Sat, 23 Jul 2005 12:54:54 GMT
113
+ X-Powered-By: ASP.NET
114
+
115
+ HTTP/1.1 500 Internal Server Error
116
+ Server: Microsoft-IIS/5.0
117
+ Date: Sat, 23 Jul 2005 12:54:54 GMT
118
+ X-Powered-By: ASP.NET
119
+ X-AspNet-Version: 2.0.40301
120
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
121
+ Cache-Control: private
122
+ Content-Type: text/xml; charset="utf-8"
123
+ Content-Length: 1110
124
+
125
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
126
+ <SOAP-ENV:Body>
127
+ <SOAP-ENV:Fault id="ref-1">
128
+ <faultcode id="ref-2">SOAP-ENV:Server</faultcode>
129
+ <faultstring id="ref-3"> **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server&#39;s .config file.</faultstring>
130
+ <detail xsi:type="a1:ServerFault" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Serialization.Formatters">
131
+ <exceptionType id="ref-4">System.Runtime.Remoting.RemotingException, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</exceptionType>
132
+ <message href="#ref-3"/>
133
+ <stackTrace xsi:null="1"/>
134
+ <exception xsi:null="1"/>
135
+ </detail>
136
+ </SOAP-ENV:Fault>
137
+ </SOAP-ENV:Body>
138
+ </SOAP-ENV:Envelope>
139
+
140
+
141
+
142
+ ##########
143
+ # echoSimpleTypesAsStruct
144
+
145
+ Result: OK
146
+
147
+ Wire dump:
148
+
149
+ = Request
150
+
151
+ POST /remoting/ServiceB.soap HTTP/1.1
152
+ SOAPAction: "http://soapinterop.org/"
153
+ Content-Type: text/xml; charset=utf-8
154
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
155
+ Date: Sat Jul 23 21:06:13 JST 2005
156
+ Content-Length: 600
157
+ Host: www.mssoapinterop.org
158
+
159
+ <?xml version="1.0" encoding="utf-8" ?>
160
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
161
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
162
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
163
+ <env:Body>
164
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
165
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
166
+ <inputString xsi:type="xsd:string">a</inputString>
167
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
168
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
169
+ </n1:echoSimpleTypesAsStruct>
170
+ </env:Body>
171
+ </env:Envelope>
172
+
173
+ = Response
174
+
175
+ HTTP/1.1 100 Continue
176
+ Server: Microsoft-IIS/5.0
177
+ Date: Sat, 23 Jul 2005 12:54:56 GMT
178
+ X-Powered-By: ASP.NET
179
+
180
+ HTTP/1.1 200 OK
181
+ Server: Microsoft-IIS/5.0
182
+ Date: Sat, 23 Jul 2005 12:54:56 GMT
183
+ X-Powered-By: ASP.NET
184
+ X-AspNet-Version: 2.0.40301
185
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
186
+ Cache-Control: private
187
+ Content-Type: text/xml; charset="utf-8"
188
+ Content-Length: 1077
189
+
190
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
191
+ <SOAP-ENV:Header>
192
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
193
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
194
+ </a1:LogicalCallContext>
195
+ </SOAP-ENV:Header>
196
+ <SOAP-ENV:Body>
197
+ <i5:echoSimpleTypesAsStruct id="ref-1" xmlns:i5="http://soapinterop.org/">
198
+ <return href="#ref-7"/>
199
+ </i5:echoSimpleTypesAsStruct>
200
+ <i6:SOAPStruct id="ref-7" xmlns:i6="http://soapinterop.org/xsd">
201
+ <varString xsi:type="xsd:string">a</varString>
202
+ <varInt xsi:type="xsd:int">1</varInt>
203
+ <varFloat xsi:type="xsd:float">1.1</varFloat>
204
+ </i6:SOAPStruct>
205
+ </SOAP-ENV:Body>
206
+ </SOAP-ENV:Envelope>
207
+
208
+
209
+
210
+ ##########
211
+ # echoSimpleTypesAsStruct (nil)
212
+
213
+ Result: Exception: **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server's .config file. (SOAP::FaultError)
214
+ #<SOAP::Mapping::Object:0xb7bec758>
215
+
216
+ Wire dump:
217
+
218
+ = Request
219
+
220
+ POST /remoting/ServiceB.soap HTTP/1.1
221
+ SOAPAction: "http://soapinterop.org/"
222
+ Content-Type: text/xml; charset=utf-8
223
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
224
+ Date: Sat Jul 23 21:06:14 JST 2005
225
+ Content-Length: 577
226
+ Host: www.mssoapinterop.org
227
+
228
+ <?xml version="1.0" encoding="utf-8" ?>
229
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
230
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
231
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
232
+ <env:Body>
233
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
234
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
235
+ <inputString xsi:nil="true"></inputString>
236
+ <inputInteger xsi:nil="true"></inputInteger>
237
+ <inputFloat xsi:nil="true"></inputFloat>
238
+ </n1:echoSimpleTypesAsStruct>
239
+ </env:Body>
240
+ </env:Envelope>
241
+
242
+ = Response
243
+
244
+ HTTP/1.1 100 Continue
245
+ Server: Microsoft-IIS/5.0
246
+ Date: Sat, 23 Jul 2005 12:54:56 GMT
247
+ X-Powered-By: ASP.NET
248
+
249
+ HTTP/1.1 500 Internal Server Error
250
+ Server: Microsoft-IIS/5.0
251
+ Date: Sat, 23 Jul 2005 12:54:56 GMT
252
+ X-Powered-By: ASP.NET
253
+ X-AspNet-Version: 2.0.40301
254
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
255
+ Cache-Control: private
256
+ Content-Type: text/xml; charset="utf-8"
257
+ Content-Length: 1110
258
+
259
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
260
+ <SOAP-ENV:Body>
261
+ <SOAP-ENV:Fault id="ref-1">
262
+ <faultcode id="ref-2">SOAP-ENV:Server</faultcode>
263
+ <faultstring id="ref-3"> **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server&#39;s .config file.</faultstring>
264
+ <detail xsi:type="a1:ServerFault" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Serialization.Formatters">
265
+ <exceptionType id="ref-4">System.Runtime.Remoting.RemotingException, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</exceptionType>
266
+ <message href="#ref-3"/>
267
+ <stackTrace xsi:null="1"/>
268
+ <exception xsi:null="1"/>
269
+ </detail>
270
+ </SOAP-ENV:Fault>
271
+ </SOAP-ENV:Body>
272
+ </SOAP-ENV:Envelope>
273
+
274
+
275
+
276
+ ##########
277
+ # echo2DStringArray
278
+
279
+ Result: OK
280
+
281
+ Wire dump:
282
+
283
+ = Request
284
+
285
+ POST /remoting/ServiceB.soap HTTP/1.1
286
+ SOAPAction: "http://soapinterop.org/"
287
+ Content-Type: text/xml; charset=utf-8
288
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
289
+ Date: Sat Jul 23 21:06:15 JST 2005
290
+ Content-Length: 889
291
+ Host: www.mssoapinterop.org
292
+
293
+ <?xml version="1.0" encoding="utf-8" ?>
294
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
295
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
296
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
297
+ <env:Body>
298
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
299
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
300
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
301
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
302
+ xsi:type="n2:ArrayOfString2D"
303
+ n3:arrayType="xsd:string[3,3]">
304
+ <item>r0c0</item>
305
+ <item>r1c0</item>
306
+ <item>r2c0</item>
307
+ <item>r0c1</item>
308
+ <item>r1c1</item>
309
+ <item>r2c1</item>
310
+ <item>r0c2</item>
311
+ <item>r1c2</item>
312
+ <item>r2c2</item>
313
+ </input2DStringArray>
314
+ </n1:echo2DStringArray>
315
+ </env:Body>
316
+ </env:Envelope>
317
+
318
+ = Response
319
+
320
+ HTTP/1.1 100 Continue
321
+ Server: Microsoft-IIS/5.0
322
+ Date: Sat, 23 Jul 2005 12:54:57 GMT
323
+ X-Powered-By: ASP.NET
324
+
325
+ HTTP/1.1 200 OK
326
+ Server: Microsoft-IIS/5.0
327
+ Date: Sat, 23 Jul 2005 12:54:57 GMT
328
+ X-Powered-By: ASP.NET
329
+ X-AspNet-Version: 2.0.40301
330
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
331
+ Cache-Control: private
332
+ Content-Type: text/xml; charset="utf-8"
333
+ Content-Length: 1103
334
+
335
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
336
+ <SOAP-ENV:Header>
337
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
338
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
339
+ </a1:LogicalCallContext>
340
+ </SOAP-ENV:Header>
341
+ <SOAP-ENV:Body>
342
+ <i5:echo2DStringArray id="ref-1" xmlns:i5="http://soapinterop.org/">
343
+ <return href="#ref-6"/>
344
+ </i5:echo2DStringArray>
345
+ <SOAP-ENC:Array id="ref-6" SOAP-ENC:arrayType="xsd:string[3,3]">
346
+ <item>r0c0</item>
347
+ <item>r1c0</item>
348
+ <item>r2c0</item>
349
+ <item>r0c1</item>
350
+ <item>r1c1</item>
351
+ <item>r2c1</item>
352
+ <item>r0c2</item>
353
+ <item>r1c2</item>
354
+ <item>r2c2</item>
355
+ </SOAP-ENC:Array>
356
+ </SOAP-ENV:Body>
357
+ </SOAP-ENV:Envelope>
358
+
359
+
360
+
361
+ ##########
362
+ # echo2DStringArray (anyType array)
363
+
364
+ Result: Exception: **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server's .config file. (SOAP::FaultError)
365
+ #<SOAP::Mapping::Object:0xb7ceb550>
366
+
367
+ Wire dump:
368
+
369
+ = Request
370
+
371
+ POST /remoting/ServiceB.soap HTTP/1.1
372
+ SOAPAction: "http://soapinterop.org/"
373
+ Content-Type: text/xml; charset=utf-8
374
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
375
+ Date: Sat Jul 23 21:06:16 JST 2005
376
+ Content-Length: 1088
377
+ Host: www.mssoapinterop.org
378
+
379
+ <?xml version="1.0" encoding="utf-8" ?>
380
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
381
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
382
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
383
+ <env:Body>
384
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
385
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
386
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
387
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
388
+ xsi:type="n2:ArrayOfString2D"
389
+ n3:arrayType="xsd:anyType[3,3]">
390
+ <item xsi:type="xsd:string">r0c0</item>
391
+ <item xsi:type="xsd:string">r0c1</item>
392
+ <item xsi:type="xsd:string">r0c2</item>
393
+ <item xsi:type="xsd:string">r1c0</item>
394
+ <item xsi:type="xsd:string">r1c1</item>
395
+ <item xsi:type="xsd:string">r1c2</item>
396
+ <item xsi:type="xsd:string">r2c0</item>
397
+ <item xsi:type="xsd:string">r0c1</item>
398
+ <item xsi:type="xsd:string">r2c2</item>
399
+ </input2DStringArray>
400
+ </n1:echo2DStringArray>
401
+ </env:Body>
402
+ </env:Envelope>
403
+
404
+ = Response
405
+
406
+ HTTP/1.1 100 Continue
407
+ Server: Microsoft-IIS/5.0
408
+ Date: Sat, 23 Jul 2005 12:54:57 GMT
409
+ X-Powered-By: ASP.NET
410
+
411
+ HTTP/1.1 500 Internal Server Error
412
+ Server: Microsoft-IIS/5.0
413
+ Date: Sat, 23 Jul 2005 12:54:57 GMT
414
+ X-Powered-By: ASP.NET
415
+ X-AspNet-Version: 2.0.40301
416
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
417
+ Cache-Control: private
418
+ Content-Type: text/xml; charset="utf-8"
419
+ Content-Length: 1110
420
+
421
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
422
+ <SOAP-ENV:Body>
423
+ <SOAP-ENV:Fault id="ref-1">
424
+ <faultcode id="ref-2">SOAP-ENV:Server</faultcode>
425
+ <faultstring id="ref-3"> **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server&#39;s .config file.</faultstring>
426
+ <detail xsi:type="a1:ServerFault" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Serialization.Formatters">
427
+ <exceptionType id="ref-4">System.Runtime.Remoting.RemotingException, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</exceptionType>
428
+ <message href="#ref-3"/>
429
+ <stackTrace xsi:null="1"/>
430
+ <exception xsi:null="1"/>
431
+ </detail>
432
+ </SOAP-ENV:Fault>
433
+ </SOAP-ENV:Body>
434
+ </SOAP-ENV:Envelope>
435
+
436
+
437
+
438
+ ##########
439
+ # echo2DStringArray (multi-ref)
440
+
441
+ Result: OK
442
+
443
+ Wire dump:
444
+
445
+ = Request
446
+
447
+ POST /remoting/ServiceB.soap HTTP/1.1
448
+ SOAPAction: "http://soapinterop.org/"
449
+ Content-Type: text/xml; charset=utf-8
450
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
451
+ Date: Sat Jul 23 21:06:16 JST 2005
452
+ Content-Length: 1063
453
+ Host: www.mssoapinterop.org
454
+
455
+ <?xml version="1.0" encoding="utf-8" ?>
456
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
457
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
458
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
459
+ <env:Body>
460
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
461
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
462
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
463
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
464
+ xsi:type="n2:ArrayOfString2D"
465
+ n3:arrayType="xsd:string[3,3]">
466
+ <item>r0c0</item>
467
+ <item>r1c0</item>
468
+ <item href="#id-605608848"></item>
469
+ <item>r0c1</item>
470
+ <item>r1c1</item>
471
+ <item>r2c1</item>
472
+ <item href="#id-605608848"></item>
473
+ <item>r1c2</item>
474
+ <item>r2c2</item>
475
+ </input2DStringArray>
476
+ </n1:echo2DStringArray>
477
+ <item id="id-605608848"
478
+ xsi:type="xsd:string"
479
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
480
+ </env:Body>
481
+ </env:Envelope>
482
+
483
+ = Response
484
+
485
+ HTTP/1.1 100 Continue
486
+ Server: Microsoft-IIS/5.0
487
+ Date: Sat, 23 Jul 2005 12:54:59 GMT
488
+ X-Powered-By: ASP.NET
489
+
490
+ HTTP/1.1 200 OK
491
+ Server: Microsoft-IIS/5.0
492
+ Date: Sat, 23 Jul 2005 12:54:59 GMT
493
+ X-Powered-By: ASP.NET
494
+ X-AspNet-Version: 2.0.40301
495
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
496
+ Cache-Control: private
497
+ Content-Type: text/xml; charset="utf-8"
498
+ Content-Length: 1103
499
+
500
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
501
+ <SOAP-ENV:Header>
502
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
503
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
504
+ </a1:LogicalCallContext>
505
+ </SOAP-ENV:Header>
506
+ <SOAP-ENV:Body>
507
+ <i5:echo2DStringArray id="ref-1" xmlns:i5="http://soapinterop.org/">
508
+ <return href="#ref-6"/>
509
+ </i5:echo2DStringArray>
510
+ <SOAP-ENC:Array id="ref-6" SOAP-ENC:arrayType="xsd:string[3,3]">
511
+ <item>r0c0</item>
512
+ <item>r1c0</item>
513
+ <item>item</item>
514
+ <item>r0c1</item>
515
+ <item>r1c1</item>
516
+ <item>r2c1</item>
517
+ <item>item</item>
518
+ <item>r1c2</item>
519
+ <item>r2c2</item>
520
+ </SOAP-ENC:Array>
521
+ </SOAP-ENV:Body>
522
+ </SOAP-ENV:Envelope>
523
+
524
+
525
+
526
+ ##########
527
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
528
+
529
+ Result: Expected = "String#-605714408" // Actual = "String#-605712708"
530
+
531
+ Wire dump:
532
+
533
+ = Request
534
+
535
+ POST /remoting/ServiceB.soap HTTP/1.1
536
+ SOAPAction: "http://soapinterop.org/"
537
+ Content-Type: text/xml; charset=utf-8
538
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
539
+ Date: Sat Jul 23 21:06:17 JST 2005
540
+ Content-Length: 1063
541
+ Host: www.mssoapinterop.org
542
+
543
+ <?xml version="1.0" encoding="utf-8" ?>
544
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
545
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
546
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
547
+ <env:Body>
548
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
549
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
550
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
551
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
552
+ xsi:type="n2:ArrayOfString2D"
553
+ n3:arrayType="xsd:string[3,3]">
554
+ <item>r0c0</item>
555
+ <item>r1c0</item>
556
+ <item href="#id-605685108"></item>
557
+ <item>r0c1</item>
558
+ <item>r1c1</item>
559
+ <item>r2c1</item>
560
+ <item href="#id-605685108"></item>
561
+ <item>r1c2</item>
562
+ <item>r2c2</item>
563
+ </input2DStringArray>
564
+ </n1:echo2DStringArray>
565
+ <item id="id-605685108"
566
+ xsi:type="xsd:string"
567
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
568
+ </env:Body>
569
+ </env:Envelope>
570
+
571
+ = Response
572
+
573
+ HTTP/1.1 100 Continue
574
+ Server: Microsoft-IIS/5.0
575
+ Date: Sat, 23 Jul 2005 12:54:59 GMT
576
+ X-Powered-By: ASP.NET
577
+
578
+ HTTP/1.1 200 OK
579
+ Server: Microsoft-IIS/5.0
580
+ Date: Sat, 23 Jul 2005 12:54:59 GMT
581
+ X-Powered-By: ASP.NET
582
+ X-AspNet-Version: 2.0.40301
583
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
584
+ Cache-Control: private
585
+ Content-Type: text/xml; charset="utf-8"
586
+ Content-Length: 1103
587
+
588
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
589
+ <SOAP-ENV:Header>
590
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
591
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
592
+ </a1:LogicalCallContext>
593
+ </SOAP-ENV:Header>
594
+ <SOAP-ENV:Body>
595
+ <i5:echo2DStringArray id="ref-1" xmlns:i5="http://soapinterop.org/">
596
+ <return href="#ref-6"/>
597
+ </i5:echo2DStringArray>
598
+ <SOAP-ENC:Array id="ref-6" SOAP-ENC:arrayType="xsd:string[3,3]">
599
+ <item>r0c0</item>
600
+ <item>r1c0</item>
601
+ <item>item</item>
602
+ <item>r0c1</item>
603
+ <item>r1c1</item>
604
+ <item>r2c1</item>
605
+ <item>item</item>
606
+ <item>r1c2</item>
607
+ <item>r2c2</item>
608
+ </SOAP-ENC:Array>
609
+ </SOAP-ENV:Body>
610
+ </SOAP-ENV:Envelope>
611
+
612
+
613
+
614
+ ##########
615
+ # echoNestedStruct
616
+
617
+ Result: OK
618
+
619
+ Wire dump:
620
+
621
+ = Request
622
+
623
+ POST /remoting/ServiceB.soap HTTP/1.1
624
+ SOAPAction: "http://soapinterop.org/"
625
+ Content-Type: text/xml; charset=utf-8
626
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
627
+ Date: Sat Jul 23 21:06:18 JST 2005
628
+ Content-Length: 920
629
+ Host: www.mssoapinterop.org
630
+
631
+ <?xml version="1.0" encoding="utf-8" ?>
632
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
633
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
634
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
635
+ <env:Body>
636
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
637
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
638
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
639
+ xsi:type="n2:SOAPStructStruct">
640
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
641
+ <varInt xsi:type="xsd:int">1</varInt>
642
+ <varStruct xsi:type="n2:SOAPStruct">
643
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
644
+ <varInt xsi:type="xsd:int">2</varInt>
645
+ <varString xsi:type="xsd:string">b</varString>
646
+ </varStruct>
647
+ <varString xsi:type="xsd:string">a</varString>
648
+ </inputStruct>
649
+ </n1:echoNestedStruct>
650
+ </env:Body>
651
+ </env:Envelope>
652
+
653
+ = Response
654
+
655
+ HTTP/1.1 100 Continue
656
+ Server: Microsoft-IIS/5.0
657
+ Date: Sat, 23 Jul 2005 12:55:00 GMT
658
+ X-Powered-By: ASP.NET
659
+
660
+ HTTP/1.1 200 OK
661
+ Server: Microsoft-IIS/5.0
662
+ Date: Sat, 23 Jul 2005 12:55:00 GMT
663
+ X-Powered-By: ASP.NET
664
+ X-AspNet-Version: 2.0.40301
665
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
666
+ Cache-Control: private
667
+ Content-Type: text/xml; charset="utf-8"
668
+ Content-Length: 1321
669
+
670
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
671
+ <SOAP-ENV:Header>
672
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
673
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
674
+ </a1:LogicalCallContext>
675
+ </SOAP-ENV:Header>
676
+ <SOAP-ENV:Body>
677
+ <i5:echoNestedStruct id="ref-1" xmlns:i5="http://soapinterop.org/">
678
+ <return href="#ref-7"/>
679
+ </i5:echoNestedStruct>
680
+ <i6:SOAPStructStruct id="ref-7" xmlns:i6="http://soapinterop.org/xsd">
681
+ <varString xsi:type="xsd:string">a</varString>
682
+ <varInt xsi:type="xsd:int">1</varInt>
683
+ <varFloat xsi:type="xsd:float">1.1</varFloat>
684
+ <varStruct href="#ref-8"/>
685
+ </i6:SOAPStructStruct>
686
+ <i6:SOAPStruct id="ref-8" xmlns:i6="http://soapinterop.org/xsd">
687
+ <varString xsi:type="xsd:string">b</varString>
688
+ <varInt xsi:type="xsd:int">2</varInt>
689
+ <varFloat xsi:type="xsd:float">2.2</varFloat>
690
+ </i6:SOAPStruct>
691
+ </SOAP-ENV:Body>
692
+ </SOAP-ENV:Envelope>
693
+
694
+
695
+
696
+ ##########
697
+ # echoNestedStruct (nil)
698
+
699
+ Result: Exception: **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server's .config file. (SOAP::FaultError)
700
+ #<SOAP::Mapping::Object:0xb7c74f04>
701
+
702
+ Wire dump:
703
+
704
+ = Request
705
+
706
+ POST /remoting/ServiceB.soap 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 21:06:18 JST 2005
711
+ Content-Length: 874
712
+ Host: www.mssoapinterop.org
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
+ <varFloat xsi:nil="true"></varFloat>
724
+ <varInt xsi:nil="true"></varInt>
725
+ <varStruct xsi:type="n2:SOAPStruct">
726
+ <varFloat xsi:nil="true"></varFloat>
727
+ <varInt xsi:nil="true"></varInt>
728
+ <varString xsi:nil="true"></varString>
729
+ </varStruct>
730
+ <varString xsi:nil="true"></varString>
731
+ </inputStruct>
732
+ </n1:echoNestedStruct>
733
+ </env:Body>
734
+ </env:Envelope>
735
+
736
+ = Response
737
+
738
+ HTTP/1.1 100 Continue
739
+ Server: Microsoft-IIS/5.0
740
+ Date: Sat, 23 Jul 2005 12:55:00 GMT
741
+ X-Powered-By: ASP.NET
742
+
743
+ HTTP/1.1 500 Internal Server Error
744
+ Server: Microsoft-IIS/5.0
745
+ Date: Sat, 23 Jul 2005 12:55:00 GMT
746
+ X-Powered-By: ASP.NET
747
+ X-AspNet-Version: 2.0.40301
748
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
749
+ Cache-Control: private
750
+ Content-Type: text/xml; charset="utf-8"
751
+ Content-Length: 1110
752
+
753
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
754
+ <SOAP-ENV:Body>
755
+ <SOAP-ENV:Fault id="ref-1">
756
+ <faultcode id="ref-2">SOAP-ENV:Server</faultcode>
757
+ <faultstring id="ref-3"> **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server&#39;s .config file.</faultstring>
758
+ <detail xsi:type="a1:ServerFault" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Serialization.Formatters">
759
+ <exceptionType id="ref-4">System.Runtime.Remoting.RemotingException, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</exceptionType>
760
+ <message href="#ref-3"/>
761
+ <stackTrace xsi:null="1"/>
762
+ <exception xsi:null="1"/>
763
+ </detail>
764
+ </SOAP-ENV:Fault>
765
+ </SOAP-ENV:Body>
766
+ </SOAP-ENV:Envelope>
767
+
768
+
769
+
770
+ ##########
771
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
772
+
773
+ Result: Expected = "String#-605892128" // Actual = "String#-605892858"
774
+
775
+ Wire dump:
776
+
777
+ = Request
778
+
779
+ POST /remoting/ServiceB.soap HTTP/1.1
780
+ SOAPAction: "http://soapinterop.org/"
781
+ Content-Type: text/xml; charset=utf-8
782
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
783
+ Date: Sat Jul 23 21:06:19 JST 2005
784
+ Content-Length: 1062
785
+ Host: www.mssoapinterop.org
786
+
787
+ <?xml version="1.0" encoding="utf-8" ?>
788
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
789
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
790
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
791
+ <env:Body>
792
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
793
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
794
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
795
+ xsi:type="n2:SOAPStructStruct">
796
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
797
+ <varInt xsi:type="xsd:int">1</varInt>
798
+ <varStruct xsi:type="n2:SOAPStruct">
799
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
800
+ <varInt xsi:type="xsd:int">2</varInt>
801
+ <varString href="#id-605847358"></varString>
802
+ </varStruct>
803
+ <varString href="#id-605847358"></varString>
804
+ </inputStruct>
805
+ </n1:echoNestedStruct>
806
+ <varString id="id-605847358"
807
+ xsi:type="xsd:string"
808
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
809
+ </env:Body>
810
+ </env:Envelope>
811
+
812
+ = Response
813
+
814
+ HTTP/1.1 100 Continue
815
+ Server: Microsoft-IIS/5.0
816
+ Date: Sat, 23 Jul 2005 12:55:01 GMT
817
+ X-Powered-By: ASP.NET
818
+
819
+ HTTP/1.1 200 OK
820
+ Server: Microsoft-IIS/5.0
821
+ Date: Sat, 23 Jul 2005 12:55:01 GMT
822
+ X-Powered-By: ASP.NET
823
+ X-AspNet-Version: 2.0.40301
824
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
825
+ Cache-Control: private
826
+ Content-Type: text/xml; charset="utf-8"
827
+ Content-Length: 1319
828
+
829
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
830
+ <SOAP-ENV:Header>
831
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
832
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
833
+ </a1:LogicalCallContext>
834
+ </SOAP-ENV:Header>
835
+ <SOAP-ENV:Body>
836
+ <i5:echoNestedStruct id="ref-1" xmlns:i5="http://soapinterop.org/">
837
+ <return href="#ref-7"/>
838
+ </i5:echoNestedStruct>
839
+ <i6:SOAPStructStruct id="ref-7" xmlns:i6="http://soapinterop.org/xsd">
840
+ <varString xsi:type="xsd:string"></varString>
841
+ <varInt xsi:type="xsd:int">1</varInt>
842
+ <varFloat xsi:type="xsd:float">1.1</varFloat>
843
+ <varStruct href="#ref-8"/>
844
+ </i6:SOAPStructStruct>
845
+ <i6:SOAPStruct id="ref-8" xmlns:i6="http://soapinterop.org/xsd">
846
+ <varString xsi:type="xsd:string"></varString>
847
+ <varInt xsi:type="xsd:int">2</varInt>
848
+ <varFloat xsi:type="xsd:float">2.2</varFloat>
849
+ </i6:SOAPStruct>
850
+ </SOAP-ENV:Body>
851
+ </SOAP-ENV:Envelope>
852
+
853
+
854
+
855
+ ##########
856
+ # echoNestedArray
857
+
858
+ Result: OK
859
+
860
+ Wire dump:
861
+
862
+ = Request
863
+
864
+ POST /remoting/ServiceB.soap HTTP/1.1
865
+ SOAPAction: "http://soapinterop.org/"
866
+ Content-Type: text/xml; charset=utf-8
867
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
868
+ Date: Sat Jul 23 21:06:19 JST 2005
869
+ Content-Length: 931
870
+ Host: www.mssoapinterop.org
871
+
872
+ <?xml version="1.0" encoding="utf-8" ?>
873
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
874
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
875
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
876
+ <env:Body>
877
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
878
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
879
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
880
+ xsi:type="n2:SOAPArrayStruct">
881
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
882
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
883
+ xsi:type="n3:Array"
884
+ n3:arrayType="xsd:string[3]">
885
+ <item>2</item>
886
+ <item>2.2</item>
887
+ <item>b</item>
888
+ </varArray>
889
+ <varInt xsi:type="xsd:int">1</varInt>
890
+ <varString xsi:type="xsd:string">a</varString>
891
+ </inputStruct>
892
+ </n1:echoNestedArray>
893
+ </env:Body>
894
+ </env:Envelope>
895
+
896
+ = Response
897
+
898
+ HTTP/1.1 100 Continue
899
+ Server: Microsoft-IIS/5.0
900
+ Date: Sat, 23 Jul 2005 12:55:01 GMT
901
+ X-Powered-By: ASP.NET
902
+
903
+ HTTP/1.1 200 OK
904
+ Server: Microsoft-IIS/5.0
905
+ Date: Sat, 23 Jul 2005 12:55:01 GMT
906
+ X-Powered-By: ASP.NET
907
+ X-AspNet-Version: 2.0.40301
908
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
909
+ Cache-Control: private
910
+ Content-Type: text/xml; charset="utf-8"
911
+ Content-Length: 1231
912
+
913
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
914
+ <SOAP-ENV:Header>
915
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
916
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
917
+ </a1:LogicalCallContext>
918
+ </SOAP-ENV:Header>
919
+ <SOAP-ENV:Body>
920
+ <i5:echoNestedArray id="ref-1" xmlns:i5="http://soapinterop.org/">
921
+ <return href="#ref-7"/>
922
+ </i5:echoNestedArray>
923
+ <i6:SOAPArrayStruct id="ref-7" xmlns:i6="http://soapinterop.org/xsd">
924
+ <varString xsi:type="xsd:string">a</varString>
925
+ <varInt xsi:type="xsd:int">1</varInt>
926
+ <varFloat xsi:type="xsd:float">1.1</varFloat>
927
+ <varArray href="#ref-8"/>
928
+ </i6:SOAPArrayStruct>
929
+ <SOAP-ENC:Array id="ref-8" SOAP-ENC:arrayType="xsd:string[3]">
930
+ <item>2</item>
931
+ <item>2.2</item>
932
+ <item>b</item>
933
+ </SOAP-ENC:Array>
934
+ </SOAP-ENV:Body>
935
+ </SOAP-ENV:Envelope>
936
+
937
+
938
+
939
+ ##########
940
+ # echoNestedArray (anyType array)
941
+
942
+ Result: Exception: **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server's .config file. (SOAP::FaultError)
943
+ #<SOAP::Mapping::Object:0xb7c41028>
944
+
945
+ Wire dump:
946
+
947
+ = Request
948
+
949
+ POST /remoting/ServiceB.soap HTTP/1.1
950
+ SOAPAction: "http://soapinterop.org/"
951
+ Content-Type: text/xml; charset=utf-8
952
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
953
+ Date: Sat Jul 23 21:06:20 JST 2005
954
+ Content-Length: 998
955
+ Host: www.mssoapinterop.org
956
+
957
+ <?xml version="1.0" encoding="utf-8" ?>
958
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
959
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
960
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
961
+ <env:Body>
962
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
963
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
964
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
965
+ xsi:type="n2:SOAPArrayStruct">
966
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
967
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
968
+ xsi:type="n3:Array"
969
+ n3:arrayType="xsd:anyType[3]">
970
+ <item xsi:type="xsd:string">2</item>
971
+ <item xsi:type="xsd:string">2.2</item>
972
+ <item xsi:type="xsd:string">b</item>
973
+ </varArray>
974
+ <varInt xsi:type="xsd:int">1</varInt>
975
+ <varString xsi:type="xsd:string">a</varString>
976
+ </inputStruct>
977
+ </n1:echoNestedArray>
978
+ </env:Body>
979
+ </env:Envelope>
980
+
981
+ = Response
982
+
983
+ HTTP/1.1 100 Continue
984
+ Server: Microsoft-IIS/5.0
985
+ Date: Sat, 23 Jul 2005 12:55:02 GMT
986
+ X-Powered-By: ASP.NET
987
+
988
+ HTTP/1.1 500 Internal Server Error
989
+ Server: Microsoft-IIS/5.0
990
+ Date: Sat, 23 Jul 2005 12:55:02 GMT
991
+ X-Powered-By: ASP.NET
992
+ X-AspNet-Version: 2.0.40301
993
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
994
+ Cache-Control: private
995
+ Content-Type: text/xml; charset="utf-8"
996
+ Content-Length: 1110
997
+
998
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
999
+ <SOAP-ENV:Body>
1000
+ <SOAP-ENV:Fault id="ref-1">
1001
+ <faultcode id="ref-2">SOAP-ENV:Server</faultcode>
1002
+ <faultstring id="ref-3"> **** System.Runtime.Remoting.RemotingException - Server encountered an internal error. For more information, turn off customErrors in the server&#39;s .config file.</faultstring>
1003
+ <detail xsi:type="a1:ServerFault" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Serialization.Formatters">
1004
+ <exceptionType id="ref-4">System.Runtime.Remoting.RemotingException, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</exceptionType>
1005
+ <message href="#ref-3"/>
1006
+ <stackTrace xsi:null="1"/>
1007
+ <exception xsi:null="1"/>
1008
+ </detail>
1009
+ </SOAP-ENV:Fault>
1010
+ </SOAP-ENV:Body>
1011
+ </SOAP-ENV:Envelope>
1012
+
1013
+
1014
+
1015
+ ##########
1016
+ # echoNestedArray (multi-ref)
1017
+
1018
+ Result: OK
1019
+
1020
+ Wire dump:
1021
+
1022
+ = Request
1023
+
1024
+ POST /remoting/ServiceB.soap HTTP/1.1
1025
+ SOAPAction: "http://soapinterop.org/"
1026
+ Content-Type: text/xml; charset=utf-8
1027
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1028
+ Date: Sat Jul 23 21:06:21 JST 2005
1029
+ Content-Length: 1083
1030
+ Host: www.mssoapinterop.org
1031
+
1032
+ <?xml version="1.0" encoding="utf-8" ?>
1033
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1034
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1035
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1036
+ <env:Body>
1037
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1038
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1039
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1040
+ xsi:type="n2:SOAPArrayStruct">
1041
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
1042
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1043
+ xsi:type="n3:Array"
1044
+ n3:arrayType="xsd:string[3]">
1045
+ <item>2</item>
1046
+ <item href="#id-605949498"></item>
1047
+ <item>b</item>
1048
+ </varArray>
1049
+ <varInt xsi:type="xsd:int">1</varInt>
1050
+ <varString href="#id-605949498"></varString>
1051
+ </inputStruct>
1052
+ </n1:echoNestedArray>
1053
+ <item id="id-605949498"
1054
+ xsi:type="xsd:string"
1055
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
1056
+ </env:Body>
1057
+ </env:Envelope>
1058
+
1059
+ = Response
1060
+
1061
+ HTTP/1.1 100 Continue
1062
+ Server: Microsoft-IIS/5.0
1063
+ Date: Sat, 23 Jul 2005 12:55:02 GMT
1064
+ X-Powered-By: ASP.NET
1065
+
1066
+ HTTP/1.1 200 OK
1067
+ Server: Microsoft-IIS/5.0
1068
+ Date: Sat, 23 Jul 2005 12:55:02 GMT
1069
+ X-Powered-By: ASP.NET
1070
+ X-AspNet-Version: 2.0.40301
1071
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
1072
+ Cache-Control: private
1073
+ Content-Type: text/xml; charset="utf-8"
1074
+ Content-Length: 1227
1075
+
1076
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1077
+ <SOAP-ENV:Header>
1078
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
1079
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
1080
+ </a1:LogicalCallContext>
1081
+ </SOAP-ENV:Header>
1082
+ <SOAP-ENV:Body>
1083
+ <i5:echoNestedArray id="ref-1" xmlns:i5="http://soapinterop.org/">
1084
+ <return href="#ref-7"/>
1085
+ </i5:echoNestedArray>
1086
+ <i6:SOAPArrayStruct id="ref-7" xmlns:i6="http://soapinterop.org/xsd">
1087
+ <varString xsi:type="xsd:string"></varString>
1088
+ <varInt xsi:type="xsd:int">1</varInt>
1089
+ <varFloat xsi:type="xsd:float">1.1</varFloat>
1090
+ <varArray href="#ref-8"/>
1091
+ </i6:SOAPArrayStruct>
1092
+ <SOAP-ENC:Array id="ref-8" SOAP-ENC:arrayType="xsd:string[3]">
1093
+ <item>2</item>
1094
+ <item></item>
1095
+ <item>b</item>
1096
+ </SOAP-ENC:Array>
1097
+ </SOAP-ENV:Body>
1098
+ </SOAP-ENV:Envelope>
1099
+
1100
+
1101
+
1102
+ ##########
1103
+ # echoNestedArray (multi-ref: varString == varArray[1])
1104
+
1105
+ Result: Expected = "String#-606000948" // Actual = "String#-606002088"
1106
+
1107
+ Wire dump:
1108
+
1109
+ = Request
1110
+
1111
+ POST /remoting/ServiceB.soap HTTP/1.1
1112
+ SOAPAction: "http://soapinterop.org/"
1113
+ Content-Type: text/xml; charset=utf-8
1114
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1115
+ Date: Sat Jul 23 21:06:21 JST 2005
1116
+ Content-Length: 1083
1117
+ Host: www.mssoapinterop.org
1118
+
1119
+ <?xml version="1.0" encoding="utf-8" ?>
1120
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1121
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1122
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1123
+ <env:Body>
1124
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1125
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1126
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1127
+ xsi:type="n2:SOAPArrayStruct">
1128
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
1129
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1130
+ xsi:type="n3:Array"
1131
+ n3:arrayType="xsd:string[3]">
1132
+ <item>2</item>
1133
+ <item href="#id-605977648"></item>
1134
+ <item>b</item>
1135
+ </varArray>
1136
+ <varInt xsi:type="xsd:int">1</varInt>
1137
+ <varString href="#id-605977648"></varString>
1138
+ </inputStruct>
1139
+ </n1:echoNestedArray>
1140
+ <item id="id-605977648"
1141
+ xsi:type="xsd:string"
1142
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
1143
+ </env:Body>
1144
+ </env:Envelope>
1145
+
1146
+ = Response
1147
+
1148
+ HTTP/1.1 100 Continue
1149
+ Server: Microsoft-IIS/5.0
1150
+ Date: Sat, 23 Jul 2005 12:55:03 GMT
1151
+ X-Powered-By: ASP.NET
1152
+
1153
+ HTTP/1.1 200 OK
1154
+ Server: Microsoft-IIS/5.0
1155
+ Date: Sat, 23 Jul 2005 12:55:03 GMT
1156
+ X-Powered-By: ASP.NET
1157
+ X-AspNet-Version: 2.0.40301
1158
+ Server: MS .NET Remoting, MS .NET CLR 2.0.40301.9
1159
+ Cache-Control: private
1160
+ Content-Type: text/xml; charset="utf-8"
1161
+ Content-Length: 1227
1162
+
1163
+ <SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1164
+ <SOAP-ENV:Header>
1165
+ <h4:__CallContext href="#ref-3" xmlns:h4="http://schemas.microsoft.com/clr/soap/messageProperties" SOAP-ENC:root="1"/>
1166
+ <a1:LogicalCallContext id="ref-3" xmlns:a1="http://schemas.microsoft.com/clr/ns/System.Runtime.Remoting.Messaging">
1167
+ </a1:LogicalCallContext>
1168
+ </SOAP-ENV:Header>
1169
+ <SOAP-ENV:Body>
1170
+ <i5:echoNestedArray id="ref-1" xmlns:i5="http://soapinterop.org/">
1171
+ <return href="#ref-7"/>
1172
+ </i5:echoNestedArray>
1173
+ <i6:SOAPArrayStruct id="ref-7" xmlns:i6="http://soapinterop.org/xsd">
1174
+ <varString xsi:type="xsd:string"></varString>
1175
+ <varInt xsi:type="xsd:int">1</varInt>
1176
+ <varFloat xsi:type="xsd:float">1.1</varFloat>
1177
+ <varArray href="#ref-8"/>
1178
+ </i6:SOAPArrayStruct>
1179
+ <SOAP-ENC:Array id="ref-8" SOAP-ENC:arrayType="xsd:string[3]">
1180
+ <item>2</item>
1181
+ <item></item>
1182
+ <item>b</item>
1183
+ </SOAP-ENC:Array>
1184
+ </SOAP-ENV:Body>
1185
+ </SOAP-ENV:Envelope>
1186
+
1187
+
1188
+