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,958 @@
1
+ File: clientNuSOAP_GroupB.log - Wiredumps for SOAP4R client / NuSOAP server.
2
+ Date: Sat Jul 23 21:10:39 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
8
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
9
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
10
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
11
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
12
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
13
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
14
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1676:in `doTestGroupB'
15
+ clientNuSOAP.rb:18
16
+
17
+ Wire dump:
18
+
19
+ = Request
20
+
21
+ ! CONNECTION ESTABLISHED
22
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
23
+ SOAPAction: "http://soapinterop.org/"
24
+ Content-Type: text/xml; charset=utf-8
25
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
26
+ Date: Sat Jul 23 21:10:39 JST 2005
27
+ Content-Length: 700
28
+ Host: dietrich.ganx4.com
29
+
30
+ <?xml version="1.0" encoding="utf-8" ?>
31
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
32
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
33
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
34
+ <env:Body>
35
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
36
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
37
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
38
+ xsi:type="n2:SOAPStruct">
39
+ <varInt xsi:type="xsd:int">1</varInt>
40
+ <varString xsi:type="xsd:string">a</varString>
41
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
42
+ </inputStruct>
43
+ </n1:echoStructAsSimpleTypes>
44
+ </env:Body>
45
+ </env:Envelope>
46
+
47
+ = Response
48
+
49
+ HTTP/1.1 200 OK
50
+ Date: Sat, 23 Jul 2005 12:12:24 GMT
51
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
52
+ X-Powered-By: PHP/4.3.10
53
+ Transfer-Encoding: chunked
54
+ Content-Type: text/html
55
+
56
+ 73
57
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
58
+ 0
59
+
60
+
61
+
62
+
63
+ ##########
64
+ # echoStructAsSimpleTypes (nil)
65
+
66
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
67
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
68
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
69
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
70
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
71
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
72
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
73
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1687:in `doTestGroupB'
74
+ clientNuSOAP.rb:18
75
+
76
+ Wire dump:
77
+
78
+ = Request
79
+
80
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
81
+ SOAPAction: "http://soapinterop.org/"
82
+ Content-Type: text/xml; charset=utf-8
83
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
84
+ Date: Sat Jul 23 21:10:44 JST 2005
85
+ Content-Length: 677
86
+ Host: dietrich.ganx4.com
87
+
88
+ <?xml version="1.0" encoding="utf-8" ?>
89
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
90
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
91
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
92
+ <env:Body>
93
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
94
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
95
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
96
+ xsi:type="n2:SOAPStruct">
97
+ <varInt xsi:nil="true"></varInt>
98
+ <varString xsi:nil="true"></varString>
99
+ <varFloat xsi:nil="true"></varFloat>
100
+ </inputStruct>
101
+ </n1:echoStructAsSimpleTypes>
102
+ </env:Body>
103
+ </env:Envelope>
104
+
105
+ = Response
106
+
107
+ HTTP/1.1 200 OK
108
+ Date: Sat, 23 Jul 2005 12:12:28 GMT
109
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
110
+ X-Powered-By: PHP/4.3.10
111
+ Transfer-Encoding: chunked
112
+ Content-Type: text/html
113
+
114
+ 73
115
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
116
+ 0
117
+
118
+
119
+
120
+
121
+ ##########
122
+ # echoSimpleTypesAsStruct
123
+
124
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
125
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
126
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
127
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
128
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
129
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
130
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
131
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1698:in `doTestGroupB'
132
+ clientNuSOAP.rb:18
133
+
134
+ Wire dump:
135
+
136
+ = Request
137
+
138
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
139
+ SOAPAction: "http://soapinterop.org/"
140
+ Content-Type: text/xml; charset=utf-8
141
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
142
+ Date: Sat Jul 23 21:10:45 JST 2005
143
+ Content-Length: 600
144
+ Host: dietrich.ganx4.com
145
+
146
+ <?xml version="1.0" encoding="utf-8" ?>
147
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
148
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
149
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
150
+ <env:Body>
151
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
152
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
153
+ <inputString xsi:type="xsd:string">a</inputString>
154
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
155
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
156
+ </n1:echoSimpleTypesAsStruct>
157
+ </env:Body>
158
+ </env:Envelope>
159
+
160
+ = Response
161
+
162
+ HTTP/1.1 200 OK
163
+ Date: Sat, 23 Jul 2005 12:12:29 GMT
164
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
165
+ X-Powered-By: PHP/4.3.10
166
+ Transfer-Encoding: chunked
167
+ Content-Type: text/html
168
+
169
+ 73
170
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
171
+ 0
172
+
173
+
174
+
175
+
176
+ ##########
177
+ # echoSimpleTypesAsStruct (nil)
178
+
179
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
180
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
181
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
182
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
183
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
184
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
185
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
186
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1708:in `doTestGroupB'
187
+ clientNuSOAP.rb:18
188
+
189
+ Wire dump:
190
+
191
+ = Request
192
+
193
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
194
+ SOAPAction: "http://soapinterop.org/"
195
+ Content-Type: text/xml; charset=utf-8
196
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
197
+ Date: Sat Jul 23 21:10:46 JST 2005
198
+ Content-Length: 577
199
+ Host: dietrich.ganx4.com
200
+
201
+ <?xml version="1.0" encoding="utf-8" ?>
202
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
203
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
204
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
205
+ <env:Body>
206
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
207
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
208
+ <inputString xsi:nil="true"></inputString>
209
+ <inputInteger xsi:nil="true"></inputInteger>
210
+ <inputFloat xsi:nil="true"></inputFloat>
211
+ </n1:echoSimpleTypesAsStruct>
212
+ </env:Body>
213
+ </env:Envelope>
214
+
215
+ = Response
216
+
217
+ HTTP/1.1 200 OK
218
+ Date: Sat, 23 Jul 2005 12:12:30 GMT
219
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
220
+ X-Powered-By: PHP/4.3.10
221
+ Transfer-Encoding: chunked
222
+ Content-Type: text/html
223
+
224
+ 73
225
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
226
+ 0
227
+
228
+
229
+
230
+
231
+ ##########
232
+ # echo2DStringArray
233
+
234
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
235
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
236
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
237
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
238
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
239
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
240
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
241
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1747:in `doTestGroupB'
242
+ clientNuSOAP.rb:18
243
+
244
+ Wire dump:
245
+
246
+ = Request
247
+
248
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
249
+ SOAPAction: "http://soapinterop.org/"
250
+ Content-Type: text/xml; charset=utf-8
251
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
252
+ Date: Sat Jul 23 21:10:46 JST 2005
253
+ Content-Length: 889
254
+ Host: dietrich.ganx4.com
255
+
256
+ <?xml version="1.0" encoding="utf-8" ?>
257
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
258
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
259
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
260
+ <env:Body>
261
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
262
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
263
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
264
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
265
+ xsi:type="n2:ArrayOfString2D"
266
+ n3:arrayType="xsd:string[3,3]">
267
+ <item>r0c0</item>
268
+ <item>r1c0</item>
269
+ <item>r2c0</item>
270
+ <item>r0c1</item>
271
+ <item>r1c1</item>
272
+ <item>r2c1</item>
273
+ <item>r0c2</item>
274
+ <item>r1c2</item>
275
+ <item>r2c2</item>
276
+ </input2DStringArray>
277
+ </n1:echo2DStringArray>
278
+ </env:Body>
279
+ </env:Envelope>
280
+
281
+ = Response
282
+
283
+ HTTP/1.1 200 OK
284
+ Date: Sat, 23 Jul 2005 12:12:31 GMT
285
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
286
+ X-Powered-By: PHP/4.3.10
287
+ Transfer-Encoding: chunked
288
+ Content-Type: text/html
289
+
290
+ 73
291
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
292
+ 0
293
+
294
+
295
+
296
+
297
+ ##########
298
+ # echo2DStringArray (anyType array)
299
+
300
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
301
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
302
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
303
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
304
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
305
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
306
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
307
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1765:in `doTestGroupB'
308
+ clientNuSOAP.rb:18
309
+
310
+ Wire dump:
311
+
312
+ = Request
313
+
314
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
315
+ SOAPAction: "http://soapinterop.org/"
316
+ Content-Type: text/xml; charset=utf-8
317
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
318
+ Date: Sat Jul 23 21:10:47 JST 2005
319
+ Content-Length: 1088
320
+ Host: dietrich.ganx4.com
321
+
322
+ <?xml version="1.0" encoding="utf-8" ?>
323
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
324
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
325
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
326
+ <env:Body>
327
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
328
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
329
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
330
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
331
+ xsi:type="n2:ArrayOfString2D"
332
+ n3:arrayType="xsd:anyType[3,3]">
333
+ <item xsi:type="xsd:string">r0c0</item>
334
+ <item xsi:type="xsd:string">r0c1</item>
335
+ <item xsi:type="xsd:string">r0c2</item>
336
+ <item xsi:type="xsd:string">r1c0</item>
337
+ <item xsi:type="xsd:string">r1c1</item>
338
+ <item xsi:type="xsd:string">r1c2</item>
339
+ <item xsi:type="xsd:string">r2c0</item>
340
+ <item xsi:type="xsd:string">r0c1</item>
341
+ <item xsi:type="xsd:string">r2c2</item>
342
+ </input2DStringArray>
343
+ </n1:echo2DStringArray>
344
+ </env:Body>
345
+ </env:Envelope>
346
+
347
+ = Response
348
+
349
+ HTTP/1.1 200 OK
350
+ Date: Sat, 23 Jul 2005 12:12:32 GMT
351
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
352
+ X-Powered-By: PHP/4.3.10
353
+ Transfer-Encoding: chunked
354
+ Content-Type: text/html
355
+
356
+ 73
357
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
358
+ 0
359
+
360
+
361
+
362
+
363
+ ##########
364
+ # echo2DStringArray (multi-ref)
365
+
366
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
367
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
368
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
369
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
370
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
371
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
372
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
373
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
374
+ clientNuSOAP.rb:18
375
+
376
+ Wire dump:
377
+
378
+ = Request
379
+
380
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
381
+ SOAPAction: "http://soapinterop.org/"
382
+ Content-Type: text/xml; charset=utf-8
383
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
384
+ Date: Sat Jul 23 21:10:48 JST 2005
385
+ Content-Length: 1063
386
+ Host: dietrich.ganx4.com
387
+
388
+ <?xml version="1.0" encoding="utf-8" ?>
389
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
390
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
391
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
392
+ <env:Body>
393
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
394
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
395
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
396
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
397
+ xsi:type="n2:ArrayOfString2D"
398
+ n3:arrayType="xsd:string[3,3]">
399
+ <item>r0c0</item>
400
+ <item>r1c0</item>
401
+ <item href="#id-604970154"></item>
402
+ <item>r0c1</item>
403
+ <item>r1c1</item>
404
+ <item>r2c1</item>
405
+ <item href="#id-604970154"></item>
406
+ <item>r1c2</item>
407
+ <item>r2c2</item>
408
+ </input2DStringArray>
409
+ </n1:echo2DStringArray>
410
+ <item id="id-604970154"
411
+ xsi:type="xsd:string"
412
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
413
+ </env:Body>
414
+ </env:Envelope>
415
+
416
+ = Response
417
+
418
+ HTTP/1.1 200 OK
419
+ Date: Sat, 23 Jul 2005 12:12:32 GMT
420
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
421
+ X-Powered-By: PHP/4.3.10
422
+ Transfer-Encoding: chunked
423
+ Content-Type: text/html
424
+
425
+ 73
426
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
427
+ 0
428
+
429
+
430
+
431
+
432
+ ##########
433
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
434
+
435
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
436
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
437
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
438
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
439
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
440
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
441
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
442
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1852:in `doTestGroupB'
443
+ clientNuSOAP.rb:18
444
+
445
+ Wire dump:
446
+
447
+ = Request
448
+
449
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
450
+ SOAPAction: "http://soapinterop.org/"
451
+ Content-Type: text/xml; charset=utf-8
452
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
453
+ Date: Sat Jul 23 21:10:49 JST 2005
454
+ Content-Length: 1063
455
+ Host: dietrich.ganx4.com
456
+
457
+ <?xml version="1.0" encoding="utf-8" ?>
458
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
459
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
460
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
461
+ <env:Body>
462
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
463
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
464
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
465
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
466
+ xsi:type="n2:ArrayOfString2D"
467
+ n3:arrayType="xsd:string[3,3]">
468
+ <item>r0c0</item>
469
+ <item>r1c0</item>
470
+ <item href="#id-604704410"></item>
471
+ <item>r0c1</item>
472
+ <item>r1c1</item>
473
+ <item>r2c1</item>
474
+ <item href="#id-604704410"></item>
475
+ <item>r1c2</item>
476
+ <item>r2c2</item>
477
+ </input2DStringArray>
478
+ </n1:echo2DStringArray>
479
+ <item id="id-604704410"
480
+ xsi:type="xsd:string"
481
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
482
+ </env:Body>
483
+ </env:Envelope>
484
+
485
+ = Response
486
+
487
+ HTTP/1.1 200 OK
488
+ Date: Sat, 23 Jul 2005 12:12:33 GMT
489
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
490
+ X-Powered-By: PHP/4.3.10
491
+ Transfer-Encoding: chunked
492
+ Content-Type: text/html
493
+
494
+ 73
495
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
496
+ 0
497
+
498
+
499
+
500
+
501
+ ##########
502
+ # echoNestedStruct
503
+
504
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
505
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
506
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
507
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
508
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
509
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
510
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
511
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1882:in `doTestGroupB'
512
+ clientNuSOAP.rb:18
513
+
514
+ Wire dump:
515
+
516
+ = Request
517
+
518
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
519
+ SOAPAction: "http://soapinterop.org/"
520
+ Content-Type: text/xml; charset=utf-8
521
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
522
+ Date: Sat Jul 23 21:10:50 JST 2005
523
+ Content-Length: 920
524
+ Host: dietrich.ganx4.com
525
+
526
+ <?xml version="1.0" encoding="utf-8" ?>
527
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
528
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
529
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
530
+ <env:Body>
531
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
532
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
533
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
534
+ xsi:type="n2:SOAPStructStruct">
535
+ <varInt xsi:type="xsd:int">1</varInt>
536
+ <varStruct xsi:type="n2:SOAPStruct">
537
+ <varInt xsi:type="xsd:int">2</varInt>
538
+ <varString xsi:type="xsd:string">b</varString>
539
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
540
+ </varStruct>
541
+ <varString xsi:type="xsd:string">a</varString>
542
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
543
+ </inputStruct>
544
+ </n1:echoNestedStruct>
545
+ </env:Body>
546
+ </env:Envelope>
547
+
548
+ = Response
549
+
550
+ HTTP/1.1 200 OK
551
+ Date: Sat, 23 Jul 2005 12:12:34 GMT
552
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
553
+ X-Powered-By: PHP/4.3.10
554
+ Transfer-Encoding: chunked
555
+ Content-Type: text/html
556
+
557
+ 73
558
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
559
+ 0
560
+
561
+
562
+
563
+
564
+ ##########
565
+ # echoNestedStruct (nil)
566
+
567
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
568
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
569
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
570
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
571
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
572
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
573
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
574
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1894:in `doTestGroupB'
575
+ clientNuSOAP.rb:18
576
+
577
+ Wire dump:
578
+
579
+ = Request
580
+
581
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
582
+ SOAPAction: "http://soapinterop.org/"
583
+ Content-Type: text/xml; charset=utf-8
584
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
585
+ Date: Sat Jul 23 21:10:50 JST 2005
586
+ Content-Length: 874
587
+ Host: dietrich.ganx4.com
588
+
589
+ <?xml version="1.0" encoding="utf-8" ?>
590
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
591
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
592
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
593
+ <env:Body>
594
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
595
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
596
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
597
+ xsi:type="n2:SOAPStructStruct">
598
+ <varInt xsi:nil="true"></varInt>
599
+ <varStruct xsi:type="n2:SOAPStruct">
600
+ <varInt xsi:nil="true"></varInt>
601
+ <varString xsi:nil="true"></varString>
602
+ <varFloat xsi:nil="true"></varFloat>
603
+ </varStruct>
604
+ <varString xsi:nil="true"></varString>
605
+ <varFloat xsi:nil="true"></varFloat>
606
+ </inputStruct>
607
+ </n1:echoNestedStruct>
608
+ </env:Body>
609
+ </env:Envelope>
610
+
611
+ = Response
612
+
613
+ HTTP/1.1 200 OK
614
+ Date: Sat, 23 Jul 2005 12:12:35 GMT
615
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
616
+ X-Powered-By: PHP/4.3.10
617
+ Transfer-Encoding: chunked
618
+ Content-Type: text/html
619
+
620
+ 73
621
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
622
+ 0
623
+
624
+
625
+
626
+
627
+ ##########
628
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
629
+
630
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
631
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
632
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
633
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
634
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
635
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
636
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
637
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1907:in `doTestGroupB'
638
+ clientNuSOAP.rb:18
639
+
640
+ Wire dump:
641
+
642
+ = Request
643
+
644
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
645
+ SOAPAction: "http://soapinterop.org/"
646
+ Content-Type: text/xml; charset=utf-8
647
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
648
+ Date: Sat Jul 23 21:10:51 JST 2005
649
+ Content-Length: 1062
650
+ Host: dietrich.ganx4.com
651
+
652
+ <?xml version="1.0" encoding="utf-8" ?>
653
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
654
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
655
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
656
+ <env:Body>
657
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
658
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
659
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
660
+ xsi:type="n2:SOAPStructStruct">
661
+ <varInt xsi:type="xsd:int">1</varInt>
662
+ <varStruct xsi:type="n2:SOAPStruct">
663
+ <varInt xsi:type="xsd:int">2</varInt>
664
+ <varString href="#id-605249034"></varString>
665
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
666
+ </varStruct>
667
+ <varString href="#id-605249034"></varString>
668
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
669
+ </inputStruct>
670
+ </n1:echoNestedStruct>
671
+ <varString id="id-605249034"
672
+ xsi:type="xsd:string"
673
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
674
+ </env:Body>
675
+ </env:Envelope>
676
+
677
+ = Response
678
+
679
+ HTTP/1.1 200 OK
680
+ Date: Sat, 23 Jul 2005 12:12:36 GMT
681
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
682
+ X-Powered-By: PHP/4.3.10
683
+ Transfer-Encoding: chunked
684
+ Content-Type: text/html
685
+
686
+ 73
687
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
688
+ 0
689
+
690
+
691
+
692
+
693
+ ##########
694
+ # echoNestedArray
695
+
696
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
697
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
698
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
699
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
700
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
701
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
702
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
703
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1917:in `doTestGroupB'
704
+ clientNuSOAP.rb:18
705
+
706
+ Wire dump:
707
+
708
+ = Request
709
+
710
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
711
+ SOAPAction: "http://soapinterop.org/"
712
+ Content-Type: text/xml; charset=utf-8
713
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
714
+ Date: Sat Jul 23 21:10:52 JST 2005
715
+ Content-Length: 931
716
+ Host: dietrich.ganx4.com
717
+
718
+ <?xml version="1.0" encoding="utf-8" ?>
719
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
720
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
721
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
722
+ <env:Body>
723
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
724
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
725
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
726
+ xsi:type="n2:SOAPArrayStruct">
727
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
728
+ xsi:type="n3:Array"
729
+ n3:arrayType="xsd:string[3]">
730
+ <item>2</item>
731
+ <item>2.2</item>
732
+ <item>b</item>
733
+ </varArray>
734
+ <varInt xsi:type="xsd:int">1</varInt>
735
+ <varString xsi:type="xsd:string">a</varString>
736
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
737
+ </inputStruct>
738
+ </n1:echoNestedArray>
739
+ </env:Body>
740
+ </env:Envelope>
741
+
742
+ = Response
743
+
744
+ HTTP/1.1 200 OK
745
+ Date: Sat, 23 Jul 2005 12:12:36 GMT
746
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
747
+ X-Powered-By: PHP/4.3.10
748
+ Transfer-Encoding: chunked
749
+ Content-Type: text/html
750
+
751
+ 73
752
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
753
+ 0
754
+
755
+
756
+
757
+
758
+ ##########
759
+ # echoNestedArray (anyType array)
760
+
761
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
762
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
763
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
764
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
765
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
766
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
767
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
768
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
769
+ clientNuSOAP.rb:18
770
+
771
+ Wire dump:
772
+
773
+ = Request
774
+
775
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
776
+ SOAPAction: "http://soapinterop.org/"
777
+ Content-Type: text/xml; charset=utf-8
778
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
779
+ Date: Sat Jul 23 21:10:53 JST 2005
780
+ Content-Length: 998
781
+ Host: dietrich.ganx4.com
782
+
783
+ <?xml version="1.0" encoding="utf-8" ?>
784
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
785
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
786
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
787
+ <env:Body>
788
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
789
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
790
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
791
+ xsi:type="n2:SOAPArrayStruct">
792
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
793
+ xsi:type="n3:Array"
794
+ n3:arrayType="xsd:anyType[3]">
795
+ <item xsi:type="xsd:string">2</item>
796
+ <item xsi:type="xsd:string">2.2</item>
797
+ <item xsi:type="xsd:string">b</item>
798
+ </varArray>
799
+ <varInt xsi:type="xsd:int">1</varInt>
800
+ <varString xsi:type="xsd:string">a</varString>
801
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
802
+ </inputStruct>
803
+ </n1:echoNestedArray>
804
+ </env:Body>
805
+ </env:Envelope>
806
+
807
+ = Response
808
+
809
+ HTTP/1.1 200 OK
810
+ Date: Sat, 23 Jul 2005 12:12:37 GMT
811
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
812
+ X-Powered-By: PHP/4.3.10
813
+ Transfer-Encoding: chunked
814
+ Content-Type: text/html
815
+
816
+ 73
817
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
818
+ 0
819
+
820
+
821
+
822
+
823
+ ##########
824
+ # echoNestedArray (multi-ref)
825
+
826
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
827
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
828
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
829
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
830
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
831
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
832
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
833
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1938:in `doTestGroupB'
834
+ clientNuSOAP.rb:18
835
+
836
+ Wire dump:
837
+
838
+ = Request
839
+
840
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
841
+ SOAPAction: "http://soapinterop.org/"
842
+ Content-Type: text/xml; charset=utf-8
843
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
844
+ Date: Sat Jul 23 21:10:53 JST 2005
845
+ Content-Length: 1083
846
+ Host: dietrich.ganx4.com
847
+
848
+ <?xml version="1.0" encoding="utf-8" ?>
849
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
850
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
851
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
852
+ <env:Body>
853
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
854
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
855
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
856
+ xsi:type="n2:SOAPArrayStruct">
857
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
858
+ xsi:type="n3:Array"
859
+ n3:arrayType="xsd:string[3]">
860
+ <item>2</item>
861
+ <item href="#id-605334074"></item>
862
+ <item>b</item>
863
+ </varArray>
864
+ <varInt xsi:type="xsd:int">1</varInt>
865
+ <varString href="#id-605334074"></varString>
866
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
867
+ </inputStruct>
868
+ </n1:echoNestedArray>
869
+ <item id="id-605334074"
870
+ xsi:type="xsd:string"
871
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
872
+ </env:Body>
873
+ </env:Envelope>
874
+
875
+ = Response
876
+
877
+ HTTP/1.1 200 OK
878
+ Date: Sat, 23 Jul 2005 12:12:38 GMT
879
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
880
+ X-Powered-By: PHP/4.3.10
881
+ Transfer-Encoding: chunked
882
+ Content-Type: text/html
883
+
884
+ 73
885
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
886
+ 0
887
+
888
+
889
+
890
+
891
+ ##########
892
+ # echoNestedArray (multi-ref: varString == varArray[1])
893
+
894
+ Result: Exception: response is not a SOAP envelope: You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL. (SOAP::ResponseFormatError)
895
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
896
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
897
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
898
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
899
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
900
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
901
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1949:in `doTestGroupB'
902
+ clientNuSOAP.rb:18
903
+
904
+ Wire dump:
905
+
906
+ = Request
907
+
908
+ POST /nusoap/testbed/round2_groupb_server.php HTTP/1.1
909
+ SOAPAction: "http://soapinterop.org/"
910
+ Content-Type: text/xml; charset=utf-8
911
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
912
+ Date: Sat Jul 23 21:10:54 JST 2005
913
+ Content-Length: 1083
914
+ Host: dietrich.ganx4.com
915
+
916
+ <?xml version="1.0" encoding="utf-8" ?>
917
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
918
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
919
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
920
+ <env:Body>
921
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
922
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
923
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
924
+ xsi:type="n2:SOAPArrayStruct">
925
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
926
+ xsi:type="n3:Array"
927
+ n3:arrayType="xsd:string[3]">
928
+ <item>2</item>
929
+ <item href="#id-605346614"></item>
930
+ <item>b</item>
931
+ </varArray>
932
+ <varInt xsi:type="xsd:int">1</varInt>
933
+ <varString href="#id-605346614"></varString>
934
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
935
+ </inputStruct>
936
+ </n1:echoNestedArray>
937
+ <item id="id-605346614"
938
+ xsi:type="xsd:string"
939
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
940
+ </env:Body>
941
+ </env:Envelope>
942
+
943
+ = Response
944
+
945
+ HTTP/1.1 200 OK
946
+ Date: Sat, 23 Jul 2005 12:12:39 GMT
947
+ Server: Apache/1.3.29 (Unix) mod_ssl/2.8.16 OpenSSL/0.9.6b PHP/4.3.10
948
+ X-Powered-By: PHP/4.3.10
949
+ Transfer-Encoding: chunked
950
+ Content-Type: text/html
951
+
952
+ 73
953
+ You cannot bind to an external WSDL file, and register methods outside of it! Please choose either WSDL or no WSDL.
954
+ 0
955
+
956
+
957
+
958
+