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,871 @@
1
+ File: clientMSSOAPToolkit2.0_GroupB.log - Wiredumps for SOAP4R client / MicrosoftSoapToolkitV2 server.
2
+ Date: Sat Jul 23 21:07:32 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: OK
8
+
9
+ Wire dump:
10
+
11
+ = Request
12
+
13
+ ! CONNECTION ESTABLISHED
14
+ POST /stk/InteropBtyped.wsdl 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:07:32 JST 2005
19
+ Content-Length: 700
20
+ Host: 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:56:15 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:56:15 GMT
49
+ X-Powered-By: ASP.NET
50
+ Content-Type: text/xml; charset="UTF-8"
51
+ Content-Length: 900
52
+ Expires: -1;
53
+
54
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoStructAsSimpleTypesResponse xmlns:SOAPSDK1="http://soapinterop.org/"><outputString xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://www.w3.org/2001/XMLSchema" SOAPSDK2:type="SOAPSDK3:string">a</outputString><outputInteger xmlns:SOAPSDK4="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK5="http://www.w3.org/2001/XMLSchema" SOAPSDK4:type="SOAPSDK5:int">1</outputInteger><outputFloat xmlns:SOAPSDK6="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK7="http://www.w3.org/2001/XMLSchema" SOAPSDK6:type="SOAPSDK7:float">1.10000002384186</outputFloat></SOAPSDK1:echoStructAsSimpleTypesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
55
+
56
+
57
+ ##########
58
+ # echoStructAsSimpleTypes (nil)
59
+
60
+ Result: Exception: Type mismatch (SOAP::FaultError)
61
+ #<SOAP::Mapping::Object:0xb7cbb7f4>
62
+
63
+ Wire dump:
64
+
65
+ = Request
66
+
67
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
68
+ SOAPAction: "http://soapinterop.org/"
69
+ Content-Type: text/xml; charset=utf-8
70
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
71
+ Date: Sat Jul 23 21:07:33 JST 2005
72
+ Content-Length: 677
73
+ Host: mssoapinterop.org
74
+
75
+ <?xml version="1.0" encoding="utf-8" ?>
76
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
77
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
78
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
79
+ <env:Body>
80
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
81
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
82
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
83
+ xsi:type="n2:SOAPStruct">
84
+ <varFloat xsi:nil="true"></varFloat>
85
+ <varInt xsi:nil="true"></varInt>
86
+ <varString xsi:nil="true"></varString>
87
+ </inputStruct>
88
+ </n1:echoStructAsSimpleTypes>
89
+ </env:Body>
90
+ </env:Envelope>
91
+
92
+ = Response
93
+
94
+ HTTP/1.1 100 Continue
95
+ Server: Microsoft-IIS/5.0
96
+ Date: Sat, 23 Jul 2005 12:56:15 GMT
97
+ X-Powered-By: ASP.NET
98
+
99
+ HTTP/1.1 500 Internal Server Error
100
+ Server: Microsoft-IIS/5.0
101
+ Date: Sat, 23 Jul 2005 12:56:15 GMT
102
+ X-Powered-By: ASP.NET
103
+ Content-Type: text/xml; charset="UTF-8"
104
+ Content-Length: 1597
105
+ Expires: -1;
106
+
107
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Type mismatch</faultstring><faultactor>http://soapinterop.org/</faultactor><detail><mserror:errorInfo xmlns:mserror="http://schemas.microsoft.com/soap-toolkit/faultdetail/error/"><mserror:returnCode>-2146828275</mserror:returnCode><mserror:serverErrorInfo><mserror:description>Type mismatch</mserror:description><mserror:source>STKInterop5</mserror:source></mserror:serverErrorInfo><mserror:callStack><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Converting data for SoapMapper failed inside the typemapper</mserror:description><mserror:returnCode>-2147352571</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Restoring data into SoapMapper SOAPStruct failed</mserror:description><mserror:returnCode>-2146828275</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>WSDLReader</mserror:component><mserror:description>None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem</mserror:description><mserror:returnCode>-2147024809</mserror:returnCode></mserror:callElement></mserror:callStack></mserror:errorInfo></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
108
+
109
+
110
+ ##########
111
+ # echoSimpleTypesAsStruct
112
+
113
+ Result: OK
114
+
115
+ Wire dump:
116
+
117
+ = Request
118
+
119
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
120
+ SOAPAction: "http://soapinterop.org/"
121
+ Content-Type: text/xml; charset=utf-8
122
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
123
+ Date: Sat Jul 23 21:07:34 JST 2005
124
+ Content-Length: 600
125
+ Host: mssoapinterop.org
126
+
127
+ <?xml version="1.0" encoding="utf-8" ?>
128
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
129
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
130
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
131
+ <env:Body>
132
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
133
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
134
+ <inputString xsi:type="xsd:string">a</inputString>
135
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
136
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
137
+ </n1:echoSimpleTypesAsStruct>
138
+ </env:Body>
139
+ </env:Envelope>
140
+
141
+ = Response
142
+
143
+ HTTP/1.1 100 Continue
144
+ Server: Microsoft-IIS/5.0
145
+ Date: Sat, 23 Jul 2005 12:56:16 GMT
146
+ X-Powered-By: ASP.NET
147
+
148
+ HTTP/1.1 200 OK
149
+ Server: Microsoft-IIS/5.0
150
+ Date: Sat, 23 Jul 2005 12:56:16 GMT
151
+ X-Powered-By: ASP.NET
152
+ Content-Type: text/xml; charset="UTF-8"
153
+ Content-Length: 696
154
+ Expires: -1;
155
+
156
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoSimpleTypesAsStructResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat></return></SOAPSDK1:echoSimpleTypesAsStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
157
+
158
+
159
+ ##########
160
+ # echoSimpleTypesAsStruct (nil)
161
+
162
+ Result: Exception: SoapMapper: Converting data for SoapMapper failed inside the typemapper (SOAP::FaultError)
163
+ #<SOAP::Mapping::Object:0xb7c84754>
164
+
165
+ Wire dump:
166
+
167
+ = Request
168
+
169
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
170
+ SOAPAction: "http://soapinterop.org/"
171
+ Content-Type: text/xml; charset=utf-8
172
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
173
+ Date: Sat Jul 23 21:07:34 JST 2005
174
+ Content-Length: 577
175
+ Host: mssoapinterop.org
176
+
177
+ <?xml version="1.0" encoding="utf-8" ?>
178
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
179
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
180
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
181
+ <env:Body>
182
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
183
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
184
+ <inputString xsi:nil="true"></inputString>
185
+ <inputInteger xsi:nil="true"></inputInteger>
186
+ <inputFloat xsi:nil="true"></inputFloat>
187
+ </n1:echoSimpleTypesAsStruct>
188
+ </env:Body>
189
+ </env:Envelope>
190
+
191
+ = Response
192
+
193
+ HTTP/1.1 100 Continue
194
+ Server: Microsoft-IIS/5.0
195
+ Date: Sat, 23 Jul 2005 12:56:16 GMT
196
+ X-Powered-By: ASP.NET
197
+
198
+ HTTP/1.1 500 Internal Server Error
199
+ Server: Microsoft-IIS/5.0
200
+ Date: Sat, 23 Jul 2005 12:56:16 GMT
201
+ X-Powered-By: ASP.NET
202
+ Content-Type: text/xml; charset="UTF-8"
203
+ Content-Length: 1497
204
+ Expires: -1;
205
+
206
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>SoapMapper: Converting data for SoapMapper failed inside the typemapper</faultstring><faultactor>http://soapinterop.org/</faultactor><detail><mserror:errorInfo xmlns:mserror="http://schemas.microsoft.com/soap-toolkit/faultdetail/error/"><mserror:returnCode>-2147352571</mserror:returnCode><mserror:callStack><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Converting data for SoapMapper failed inside the typemapper</mserror:description><mserror:returnCode>-2147352571</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Restoring data into SoapMapper int failed</mserror:description><mserror:returnCode>-2147352571</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>WSDLReader</mserror:component><mserror:description>None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem</mserror:description><mserror:returnCode>-2147024809</mserror:returnCode></mserror:callElement></mserror:callStack></mserror:errorInfo></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
207
+
208
+
209
+ ##########
210
+ # echo2DStringArray
211
+
212
+ Result: OK
213
+
214
+ Wire dump:
215
+
216
+ = Request
217
+
218
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
219
+ SOAPAction: "http://soapinterop.org/"
220
+ Content-Type: text/xml; charset=utf-8
221
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
222
+ Date: Sat Jul 23 21:07:36 JST 2005
223
+ Content-Length: 889
224
+ Host: mssoapinterop.org
225
+
226
+ <?xml version="1.0" encoding="utf-8" ?>
227
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
228
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
229
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
230
+ <env:Body>
231
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
232
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
233
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
234
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
235
+ xsi:type="n2:ArrayOfString2D"
236
+ n3:arrayType="xsd:string[3,3]">
237
+ <item>r0c0</item>
238
+ <item>r1c0</item>
239
+ <item>r2c0</item>
240
+ <item>r0c1</item>
241
+ <item>r1c1</item>
242
+ <item>r2c1</item>
243
+ <item>r0c2</item>
244
+ <item>r1c2</item>
245
+ <item>r2c2</item>
246
+ </input2DStringArray>
247
+ </n1:echo2DStringArray>
248
+ </env:Body>
249
+ </env:Envelope>
250
+
251
+ = Response
252
+
253
+ HTTP/1.1 100 Continue
254
+ Server: Microsoft-IIS/5.0
255
+ Date: Sat, 23 Jul 2005 12:56:18 GMT
256
+ X-Powered-By: ASP.NET
257
+
258
+ HTTP/1.1 200 OK
259
+ Server: Microsoft-IIS/5.0
260
+ Date: Sat, 23 Jul 2005 12:56:18 GMT
261
+ X-Powered-By: ASP.NET
262
+ Content-Type: text/xml; charset="UTF-8"
263
+ Content-Length: 973
264
+ Expires: -1;
265
+
266
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echo2DStringArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK3:arrayType="SOAPSDK2:string[3,3]" xmlns:SOAPSDK4="http://www.w3.org/2001/XMLSchema-instance" SOAPSDK4:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>r2c0</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r2c1</SOAPSDK3:string><SOAPSDK3:string>r0c2</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK1:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
267
+
268
+
269
+ ##########
270
+ # echo2DStringArray (anyType array)
271
+
272
+ Result: OK
273
+
274
+ Wire dump:
275
+
276
+ = Request
277
+
278
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
279
+ SOAPAction: "http://soapinterop.org/"
280
+ Content-Type: text/xml; charset=utf-8
281
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
282
+ Date: Sat Jul 23 21:07:37 JST 2005
283
+ Content-Length: 1088
284
+ Host: mssoapinterop.org
285
+
286
+ <?xml version="1.0" encoding="utf-8" ?>
287
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
288
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
289
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
290
+ <env:Body>
291
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
292
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
293
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
294
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
295
+ xsi:type="n2:ArrayOfString2D"
296
+ n3:arrayType="xsd:anyType[3,3]">
297
+ <item xsi:type="xsd:string">r0c0</item>
298
+ <item xsi:type="xsd:string">r0c1</item>
299
+ <item xsi:type="xsd:string">r0c2</item>
300
+ <item xsi:type="xsd:string">r1c0</item>
301
+ <item xsi:type="xsd:string">r1c1</item>
302
+ <item xsi:type="xsd:string">r1c2</item>
303
+ <item xsi:type="xsd:string">r2c0</item>
304
+ <item xsi:type="xsd:string">r0c1</item>
305
+ <item xsi:type="xsd:string">r2c2</item>
306
+ </input2DStringArray>
307
+ </n1:echo2DStringArray>
308
+ </env:Body>
309
+ </env:Envelope>
310
+
311
+ = Response
312
+
313
+ HTTP/1.1 100 Continue
314
+ Server: Microsoft-IIS/5.0
315
+ Date: Sat, 23 Jul 2005 12:56:18 GMT
316
+ X-Powered-By: ASP.NET
317
+
318
+ HTTP/1.1 200 OK
319
+ Server: Microsoft-IIS/5.0
320
+ Date: Sat, 23 Jul 2005 12:56:18 GMT
321
+ X-Powered-By: ASP.NET
322
+ Content-Type: text/xml; charset="UTF-8"
323
+ Content-Length: 973
324
+ Expires: -1;
325
+
326
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echo2DStringArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK3:arrayType="SOAPSDK2:string[3,3]" xmlns:SOAPSDK4="http://www.w3.org/2001/XMLSchema-instance" SOAPSDK4:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r0c2</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c0</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK1:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
327
+
328
+
329
+ ##########
330
+ # echo2DStringArray (multi-ref)
331
+
332
+ Result: OK
333
+
334
+ Wire dump:
335
+
336
+ = Request
337
+
338
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
339
+ SOAPAction: "http://soapinterop.org/"
340
+ Content-Type: text/xml; charset=utf-8
341
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
342
+ Date: Sat Jul 23 21:07:37 JST 2005
343
+ Content-Length: 1063
344
+ Host: mssoapinterop.org
345
+
346
+ <?xml version="1.0" encoding="utf-8" ?>
347
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
348
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
349
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
350
+ <env:Body>
351
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
352
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
353
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
354
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
355
+ xsi:type="n2:ArrayOfString2D"
356
+ n3:arrayType="xsd:string[3,3]">
357
+ <item>r0c0</item>
358
+ <item>r1c0</item>
359
+ <item href="#id-605912084"></item>
360
+ <item>r0c1</item>
361
+ <item>r1c1</item>
362
+ <item>r2c1</item>
363
+ <item href="#id-605912084"></item>
364
+ <item>r1c2</item>
365
+ <item>r2c2</item>
366
+ </input2DStringArray>
367
+ </n1:echo2DStringArray>
368
+ <item id="id-605912084"
369
+ xsi:type="xsd:string"
370
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
371
+ </env:Body>
372
+ </env:Envelope>
373
+
374
+ = Response
375
+
376
+ HTTP/1.1 100 Continue
377
+ Server: Microsoft-IIS/5.0
378
+ Date: Sat, 23 Jul 2005 12:56:20 GMT
379
+ X-Powered-By: ASP.NET
380
+
381
+ HTTP/1.1 200 OK
382
+ Server: Microsoft-IIS/5.0
383
+ Date: Sat, 23 Jul 2005 12:56:20 GMT
384
+ X-Powered-By: ASP.NET
385
+ Content-Type: text/xml; charset="UTF-8"
386
+ Content-Length: 973
387
+ Expires: -1;
388
+
389
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echo2DStringArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK3:arrayType="SOAPSDK2:string[3,3]" xmlns:SOAPSDK4="http://www.w3.org/2001/XMLSchema-instance" SOAPSDK4:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r2c1</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK1:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
390
+
391
+
392
+ ##########
393
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
394
+
395
+ Result: Expected = "String#-605965194" // Actual = "String#-605963494"
396
+
397
+ Wire dump:
398
+
399
+ = Request
400
+
401
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
402
+ SOAPAction: "http://soapinterop.org/"
403
+ Content-Type: text/xml; charset=utf-8
404
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
405
+ Date: Sat Jul 23 21:07:38 JST 2005
406
+ Content-Length: 1063
407
+ Host: mssoapinterop.org
408
+
409
+ <?xml version="1.0" encoding="utf-8" ?>
410
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
411
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
412
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
413
+ <env:Body>
414
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
415
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
416
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
417
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
418
+ xsi:type="n2:ArrayOfString2D"
419
+ n3:arrayType="xsd:string[3,3]">
420
+ <item>r0c0</item>
421
+ <item>r1c0</item>
422
+ <item href="#id-605940974"></item>
423
+ <item>r0c1</item>
424
+ <item>r1c1</item>
425
+ <item>r2c1</item>
426
+ <item href="#id-605940974"></item>
427
+ <item>r1c2</item>
428
+ <item>r2c2</item>
429
+ </input2DStringArray>
430
+ </n1:echo2DStringArray>
431
+ <item id="id-605940974"
432
+ xsi:type="xsd:string"
433
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
434
+ </env:Body>
435
+ </env:Envelope>
436
+
437
+ = Response
438
+
439
+ HTTP/1.1 100 Continue
440
+ Server: Microsoft-IIS/5.0
441
+ Date: Sat, 23 Jul 2005 12:56:20 GMT
442
+ X-Powered-By: ASP.NET
443
+
444
+ HTTP/1.1 200 OK
445
+ Server: Microsoft-IIS/5.0
446
+ Date: Sat, 23 Jul 2005 12:56:20 GMT
447
+ X-Powered-By: ASP.NET
448
+ Content-Type: text/xml; charset="UTF-8"
449
+ Content-Length: 973
450
+ Expires: -1;
451
+
452
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echo2DStringArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK3:arrayType="SOAPSDK2:string[3,3]" xmlns:SOAPSDK4="http://www.w3.org/2001/XMLSchema-instance" SOAPSDK4:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r2c1</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK1:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
453
+
454
+
455
+ ##########
456
+ # echoNestedStruct
457
+
458
+ Result: OK
459
+
460
+ Wire dump:
461
+
462
+ = Request
463
+
464
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
465
+ SOAPAction: "http://soapinterop.org/"
466
+ Content-Type: text/xml; charset=utf-8
467
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
468
+ Date: Sat Jul 23 21:07:39 JST 2005
469
+ Content-Length: 920
470
+ Host: mssoapinterop.org
471
+
472
+ <?xml version="1.0" encoding="utf-8" ?>
473
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
474
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
475
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
476
+ <env:Body>
477
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
478
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
479
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
480
+ xsi:type="n2:SOAPStructStruct">
481
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
482
+ <varInt xsi:type="xsd:int">1</varInt>
483
+ <varStruct xsi:type="n2:SOAPStruct">
484
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
485
+ <varInt xsi:type="xsd:int">2</varInt>
486
+ <varString xsi:type="xsd:string">b</varString>
487
+ </varStruct>
488
+ <varString xsi:type="xsd:string">a</varString>
489
+ </inputStruct>
490
+ </n1:echoNestedStruct>
491
+ </env:Body>
492
+ </env:Envelope>
493
+
494
+ = Response
495
+
496
+ HTTP/1.1 100 Continue
497
+ Server: Microsoft-IIS/5.0
498
+ Date: Sat, 23 Jul 2005 12:56:21 GMT
499
+ X-Powered-By: ASP.NET
500
+
501
+ HTTP/1.1 200 OK
502
+ Server: Microsoft-IIS/5.0
503
+ Date: Sat, 23 Jul 2005 12:56:21 GMT
504
+ X-Powered-By: ASP.NET
505
+ Content-Type: text/xml; charset="UTF-8"
506
+ Content-Length: 877
507
+ Expires: -1;
508
+
509
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoNestedStructResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPStructStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat><varStruct xsi:type="si:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.20000004768372</varFloat></varStruct></return></SOAPSDK1:echoNestedStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
510
+
511
+
512
+ ##########
513
+ # echoNestedStruct (nil)
514
+
515
+ Result: Exception: Type mismatch (SOAP::FaultError)
516
+ #<SOAP::Mapping::Object:0xb7c202cc>
517
+
518
+ Wire dump:
519
+
520
+ = Request
521
+
522
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
523
+ SOAPAction: "http://soapinterop.org/"
524
+ Content-Type: text/xml; charset=utf-8
525
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
526
+ Date: Sat Jul 23 21:07:39 JST 2005
527
+ Content-Length: 874
528
+ Host: mssoapinterop.org
529
+
530
+ <?xml version="1.0" encoding="utf-8" ?>
531
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
532
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
533
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
534
+ <env:Body>
535
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
536
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
537
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
538
+ xsi:type="n2:SOAPStructStruct">
539
+ <varFloat xsi:nil="true"></varFloat>
540
+ <varInt xsi:nil="true"></varInt>
541
+ <varStruct xsi:type="n2:SOAPStruct">
542
+ <varFloat xsi:nil="true"></varFloat>
543
+ <varInt xsi:nil="true"></varInt>
544
+ <varString xsi:nil="true"></varString>
545
+ </varStruct>
546
+ <varString xsi:nil="true"></varString>
547
+ </inputStruct>
548
+ </n1:echoNestedStruct>
549
+ </env:Body>
550
+ </env:Envelope>
551
+
552
+ = Response
553
+
554
+ HTTP/1.1 100 Continue
555
+ Server: Microsoft-IIS/5.0
556
+ Date: Sat, 23 Jul 2005 12:56:21 GMT
557
+ X-Powered-By: ASP.NET
558
+
559
+ HTTP/1.1 500 Internal Server Error
560
+ Server: Microsoft-IIS/5.0
561
+ Date: Sat, 23 Jul 2005 12:56:21 GMT
562
+ X-Powered-By: ASP.NET
563
+ Content-Type: text/xml; charset="UTF-8"
564
+ Content-Length: 1603
565
+ Expires: -1;
566
+
567
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Type mismatch</faultstring><faultactor>http://soapinterop.org/</faultactor><detail><mserror:errorInfo xmlns:mserror="http://schemas.microsoft.com/soap-toolkit/faultdetail/error/"><mserror:returnCode>-2146828275</mserror:returnCode><mserror:serverErrorInfo><mserror:description>Type mismatch</mserror:description><mserror:source>STKInterop5</mserror:source></mserror:serverErrorInfo><mserror:callStack><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Converting data for SoapMapper failed inside the typemapper</mserror:description><mserror:returnCode>-2147352571</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Restoring data into SoapMapper SOAPStructStruct failed</mserror:description><mserror:returnCode>-2146828275</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>WSDLReader</mserror:component><mserror:description>None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem</mserror:description><mserror:returnCode>-2147024809</mserror:returnCode></mserror:callElement></mserror:callStack></mserror:errorInfo></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
568
+
569
+
570
+ ##########
571
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
572
+
573
+ Result: Expected = "String#-606043614" // Actual = "String#-606044314"
574
+
575
+ Wire dump:
576
+
577
+ = Request
578
+
579
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
580
+ SOAPAction: "http://soapinterop.org/"
581
+ Content-Type: text/xml; charset=utf-8
582
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
583
+ Date: Sat Jul 23 21:07:40 JST 2005
584
+ Content-Length: 1062
585
+ Host: mssoapinterop.org
586
+
587
+ <?xml version="1.0" encoding="utf-8" ?>
588
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
589
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
590
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
591
+ <env:Body>
592
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
593
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
594
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
595
+ xsi:type="n2:SOAPStructStruct">
596
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
597
+ <varInt xsi:type="xsd:int">1</varInt>
598
+ <varStruct xsi:type="n2:SOAPStruct">
599
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
600
+ <varInt xsi:type="xsd:int">2</varInt>
601
+ <varString href="#id-606025494"></varString>
602
+ </varStruct>
603
+ <varString href="#id-606025494"></varString>
604
+ </inputStruct>
605
+ </n1:echoNestedStruct>
606
+ <varString id="id-606025494"
607
+ xsi:type="xsd:string"
608
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
609
+ </env:Body>
610
+ </env:Envelope>
611
+
612
+ = Response
613
+
614
+ HTTP/1.1 100 Continue
615
+ Server: Microsoft-IIS/5.0
616
+ Date: Sat, 23 Jul 2005 12:56:22 GMT
617
+ X-Powered-By: ASP.NET
618
+
619
+ HTTP/1.1 200 OK
620
+ Server: Microsoft-IIS/5.0
621
+ Date: Sat, 23 Jul 2005 12:56:22 GMT
622
+ X-Powered-By: ASP.NET
623
+ Content-Type: text/xml; charset="UTF-8"
624
+ Content-Length: 875
625
+ Expires: -1;
626
+
627
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoNestedStructResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPStructStruct"><varString xsi:type="xsd:string"></varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat><varStruct xsi:type="si:SOAPStruct"><varString xsi:type="xsd:string"></varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.20000004768372</varFloat></varStruct></return></SOAPSDK1:echoNestedStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
628
+
629
+
630
+ ##########
631
+ # echoNestedArray
632
+
633
+ Result: OK
634
+
635
+ Wire dump:
636
+
637
+ = Request
638
+
639
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
640
+ SOAPAction: "http://soapinterop.org/"
641
+ Content-Type: text/xml; charset=utf-8
642
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
643
+ Date: Sat Jul 23 21:07:41 JST 2005
644
+ Content-Length: 931
645
+ Host: mssoapinterop.org
646
+
647
+ <?xml version="1.0" encoding="utf-8" ?>
648
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
649
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
650
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
651
+ <env:Body>
652
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
653
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
654
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
655
+ xsi:type="n2:SOAPArrayStruct">
656
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
657
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
658
+ xsi:type="n3:Array"
659
+ n3:arrayType="xsd:string[3]">
660
+ <item>2</item>
661
+ <item>2.2</item>
662
+ <item>b</item>
663
+ </varArray>
664
+ <varInt xsi:type="xsd:int">1</varInt>
665
+ <varString xsi:type="xsd:string">a</varString>
666
+ </inputStruct>
667
+ </n1:echoNestedArray>
668
+ </env:Body>
669
+ </env:Envelope>
670
+
671
+ = Response
672
+
673
+ HTTP/1.1 100 Continue
674
+ Server: Microsoft-IIS/5.0
675
+ Date: Sat, 23 Jul 2005 12:56:22 GMT
676
+ X-Powered-By: ASP.NET
677
+
678
+ HTTP/1.1 200 OK
679
+ Server: Microsoft-IIS/5.0
680
+ Date: Sat, 23 Jul 2005 12:56:22 GMT
681
+ X-Powered-By: ASP.NET
682
+ Content-Type: text/xml; charset="UTF-8"
683
+ Content-Length: 936
684
+ Expires: -1;
685
+
686
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoNestedArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPArrayStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat><varArray xmlns:SOAPSDK2="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK2:arrayType="xsd:string[3]" xsi:type="SOAPSDK2:Array"><SOAPSDK2:string>2</SOAPSDK2:string><SOAPSDK2:string>2.2</SOAPSDK2:string><SOAPSDK2:string>b</SOAPSDK2:string></varArray></return></SOAPSDK1:echoNestedArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
687
+
688
+
689
+ ##########
690
+ # echoNestedArray (anyType array)
691
+
692
+ Result: OK
693
+
694
+ Wire dump:
695
+
696
+ = Request
697
+
698
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
699
+ SOAPAction: "http://soapinterop.org/"
700
+ Content-Type: text/xml; charset=utf-8
701
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
702
+ Date: Sat Jul 23 21:07:41 JST 2005
703
+ Content-Length: 998
704
+ Host: mssoapinterop.org
705
+
706
+ <?xml version="1.0" encoding="utf-8" ?>
707
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
708
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
709
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
710
+ <env:Body>
711
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
712
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
713
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
714
+ xsi:type="n2:SOAPArrayStruct">
715
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
716
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
717
+ xsi:type="n3:Array"
718
+ n3:arrayType="xsd:anyType[3]">
719
+ <item xsi:type="xsd:string">2</item>
720
+ <item xsi:type="xsd:string">2.2</item>
721
+ <item xsi:type="xsd:string">b</item>
722
+ </varArray>
723
+ <varInt xsi:type="xsd:int">1</varInt>
724
+ <varString xsi:type="xsd:string">a</varString>
725
+ </inputStruct>
726
+ </n1:echoNestedArray>
727
+ </env:Body>
728
+ </env:Envelope>
729
+
730
+ = Response
731
+
732
+ HTTP/1.1 100 Continue
733
+ Server: Microsoft-IIS/5.0
734
+ Date: Sat, 23 Jul 2005 12:56:24 GMT
735
+ X-Powered-By: ASP.NET
736
+
737
+ HTTP/1.1 200 OK
738
+ Server: Microsoft-IIS/5.0
739
+ Date: Sat, 23 Jul 2005 12:56:24 GMT
740
+ X-Powered-By: ASP.NET
741
+ Content-Type: text/xml; charset="UTF-8"
742
+ Content-Length: 936
743
+ Expires: -1;
744
+
745
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoNestedArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPArrayStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat><varArray xmlns:SOAPSDK2="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK2:arrayType="xsd:string[3]" xsi:type="SOAPSDK2:Array"><SOAPSDK2:string>2</SOAPSDK2:string><SOAPSDK2:string>2.2</SOAPSDK2:string><SOAPSDK2:string>b</SOAPSDK2:string></varArray></return></SOAPSDK1:echoNestedArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
746
+
747
+
748
+ ##########
749
+ # echoNestedArray (multi-ref)
750
+
751
+ Result: OK
752
+
753
+ Wire dump:
754
+
755
+ = Request
756
+
757
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
758
+ SOAPAction: "http://soapinterop.org/"
759
+ Content-Type: text/xml; charset=utf-8
760
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
761
+ Date: Sat Jul 23 21:07:42 JST 2005
762
+ Content-Length: 1083
763
+ Host: mssoapinterop.org
764
+
765
+ <?xml version="1.0" encoding="utf-8" ?>
766
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
767
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
768
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
769
+ <env:Body>
770
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
771
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
772
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
773
+ xsi:type="n2:SOAPArrayStruct">
774
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
775
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
776
+ xsi:type="n3:Array"
777
+ n3:arrayType="xsd:string[3]">
778
+ <item>2</item>
779
+ <item href="#id-606100134"></item>
780
+ <item>b</item>
781
+ </varArray>
782
+ <varInt xsi:type="xsd:int">1</varInt>
783
+ <varString href="#id-606100134"></varString>
784
+ </inputStruct>
785
+ </n1:echoNestedArray>
786
+ <item id="id-606100134"
787
+ xsi:type="xsd:string"
788
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
789
+ </env:Body>
790
+ </env:Envelope>
791
+
792
+ = Response
793
+
794
+ HTTP/1.1 100 Continue
795
+ Server: Microsoft-IIS/5.0
796
+ Date: Sat, 23 Jul 2005 12:56:24 GMT
797
+ X-Powered-By: ASP.NET
798
+
799
+ HTTP/1.1 200 OK
800
+ Server: Microsoft-IIS/5.0
801
+ Date: Sat, 23 Jul 2005 12:56:24 GMT
802
+ X-Powered-By: ASP.NET
803
+ Content-Type: text/xml; charset="UTF-8"
804
+ Content-Length: 932
805
+ Expires: -1;
806
+
807
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoNestedArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPArrayStruct"><varString xsi:type="xsd:string"></varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat><varArray xmlns:SOAPSDK2="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK2:arrayType="xsd:string[3]" xsi:type="SOAPSDK2:Array"><SOAPSDK2:string>2</SOAPSDK2:string><SOAPSDK2:string></SOAPSDK2:string><SOAPSDK2:string>b</SOAPSDK2:string></varArray></return></SOAPSDK1:echoNestedArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
808
+
809
+
810
+ ##########
811
+ # echoNestedArray (multi-ref: varString == varArray[1])
812
+
813
+ Result: Expected = "String#-605533734" // Actual = "String#-605536124"
814
+
815
+ Wire dump:
816
+
817
+ = Request
818
+
819
+ POST /stk/InteropBtyped.wsdl HTTP/1.1
820
+ SOAPAction: "http://soapinterop.org/"
821
+ Content-Type: text/xml; charset=utf-8
822
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
823
+ Date: Sat Jul 23 21:07:43 JST 2005
824
+ Content-Length: 1083
825
+ Host: mssoapinterop.org
826
+
827
+ <?xml version="1.0" encoding="utf-8" ?>
828
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
829
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
830
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
831
+ <env:Body>
832
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
833
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
834
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
835
+ xsi:type="n2:SOAPArrayStruct">
836
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
837
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
838
+ xsi:type="n3:Array"
839
+ n3:arrayType="xsd:string[3]">
840
+ <item>2</item>
841
+ <item href="#id-605499774"></item>
842
+ <item>b</item>
843
+ </varArray>
844
+ <varInt xsi:type="xsd:int">1</varInt>
845
+ <varString href="#id-605499774"></varString>
846
+ </inputStruct>
847
+ </n1:echoNestedArray>
848
+ <item id="id-605499774"
849
+ xsi:type="xsd:string"
850
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
851
+ </env:Body>
852
+ </env:Envelope>
853
+
854
+ = Response
855
+
856
+ HTTP/1.1 100 Continue
857
+ Server: Microsoft-IIS/5.0
858
+ Date: Sat, 23 Jul 2005 12:56:25 GMT
859
+ X-Powered-By: ASP.NET
860
+
861
+ HTTP/1.1 200 OK
862
+ Server: Microsoft-IIS/5.0
863
+ Date: Sat, 23 Jul 2005 12:56:25 GMT
864
+ X-Powered-By: ASP.NET
865
+ Content-Type: text/xml; charset="UTF-8"
866
+ Content-Length: 932
867
+ Expires: -1;
868
+
869
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body><SOAPSDK1:echoNestedArrayResponse xmlns:SOAPSDK1="http://soapinterop.org/"><return xmlns:si="http://soapinterop.org/xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="si:SOAPArrayStruct"><varString xsi:type="xsd:string"></varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.10000002384186</varFloat><varArray xmlns:SOAPSDK2="http://schemas.xmlsoap.org/soap/encoding/" SOAPSDK2:arrayType="xsd:string[3]" xsi:type="SOAPSDK2:Array"><SOAPSDK2:string>2</SOAPSDK2:string><SOAPSDK2:string></SOAPSDK2:string><SOAPSDK2:string>b</SOAPSDK2:string></varArray></return></SOAPSDK1:echoNestedArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
870
+
871
+