soap4r 1.5.5.20061022 → 1.5.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (311) hide show
  1. data/bin/wsdl2ruby.rb +8 -8
  2. data/lib/soap/XMLSchemaDatatypes.rb +1 -1
  3. data/lib/soap/XMLSchemaDatatypes1999.rb +1 -1
  4. data/lib/soap/attachment.rb +1 -1
  5. data/lib/soap/baseData.rb +102 -54
  6. data/lib/soap/cgistub.rb +1 -1
  7. data/lib/soap/charset.rb +1 -1
  8. data/lib/soap/driver.rb +1 -1
  9. data/lib/soap/element.rb +20 -12
  10. data/lib/soap/encodingstyle/aspDotNetHandler.rb +2 -2
  11. data/lib/soap/encodingstyle/handler.rb +1 -1
  12. data/lib/soap/encodingstyle/literalHandler.rb +29 -73
  13. data/lib/soap/encodingstyle/soapHandler.rb +8 -7
  14. data/lib/soap/filter.rb +10 -0
  15. data/lib/soap/filter/filterchain.rb +51 -0
  16. data/lib/soap/filter/handler.rb +31 -0
  17. data/lib/soap/generator.rb +11 -3
  18. data/lib/soap/header/handler.rb +6 -5
  19. data/lib/soap/header/handlerset.rb +7 -7
  20. data/lib/soap/header/simplehandler.rb +1 -1
  21. data/lib/soap/httpconfigloader.rb +7 -2
  22. data/lib/soap/mapping.rb +1 -1
  23. data/lib/soap/mapping/encodedregistry.rb +36 -26
  24. data/lib/soap/mapping/encodedregistry.rb~ +531 -0
  25. data/lib/soap/mapping/factory.rb +2 -2
  26. data/lib/soap/mapping/literalregistry.rb +107 -67
  27. data/lib/soap/mapping/mapping.rb +92 -112
  28. data/lib/soap/mapping/registry.rb +25 -8
  29. data/lib/soap/mapping/rubytypeFactory.rb +1 -1
  30. data/lib/soap/mapping/schemadefinition.rb +163 -0
  31. data/lib/soap/mapping/typeMap.rb +7 -1
  32. data/lib/soap/mapping/wsdlencodedregistry.rb +2 -2
  33. data/lib/soap/mapping/wsdlliteralregistry.rb +14 -23
  34. data/lib/soap/mappingRegistry.rb +1 -1
  35. data/lib/soap/marshal.rb +1 -1
  36. data/lib/soap/namespace.rb +1 -1
  37. data/lib/soap/netHttpClient.rb +43 -13
  38. data/lib/soap/parser.rb +40 -42
  39. data/lib/soap/processor.rb +1 -1
  40. data/lib/soap/property.rb +7 -7
  41. data/lib/soap/proxy.rb +1 -1
  42. data/lib/soap/qname.rb +1 -1
  43. data/lib/soap/rpc/cgistub.rb +34 -1
  44. data/lib/soap/rpc/driver.rb +2 -1
  45. data/lib/soap/rpc/element.rb +42 -15
  46. data/lib/soap/rpc/httpserver.rb +13 -1
  47. data/lib/soap/rpc/proxy.rb +51 -41
  48. data/lib/soap/rpc/router.rb +88 -33
  49. data/lib/soap/rpc/rpc.rb +1 -1
  50. data/lib/soap/rpc/soaplet.rb +51 -3
  51. data/lib/soap/rpc/standaloneServer.rb +1 -1
  52. data/lib/soap/rpcRouter.rb +1 -1
  53. data/lib/soap/rpcUtils.rb +1 -1
  54. data/lib/soap/server.rb +1 -1
  55. data/lib/soap/soap.rb +2 -2
  56. data/lib/soap/standaloneServer.rb +1 -1
  57. data/lib/soap/streamHandler.rb +13 -4
  58. data/lib/soap/wsdlDriver.rb +11 -15
  59. data/lib/tags +5144 -0
  60. data/lib/wsdl/binding.rb +1 -1
  61. data/lib/wsdl/data.rb +1 -1
  62. data/lib/wsdl/definitions.rb +1 -1
  63. data/lib/wsdl/documentation.rb +1 -1
  64. data/lib/wsdl/import.rb +1 -1
  65. data/lib/wsdl/importer.rb +1 -1
  66. data/lib/wsdl/info.rb +1 -1
  67. data/lib/wsdl/message.rb +1 -1
  68. data/lib/wsdl/operation.rb +10 -7
  69. data/lib/wsdl/operationBinding.rb +19 -5
  70. data/lib/wsdl/param.rb +11 -3
  71. data/lib/wsdl/parser.rb +4 -3
  72. data/lib/wsdl/part.rb +1 -1
  73. data/lib/wsdl/port.rb +1 -1
  74. data/lib/wsdl/portType.rb +1 -1
  75. data/lib/wsdl/service.rb +1 -1
  76. data/lib/wsdl/soap/address.rb +1 -1
  77. data/lib/wsdl/soap/binding.rb +1 -1
  78. data/lib/wsdl/soap/body.rb +3 -1
  79. data/lib/wsdl/soap/cgiStubCreator.rb +1 -1
  80. data/lib/wsdl/soap/classDefCreator.rb +78 -14
  81. data/lib/wsdl/soap/classDefCreatorSupport.rb +28 -11
  82. data/lib/wsdl/soap/clientSkeltonCreator.rb +3 -2
  83. data/lib/wsdl/soap/complexType.rb +8 -11
  84. data/lib/wsdl/soap/data.rb +1 -1
  85. data/lib/wsdl/soap/definitions.rb +49 -4
  86. data/lib/wsdl/soap/driverCreator.rb +1 -1
  87. data/lib/wsdl/soap/element.rb +3 -2
  88. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +1 -1
  89. data/lib/wsdl/soap/fault.rb +1 -1
  90. data/lib/wsdl/soap/header.rb +1 -1
  91. data/lib/wsdl/soap/headerfault.rb +1 -1
  92. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +41 -21
  93. data/lib/wsdl/soap/mappingRegistryCreator.rb +2 -1
  94. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +45 -19
  95. data/lib/wsdl/soap/methodDefCreator.rb +28 -17
  96. data/lib/wsdl/soap/operation.rb +11 -11
  97. data/lib/wsdl/soap/servantSkeltonCreator.rb +3 -2
  98. data/lib/wsdl/soap/standaloneServerStubCreator.rb +1 -1
  99. data/lib/wsdl/soap/wsdl2ruby.rb +8 -2
  100. data/lib/wsdl/types.rb +1 -1
  101. data/lib/wsdl/wsdl.rb +1 -1
  102. data/lib/wsdl/xmlSchema/all.rb +1 -1
  103. data/lib/wsdl/xmlSchema/annotation.rb +1 -1
  104. data/lib/wsdl/xmlSchema/any.rb +10 -5
  105. data/lib/wsdl/xmlSchema/attribute.rb +1 -1
  106. data/lib/wsdl/xmlSchema/choice.rb +1 -1
  107. data/lib/wsdl/xmlSchema/complexContent.rb +11 -2
  108. data/lib/wsdl/xmlSchema/complexExtension.rb +8 -1
  109. data/lib/wsdl/xmlSchema/complexRestriction.rb +6 -2
  110. data/lib/wsdl/xmlSchema/complexType.rb +9 -1
  111. data/lib/wsdl/xmlSchema/content.rb +26 -5
  112. data/lib/wsdl/xmlSchema/data.rb +4 -1
  113. data/lib/wsdl/xmlSchema/element.rb +12 -9
  114. data/lib/wsdl/xmlSchema/enumeration.rb +1 -1
  115. data/lib/wsdl/xmlSchema/import.rb +1 -1
  116. data/lib/wsdl/xmlSchema/importer.rb +9 -6
  117. data/lib/wsdl/xmlSchema/include.rb +1 -1
  118. data/lib/wsdl/xmlSchema/length.rb +1 -1
  119. data/lib/wsdl/xmlSchema/list.rb +1 -1
  120. data/lib/wsdl/xmlSchema/maxlength.rb +1 -1
  121. data/lib/wsdl/xmlSchema/minlength.rb +1 -1
  122. data/lib/wsdl/xmlSchema/parser.rb +4 -3
  123. data/lib/wsdl/xmlSchema/pattern.rb +1 -1
  124. data/lib/wsdl/xmlSchema/schema.rb +1 -1
  125. data/lib/wsdl/xmlSchema/sequence.rb +1 -1
  126. data/lib/wsdl/xmlSchema/simpleContent.rb +1 -1
  127. data/lib/wsdl/xmlSchema/simpleExtension.rb +1 -1
  128. data/lib/wsdl/xmlSchema/simpleRestriction.rb +1 -1
  129. data/lib/wsdl/xmlSchema/simpleType.rb +8 -1
  130. data/lib/wsdl/xmlSchema/union.rb +35 -0
  131. data/lib/wsdl/xmlSchema/unique.rb +1 -1
  132. data/lib/wsdl/xmlSchema/xsd2ruby.rb +6 -1
  133. data/lib/xsd/charset.rb +1 -1
  134. data/lib/xsd/classloader.rb +26 -0
  135. data/lib/xsd/codegen.rb +1 -1
  136. data/lib/xsd/codegen/classdef.rb +1 -1
  137. data/lib/xsd/codegen/commentdef.rb +1 -1
  138. data/lib/xsd/codegen/gensupport.rb +119 -14
  139. data/lib/xsd/codegen/methoddef.rb +1 -1
  140. data/lib/xsd/codegen/moduledef.rb +1 -1
  141. data/lib/xsd/datatypes.rb +52 -13
  142. data/lib/xsd/datatypes1999.rb +1 -1
  143. data/lib/xsd/iconvcharset.rb +1 -1
  144. data/lib/xsd/mapping.rb +1 -1
  145. data/lib/xsd/namedelements.rb +1 -1
  146. data/lib/xsd/ns.rb +2 -2
  147. data/lib/xsd/qname.rb +1 -1
  148. data/lib/xsd/xmlparser.rb +16 -3
  149. data/lib/xsd/xmlparser/parser.rb +6 -2
  150. data/lib/xsd/xmlparser/rexmlparser.rb +5 -1
  151. data/lib/xsd/xmlparser/xmlparser.rb +1 -1
  152. data/lib/xsd/xmlparser/xmlscanner.rb +4 -2
  153. data/test/interopR2/InteropTest.rb +83 -0
  154. data/test/interopR2/InteropTest.wsdl +315 -0
  155. data/test/interopR2/InteropTestC.wsdl +208 -0
  156. data/test/interopR2/InteropTestDriver.rb +328 -0
  157. data/test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2.wsdl +461 -0
  158. data/test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2GroupB.wsdl +20 -0
  159. data/test/interopR2/SOAP4R_SOAPBuildersInteropTest_R2GroupCClient.rb +178 -0
  160. data/test/interopR2/SOAPBuildersInterop_R2GrC.wsdl +17 -0
  161. data/test/interopR2/clientBase.rb +0 -3
  162. data/test/interopR2/groupc.wsdl +17 -0
  163. data/test/interopR2/result_client.NetRemoting.txt +0 -4593
  164. data/test/interopR2/test.sh +9 -9
  165. data/test/runner.rb +1 -3
  166. data/test/soap/asp.net/test_aspdotnet.rb +20 -9
  167. data/test/soap/case/test_mapping.rb +57 -0
  168. data/test/soap/filter/test_filter.rb +146 -0
  169. data/test/soap/literalArrayMapping/test_definedarray.rb +7 -9
  170. data/test/soap/marshal/marshaltestlib.rb +1 -1
  171. data/test/soap/ssl/test_ssl.rb +0 -10
  172. data/test/soap/struct/test_struct.rb +2 -9
  173. data/test/soap/test_basetype.rb +114 -0
  174. data/test/soap/test_empty.rb +26 -2
  175. data/test/soap/test_envelopenamespace.rb +2 -9
  176. data/test/soap/test_extraattr.rb +55 -0
  177. data/test/soap/test_httpconfigloader.rb +17 -0
  178. data/test/soap/test_property.rb +4 -1
  179. data/test/soap/test_response_as_xml.rb +31 -9
  180. data/test/soap/test_soapelement.rb +21 -3
  181. data/test/soap/test_streamhandler.rb +3 -10
  182. data/test/soap/test_styleuse.rb +2 -9
  183. data/test/soap/wsdlDriver/test_calc.rb +3 -20
  184. data/test/soap/wsdlDriver/test_document.rb +2 -9
  185. data/test/soap/wsdlDriver/test_simpletype.rb +2 -9
  186. data/test/testutil.rb +54 -0
  187. data/test/wsdl/abstract/abstract.wsdl +82 -3
  188. data/test/wsdl/abstract/test_abstract.rb +48 -19
  189. data/test/wsdl/any/any.wsdl +63 -0
  190. data/test/wsdl/any/expectedDriver.rb +22 -1
  191. data/test/wsdl/any/expectedEcho.rb +19 -0
  192. data/test/wsdl/any/expectedService.rb +29 -4
  193. data/test/wsdl/any/test_any.rb +36 -31
  194. data/test/wsdl/choice/choice.wsdl +37 -0
  195. data/test/wsdl/choice/test_choice.rb +66 -17
  196. data/test/wsdl/complexcontent/test_echo.rb +7 -18
  197. data/test/wsdl/document/array/test_array.rb +8 -18
  198. data/test/wsdl/document/ping_nosoapaction.wsdl +1 -1
  199. data/test/wsdl/document/test_nosoapaction.rb +2 -9
  200. data/test/wsdl/document/test_number.rb +3 -10
  201. data/test/wsdl/document/test_rpc.rb +96 -21
  202. data/test/wsdl/fault/fault.wsdl +79 -0
  203. data/test/wsdl/fault/multifault.wsdl +96 -0
  204. data/test/wsdl/fault/test_fault.rb +119 -0
  205. data/test/wsdl/fault/test_multifault.rb +134 -0
  206. data/test/wsdl/list/test_list.rb +6 -16
  207. data/test/wsdl/marshal/test_wsdlmarshal.rb +10 -13
  208. data/test/wsdl/oneway/oneway.wsdl +36 -0
  209. data/test/wsdl/oneway/test_oneway.rb +108 -0
  210. data/test/wsdl/overload/test_overload.rb +3 -10
  211. data/test/wsdl/qualified/test_qualified.rb +9 -17
  212. data/test/wsdl/qualified/test_unqualified.rb +14 -21
  213. data/test/wsdl/ref/expectedDriver.rb +51 -0
  214. data/test/wsdl/ref/expectedProduct.rb +71 -71
  215. data/test/wsdl/ref/test_ref.rb +13 -35
  216. data/test/wsdl/rpc/rpc.wsdl +27 -1
  217. data/test/wsdl/rpc/test-rpc-lit-qualified.wsdl +74 -0
  218. data/test/wsdl/rpc/test-rpc-lit.wsdl +11 -4
  219. data/test/wsdl/rpc/test-rpc-lit12.wsdl +455 -0
  220. data/test/wsdl/rpc/test_rpc.rb +20 -19
  221. data/test/wsdl/rpc/test_rpc_lit.rb +82 -29
  222. data/test/wsdl/simplecontent/simplecontent.wsdl +1 -0
  223. data/test/wsdl/simplecontent/test_simplecontent.rb +5 -19
  224. data/test/wsdl/simpletype/rpc/expectedDriver.rb +6 -4
  225. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +15 -0
  226. data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +64 -0
  227. data/test/wsdl/simpletype/rpc/expectedService.rb +6 -4
  228. data/test/wsdl/simpletype/rpc/rpc.wsdl +18 -0
  229. data/test/wsdl/simpletype/rpc/test_rpc.rb +6 -16
  230. data/test/wsdl/simpletype/simpletype.wsdl +19 -0
  231. data/test/wsdl/simpletype/test_simpletype.rb +2 -9
  232. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +6 -4
  233. data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +40 -0
  234. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +6 -4
  235. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +6 -4
  236. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +5 -6
  237. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +3 -16
  238. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +9 -17
  239. data/test/wsdl/soaptype/test_soaptype.rb +29 -11
  240. data/test/xsd/test_xsd.rb +115 -1
  241. metadata +421 -454
  242. data/test/interopR2/client.NetRemoting.rb.result +0 -3410
  243. data/test/interopR2/client.NetRemoting_Base.log +0 -6279
  244. data/test/interopR2/client.NetRemoting_GroupB.log +0 -1188
  245. data/test/interopR2/client4S4C2_Base.log +0 -4955
  246. data/test/interopR2/client4S4C2_GroupB.log +0 -1000
  247. data/test/interopR2/client4S4C_Base.log +0 -4635
  248. data/test/interopR2/client4S4C_GroupB.log +0 -900
  249. data/test/interopR2/clientASP.NET_Base.log +0 -5468
  250. data/test/interopR2/clientASP.NET_GroupB.log +0 -977
  251. data/test/interopR2/clientApacheAxis_Base.log +0 -3171
  252. data/test/interopR2/clientApacheAxis_GroupB.log +0 -498
  253. data/test/interopR2/clientApacheSOAP_Base.log +0 -3171
  254. data/test/interopR2/clientBEAWebLogic_Base.log +0 -3171
  255. data/test/interopR2/clientBEAWebLogic_GroupB.log +0 -498
  256. data/test/interopR2/clientCapeConnect_Base.log +0 -2126
  257. data/test/interopR2/clientDelphi_Base.log +0 -0
  258. data/test/interopR2/clientEasySoap_Base.log +0 -6187
  259. data/test/interopR2/clientEasySoap_GroupB.log +0 -1076
  260. data/test/interopR2/clientFrontier_Base.log +0 -5188
  261. data/test/interopR2/clientHP_Base.log +0 -3171
  262. data/test/interopR2/clientHP_GroupB.log +0 -498
  263. data/test/interopR2/clientJSOAP_Base.log +0 -4465
  264. data/test/interopR2/clientJSOAP_GroupB.log +0 -824
  265. data/test/interopR2/clientKafkaXSLT_Base.log +0 -10299
  266. data/test/interopR2/clientKafkaXSLT_GroupB.log +0 -1739
  267. data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +0 -4805
  268. data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +0 -871
  269. data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +0 -5076
  270. data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +0 -908
  271. data/test/interopR2/clientNuSOAP_Base.log +0 -5076
  272. data/test/interopR2/clientNuSOAP_GroupB.log +0 -958
  273. data/test/interopR2/clientNuWave_Base.log +0 -2019
  274. data/test/interopR2/clientOpenLink_Base.log +0 -6171
  275. data/test/interopR2/clientOpenLink_GroupB.log +0 -1094
  276. data/test/interopR2/clientOracle_Base.log +0 -5594
  277. data/test/interopR2/clientPEAR_Base.log +0 -6261
  278. data/test/interopR2/clientPEAR_GroupB.log +0 -1106
  279. data/test/interopR2/clientPhalanx_Base.log +0 -41036
  280. data/test/interopR2/clientPhalanx_GroupB.log +0 -6519
  281. data/test/interopR2/clientSIMACE_Base.log +0 -6171
  282. data/test/interopR2/clientSIMACE_GroupB.log +0 -1093
  283. data/test/interopR2/clientSOAP4R.rb.result +0 -3409
  284. data/test/interopR2/clientSOAP4R_Base.log +0 -6366
  285. data/test/interopR2/clientSOAP4R_GroupB.log +0 -1112
  286. data/test/interopR2/clientSQLData_Base.log +0 -4857
  287. data/test/interopR2/clientSQLData_GroupB.log +0 -770
  288. data/test/interopR2/clientSilverStream_Base.log +0 -3171
  289. data/test/interopR2/clientSpray2001_Base.log +0 -8187
  290. data/test/interopR2/clientSpray2001_GroupB.log +0 -1408
  291. data/test/interopR2/clientSun_Base.log +0 -4641
  292. data/test/interopR2/clientSun_GroupB.log +0 -856
  293. data/test/interopR2/clientVWOpentalkSoap_Base.log +0 -5402
  294. data/test/interopR2/clientVWOpentalkSoap_GroupB.log +0 -972
  295. data/test/interopR2/clientWASPC_Base.log +0 -4187
  296. data/test/interopR2/clientWASPC_GroupB.log +0 -763
  297. data/test/interopR2/clientWASP_Base.log +0 -5414
  298. data/test/interopR2/clientWASP_GroupB.log +0 -970
  299. data/test/interopR2/clientWebMethods_Base.log +0 -3075
  300. data/test/interopR2/clientWebMethods_GroupB.log +0 -483
  301. data/test/interopR2/clientWhiteMesa_Base.log +0 -4359
  302. data/test/interopR2/clientWhiteMesa_GroupB.log +0 -808
  303. data/test/interopR2/clientWingfoot_Base.log +0 -4445
  304. data/test/interopR2/clientWingfoot_GroupB.log +0 -848
  305. data/test/interopR2/clientXMLBus_Base.log +0 -3075
  306. data/test/interopR2/clientXMLBus_GroupB.log +0 -483
  307. data/test/interopR2/clientXSOAP_Base.log +0 -4445
  308. data/test/interopR2/clienteSOAP_Base.log +0 -8728
  309. data/test/interopR2/clientgSOAP_Base.log +0 -4689
  310. data/test/interopR2/clientgSOAP_GroupB.log +0 -1014
  311. data/test/interopR2/clientkSOAP_Base.log +0 -5625
@@ -1,972 +0,0 @@
1
- File: clientVWOpentalkSoap_GroupB.log - Wiredumps for SOAP4R client / VWOpentalkSoap server.
2
- Date: Sat Jul 23 21:43:58 JST 2005
3
-
4
- ##########
5
- # echoStructAsSimpleTypes
6
-
7
- Result: Exception: execution expired (Timeout::Error)
8
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
9
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
10
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
11
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
12
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
13
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
14
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
15
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
16
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
17
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
18
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
19
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
20
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
21
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
22
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
23
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
24
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
25
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
26
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
27
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1676:in `doTestGroupB'
28
- clientVWOpentalkSoap.rb:18
29
-
30
- Wire dump:
31
-
32
- = Request
33
-
34
- ! CONNECTION ESTABLISHED
35
- POST /r2groupb/interop HTTP/1.1
36
- SOAPAction: "http://soapinterop.org/"
37
- Content-Type: text/xml; charset=utf-8
38
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
39
- Date: Sat Jul 23 21:43:59 JST 2005
40
- Content-Length: 700
41
- Host: www.cincomsmalltalk.com
42
-
43
- <?xml version="1.0" encoding="utf-8" ?>
44
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
45
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
46
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
47
- <env:Body>
48
- <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
49
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
50
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
51
- xsi:type="n2:SOAPStruct">
52
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
53
- <varInt xsi:type="xsd:int">1</varInt>
54
- <varString xsi:type="xsd:string">a</varString>
55
- </inputStruct>
56
- </n1:echoStructAsSimpleTypes>
57
- </env:Body>
58
- </env:Envelope>
59
-
60
- = Response
61
-
62
-
63
- ##########
64
- # echoStructAsSimpleTypes (nil)
65
-
66
- Result: Exception: execution expired (Timeout::Error)
67
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
68
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
69
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
70
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
71
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
72
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
73
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
74
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
75
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
76
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
77
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
78
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
79
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
80
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
81
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
82
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
83
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
84
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
85
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
86
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1687:in `doTestGroupB'
87
- clientVWOpentalkSoap.rb:18
88
-
89
- Wire dump:
90
-
91
- = Request
92
-
93
- ! CONNECTION ESTABLISHED
94
- POST /r2groupb/interop HTTP/1.1
95
- SOAPAction: "http://soapinterop.org/"
96
- Content-Type: text/xml; charset=utf-8
97
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
98
- Date: Sat Jul 23 21:44:59 JST 2005
99
- Content-Length: 677
100
- Host: www.cincomsmalltalk.com
101
-
102
- <?xml version="1.0" encoding="utf-8" ?>
103
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
104
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
105
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
106
- <env:Body>
107
- <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
108
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
109
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
110
- xsi:type="n2:SOAPStruct">
111
- <varFloat xsi:nil="true"></varFloat>
112
- <varInt xsi:nil="true"></varInt>
113
- <varString xsi:nil="true"></varString>
114
- </inputStruct>
115
- </n1:echoStructAsSimpleTypes>
116
- </env:Body>
117
- </env:Envelope>
118
-
119
- = Response
120
-
121
-
122
- ##########
123
- # echoSimpleTypesAsStruct
124
-
125
- Result: Exception: execution expired (Timeout::Error)
126
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
127
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
128
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
129
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
130
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
131
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
132
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
133
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
134
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
135
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
136
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
137
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
138
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
139
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
140
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
141
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
142
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
143
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
144
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
145
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1698:in `doTestGroupB'
146
- clientVWOpentalkSoap.rb:18
147
-
148
- Wire dump:
149
-
150
- = Request
151
-
152
- ! CONNECTION ESTABLISHED
153
- POST /r2groupb/interop HTTP/1.1
154
- SOAPAction: "http://soapinterop.org/"
155
- Content-Type: text/xml; charset=utf-8
156
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
157
- Date: Sat Jul 23 21:45:59 JST 2005
158
- Content-Length: 600
159
- Host: www.cincomsmalltalk.com
160
-
161
- <?xml version="1.0" encoding="utf-8" ?>
162
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
163
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
164
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
165
- <env:Body>
166
- <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
167
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
168
- <inputString xsi:type="xsd:string">a</inputString>
169
- <inputInteger xsi:type="xsd:int">1</inputInteger>
170
- <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
171
- </n1:echoSimpleTypesAsStruct>
172
- </env:Body>
173
- </env:Envelope>
174
-
175
- = Response
176
-
177
-
178
- ##########
179
- # echoSimpleTypesAsStruct (nil)
180
-
181
- Result: Exception: execution expired (Timeout::Error)
182
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
183
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
184
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
185
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
186
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
187
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
188
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
189
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
190
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
191
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
192
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
193
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
194
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
195
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
196
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
197
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
198
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
199
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
200
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
201
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1708:in `doTestGroupB'
202
- clientVWOpentalkSoap.rb:18
203
-
204
- Wire dump:
205
-
206
- = Request
207
-
208
- ! CONNECTION ESTABLISHED
209
- POST /r2groupb/interop HTTP/1.1
210
- SOAPAction: "http://soapinterop.org/"
211
- Content-Type: text/xml; charset=utf-8
212
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
213
- Date: Sat Jul 23 21:47:00 JST 2005
214
- Content-Length: 577
215
- Host: www.cincomsmalltalk.com
216
-
217
- <?xml version="1.0" encoding="utf-8" ?>
218
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
219
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
220
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
221
- <env:Body>
222
- <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
223
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
224
- <inputString xsi:nil="true"></inputString>
225
- <inputInteger xsi:nil="true"></inputInteger>
226
- <inputFloat xsi:nil="true"></inputFloat>
227
- </n1:echoSimpleTypesAsStruct>
228
- </env:Body>
229
- </env:Envelope>
230
-
231
- = Response
232
-
233
-
234
- ##########
235
- # echo2DStringArray
236
-
237
- Result: Exception: execution expired (Timeout::Error)
238
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
239
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
240
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
241
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
242
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
243
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
244
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
245
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
246
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
247
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
248
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
249
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
250
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
251
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
252
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
253
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
254
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
255
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
256
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
257
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1747:in `doTestGroupB'
258
- clientVWOpentalkSoap.rb:18
259
-
260
- Wire dump:
261
-
262
- = Request
263
-
264
- ! CONNECTION ESTABLISHED
265
- POST /r2groupb/interop HTTP/1.1
266
- SOAPAction: "http://soapinterop.org/"
267
- Content-Type: text/xml; charset=utf-8
268
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
269
- Date: Sat Jul 23 21:48:00 JST 2005
270
- Content-Length: 889
271
- Host: www.cincomsmalltalk.com
272
-
273
- <?xml version="1.0" encoding="utf-8" ?>
274
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
275
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
276
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
277
- <env:Body>
278
- <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
279
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
280
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
281
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
282
- xsi:type="n2:ArrayOfString2D"
283
- n3:arrayType="xsd:string[3,3]">
284
- <item>r0c0</item>
285
- <item>r1c0</item>
286
- <item>r2c0</item>
287
- <item>r0c1</item>
288
- <item>r1c1</item>
289
- <item>r2c1</item>
290
- <item>r0c2</item>
291
- <item>r1c2</item>
292
- <item>r2c2</item>
293
- </input2DStringArray>
294
- </n1:echo2DStringArray>
295
- </env:Body>
296
- </env:Envelope>
297
-
298
- = Response
299
-
300
-
301
- ##########
302
- # echo2DStringArray (anyType array)
303
-
304
- Result: Exception: execution expired (Timeout::Error)
305
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
306
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
307
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
308
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
309
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
310
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
311
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
312
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
313
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
314
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
315
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
316
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
317
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
318
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
319
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
320
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
321
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
322
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
323
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
324
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1765:in `doTestGroupB'
325
- clientVWOpentalkSoap.rb:18
326
-
327
- Wire dump:
328
-
329
- = Request
330
-
331
- ! CONNECTION ESTABLISHED
332
- POST /r2groupb/interop HTTP/1.1
333
- SOAPAction: "http://soapinterop.org/"
334
- Content-Type: text/xml; charset=utf-8
335
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
336
- Date: Sat Jul 23 21:49:00 JST 2005
337
- Content-Length: 1088
338
- Host: www.cincomsmalltalk.com
339
-
340
- <?xml version="1.0" encoding="utf-8" ?>
341
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
342
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
343
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
344
- <env:Body>
345
- <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
346
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
347
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
348
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
349
- xsi:type="n2:ArrayOfString2D"
350
- n3:arrayType="xsd:anyType[3,3]">
351
- <item xsi:type="xsd:string">r0c0</item>
352
- <item xsi:type="xsd:string">r0c1</item>
353
- <item xsi:type="xsd:string">r0c2</item>
354
- <item xsi:type="xsd:string">r1c0</item>
355
- <item xsi:type="xsd:string">r1c1</item>
356
- <item xsi:type="xsd:string">r1c2</item>
357
- <item xsi:type="xsd:string">r2c0</item>
358
- <item xsi:type="xsd:string">r0c1</item>
359
- <item xsi:type="xsd:string">r2c2</item>
360
- </input2DStringArray>
361
- </n1:echo2DStringArray>
362
- </env:Body>
363
- </env:Envelope>
364
-
365
- = Response
366
-
367
-
368
- ##########
369
- # echo2DStringArray (multi-ref)
370
-
371
- Result: Exception: execution expired (Timeout::Error)
372
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
373
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
374
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
375
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
376
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
377
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
378
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
379
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
380
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
381
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
382
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
383
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
384
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
385
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
386
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
387
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
388
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
389
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
390
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
391
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
392
- clientVWOpentalkSoap.rb:18
393
-
394
- Wire dump:
395
-
396
- = Request
397
-
398
- ! CONNECTION ESTABLISHED
399
- POST /r2groupb/interop HTTP/1.1
400
- SOAPAction: "http://soapinterop.org/"
401
- Content-Type: text/xml; charset=utf-8
402
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
403
- Date: Sat Jul 23 21:50:01 JST 2005
404
- Content-Length: 1063
405
- Host: www.cincomsmalltalk.com
406
-
407
- <?xml version="1.0" encoding="utf-8" ?>
408
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
409
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
410
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
411
- <env:Body>
412
- <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
413
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
414
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
415
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
416
- xsi:type="n2:ArrayOfString2D"
417
- n3:arrayType="xsd:string[3,3]">
418
- <item>r0c0</item>
419
- <item>r1c0</item>
420
- <item href="#id-605670444"></item>
421
- <item>r0c1</item>
422
- <item>r1c1</item>
423
- <item>r2c1</item>
424
- <item href="#id-605670444"></item>
425
- <item>r1c2</item>
426
- <item>r2c2</item>
427
- </input2DStringArray>
428
- </n1:echo2DStringArray>
429
- <item id="id-605670444"
430
- xsi:type="xsd:string"
431
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
432
- </env:Body>
433
- </env:Envelope>
434
-
435
- = Response
436
-
437
-
438
- ##########
439
- # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
440
-
441
- Result: Exception: execution expired (Timeout::Error)
442
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
443
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
444
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
445
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
446
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
447
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
448
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
449
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
450
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
451
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
452
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
453
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
454
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
455
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
456
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
457
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
458
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
459
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
460
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
461
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1852:in `doTestGroupB'
462
- clientVWOpentalkSoap.rb:18
463
-
464
- Wire dump:
465
-
466
- = Request
467
-
468
- ! CONNECTION ESTABLISHED
469
- POST /r2groupb/interop HTTP/1.1
470
- SOAPAction: "http://soapinterop.org/"
471
- Content-Type: text/xml; charset=utf-8
472
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
473
- Date: Sat Jul 23 21:51:01 JST 2005
474
- Content-Length: 1063
475
- Host: www.cincomsmalltalk.com
476
-
477
- <?xml version="1.0" encoding="utf-8" ?>
478
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
479
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
480
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
481
- <env:Body>
482
- <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
483
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
484
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
485
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
486
- xsi:type="n2:ArrayOfString2D"
487
- n3:arrayType="xsd:string[3,3]">
488
- <item>r0c0</item>
489
- <item>r1c0</item>
490
- <item href="#id-605703494"></item>
491
- <item>r0c1</item>
492
- <item>r1c1</item>
493
- <item>r2c1</item>
494
- <item href="#id-605703494"></item>
495
- <item>r1c2</item>
496
- <item>r2c2</item>
497
- </input2DStringArray>
498
- </n1:echo2DStringArray>
499
- <item id="id-605703494"
500
- xsi:type="xsd:string"
501
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
502
- </env:Body>
503
- </env:Envelope>
504
-
505
- = Response
506
-
507
-
508
- ##########
509
- # echoNestedStruct
510
-
511
- Result: Exception: execution expired (Timeout::Error)
512
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
513
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
514
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
515
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
516
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
517
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
518
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
519
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
520
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
521
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
522
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
523
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
524
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
525
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
526
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
527
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
528
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
529
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
530
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
531
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1882:in `doTestGroupB'
532
- clientVWOpentalkSoap.rb:18
533
-
534
- Wire dump:
535
-
536
- = Request
537
-
538
- ! CONNECTION ESTABLISHED
539
- POST /r2groupb/interop HTTP/1.1
540
- SOAPAction: "http://soapinterop.org/"
541
- Content-Type: text/xml; charset=utf-8
542
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
543
- Date: Sat Jul 23 21:52:02 JST 2005
544
- Content-Length: 920
545
- Host: www.cincomsmalltalk.com
546
-
547
- <?xml version="1.0" encoding="utf-8" ?>
548
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
549
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
550
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
551
- <env:Body>
552
- <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
553
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
554
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
555
- xsi:type="n2:SOAPStructStruct">
556
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
557
- <varInt xsi:type="xsd:int">1</varInt>
558
- <varStruct xsi:type="n2:SOAPStruct">
559
- <varFloat xsi:type="xsd:float">+2.2</varFloat>
560
- <varInt xsi:type="xsd:int">2</varInt>
561
- <varString xsi:type="xsd:string">b</varString>
562
- </varStruct>
563
- <varString xsi:type="xsd:string">a</varString>
564
- </inputStruct>
565
- </n1:echoNestedStruct>
566
- </env:Body>
567
- </env:Envelope>
568
-
569
- = Response
570
-
571
-
572
- ##########
573
- # echoNestedStruct (nil)
574
-
575
- Result: Exception: execution expired (Timeout::Error)
576
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
577
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
578
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
579
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
580
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
581
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
582
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
583
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
584
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
585
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
586
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
587
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
588
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
589
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
590
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
591
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
592
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
593
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
594
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
595
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1894:in `doTestGroupB'
596
- clientVWOpentalkSoap.rb:18
597
-
598
- Wire dump:
599
-
600
- = Request
601
-
602
- ! CONNECTION ESTABLISHED
603
- POST /r2groupb/interop HTTP/1.1
604
- SOAPAction: "http://soapinterop.org/"
605
- Content-Type: text/xml; charset=utf-8
606
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
607
- Date: Sat Jul 23 21:53:02 JST 2005
608
- Content-Length: 874
609
- Host: www.cincomsmalltalk.com
610
-
611
- <?xml version="1.0" encoding="utf-8" ?>
612
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
613
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
614
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
615
- <env:Body>
616
- <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
617
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
618
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
619
- xsi:type="n2:SOAPStructStruct">
620
- <varFloat xsi:nil="true"></varFloat>
621
- <varInt xsi:nil="true"></varInt>
622
- <varStruct xsi:type="n2:SOAPStruct">
623
- <varFloat xsi:nil="true"></varFloat>
624
- <varInt xsi:nil="true"></varInt>
625
- <varString xsi:nil="true"></varString>
626
- </varStruct>
627
- <varString xsi:nil="true"></varString>
628
- </inputStruct>
629
- </n1:echoNestedStruct>
630
- </env:Body>
631
- </env:Envelope>
632
-
633
- = Response
634
-
635
-
636
- ##########
637
- # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
638
-
639
- Result: Exception: execution expired (Timeout::Error)
640
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
641
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
642
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
643
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
644
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
645
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
646
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
647
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
648
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
649
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
650
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
651
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
652
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
653
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
654
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
655
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
656
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
657
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
658
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
659
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1907:in `doTestGroupB'
660
- clientVWOpentalkSoap.rb:18
661
-
662
- Wire dump:
663
-
664
- = Request
665
-
666
- ! CONNECTION ESTABLISHED
667
- POST /r2groupb/interop HTTP/1.1
668
- SOAPAction: "http://soapinterop.org/"
669
- Content-Type: text/xml; charset=utf-8
670
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
671
- Date: Sat Jul 23 21:54:02 JST 2005
672
- Content-Length: 1062
673
- Host: www.cincomsmalltalk.com
674
-
675
- <?xml version="1.0" encoding="utf-8" ?>
676
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
677
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
678
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
679
- <env:Body>
680
- <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
681
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
682
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
683
- xsi:type="n2:SOAPStructStruct">
684
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
685
- <varInt xsi:type="xsd:int">1</varInt>
686
- <varStruct xsi:type="n2:SOAPStruct">
687
- <varFloat xsi:type="xsd:float">+2.2</varFloat>
688
- <varInt xsi:type="xsd:int">2</varInt>
689
- <varString href="#id-605734114"></varString>
690
- </varStruct>
691
- <varString href="#id-605734114"></varString>
692
- </inputStruct>
693
- </n1:echoNestedStruct>
694
- <varString id="id-605734114"
695
- xsi:type="xsd:string"
696
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
697
- </env:Body>
698
- </env:Envelope>
699
-
700
- = Response
701
-
702
-
703
- ##########
704
- # echoNestedArray
705
-
706
- Result: Exception: execution expired (Timeout::Error)
707
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
708
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
709
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
710
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
711
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
712
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
713
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
714
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
715
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
716
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
717
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
718
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
719
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
720
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
721
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
722
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
723
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
724
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
725
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
726
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1917:in `doTestGroupB'
727
- clientVWOpentalkSoap.rb:18
728
-
729
- Wire dump:
730
-
731
- = Request
732
-
733
- ! CONNECTION ESTABLISHED
734
- POST /r2groupb/interop HTTP/1.1
735
- SOAPAction: "http://soapinterop.org/"
736
- Content-Type: text/xml; charset=utf-8
737
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
738
- Date: Sat Jul 23 21:55:03 JST 2005
739
- Content-Length: 931
740
- Host: www.cincomsmalltalk.com
741
-
742
- <?xml version="1.0" encoding="utf-8" ?>
743
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
744
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
745
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
746
- <env:Body>
747
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
748
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
749
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
750
- xsi:type="n2:SOAPArrayStruct">
751
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
752
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
753
- xsi:type="n3:Array"
754
- n3:arrayType="xsd:string[3]">
755
- <item>2</item>
756
- <item>2.2</item>
757
- <item>b</item>
758
- </varArray>
759
- <varInt xsi:type="xsd:int">1</varInt>
760
- <varString xsi:type="xsd:string">a</varString>
761
- </inputStruct>
762
- </n1:echoNestedArray>
763
- </env:Body>
764
- </env:Envelope>
765
-
766
- = Response
767
-
768
-
769
- ##########
770
- # echoNestedArray (anyType array)
771
-
772
- Result: Exception: execution expired (Timeout::Error)
773
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
774
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
775
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
776
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
777
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
778
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
779
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
780
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
781
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
782
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
783
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
784
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
785
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
786
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
787
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
788
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
789
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
790
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
791
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
792
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
793
- clientVWOpentalkSoap.rb:18
794
-
795
- Wire dump:
796
-
797
- = Request
798
-
799
- ! CONNECTION ESTABLISHED
800
- POST /r2groupb/interop HTTP/1.1
801
- SOAPAction: "http://soapinterop.org/"
802
- Content-Type: text/xml; charset=utf-8
803
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
804
- Date: Sat Jul 23 21:56:03 JST 2005
805
- Content-Length: 998
806
- Host: www.cincomsmalltalk.com
807
-
808
- <?xml version="1.0" encoding="utf-8" ?>
809
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
810
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
811
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
812
- <env:Body>
813
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
814
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
815
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
816
- xsi:type="n2:SOAPArrayStruct">
817
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
818
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
819
- xsi:type="n3:Array"
820
- n3:arrayType="xsd:anyType[3]">
821
- <item xsi:type="xsd:string">2</item>
822
- <item xsi:type="xsd:string">2.2</item>
823
- <item xsi:type="xsd:string">b</item>
824
- </varArray>
825
- <varInt xsi:type="xsd:int">1</varInt>
826
- <varString xsi:type="xsd:string">a</varString>
827
- </inputStruct>
828
- </n1:echoNestedArray>
829
- </env:Body>
830
- </env:Envelope>
831
-
832
- = Response
833
-
834
-
835
- ##########
836
- # echoNestedArray (multi-ref)
837
-
838
- Result: Exception: execution expired (Timeout::Error)
839
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
840
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
841
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
842
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
843
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
844
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
845
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
846
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
847
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
848
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
849
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
850
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
851
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
852
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
853
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
854
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
855
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
856
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
857
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
858
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1938:in `doTestGroupB'
859
- clientVWOpentalkSoap.rb:18
860
-
861
- Wire dump:
862
-
863
- = Request
864
-
865
- ! CONNECTION ESTABLISHED
866
- POST /r2groupb/interop HTTP/1.1
867
- SOAPAction: "http://soapinterop.org/"
868
- Content-Type: text/xml; charset=utf-8
869
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
870
- Date: Sat Jul 23 21:57:03 JST 2005
871
- Content-Length: 1083
872
- Host: www.cincomsmalltalk.com
873
-
874
- <?xml version="1.0" encoding="utf-8" ?>
875
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
876
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
877
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
878
- <env:Body>
879
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
880
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
881
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
882
- xsi:type="n2:SOAPArrayStruct">
883
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
884
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
885
- xsi:type="n3:Array"
886
- n3:arrayType="xsd:string[3]">
887
- <item>2</item>
888
- <item href="#id-605819184"></item>
889
- <item>b</item>
890
- </varArray>
891
- <varInt xsi:type="xsd:int">1</varInt>
892
- <varString href="#id-605819184"></varString>
893
- </inputStruct>
894
- </n1:echoNestedArray>
895
- <item id="id-605819184"
896
- xsi:type="xsd:string"
897
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
898
- </env:Body>
899
- </env:Envelope>
900
-
901
- = Response
902
-
903
-
904
- ##########
905
- # echoNestedArray (multi-ref: varString == varArray[1])
906
-
907
- Result: Exception: execution expired (Timeout::Error)
908
- /usr/local/lib/ruby/1.9/timeout.rb:44:in `gets'
909
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1426:in `parse_header'
910
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `timeout'
911
- /usr/local/lib/ruby/1.9/timeout.rb:63:in `timeout'
912
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1424:in `parse_header'
913
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1380:in `read_header'
914
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:1212:in `get_status'
915
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:465:in `do_get_header'
916
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:435:in `do_get_block'
917
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:370:in `conn_request'
918
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:285:in `request'
919
- /usr/local/lib/ruby/site_ruby/1.9/http-access2.rb:264:in `post'
920
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:164:in `send_post'
921
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
922
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
923
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
924
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
925
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
926
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
927
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1949:in `doTestGroupB'
928
- clientVWOpentalkSoap.rb:18
929
-
930
- Wire dump:
931
-
932
- = Request
933
-
934
- ! CONNECTION ESTABLISHED
935
- POST /r2groupb/interop HTTP/1.1
936
- SOAPAction: "http://soapinterop.org/"
937
- Content-Type: text/xml; charset=utf-8
938
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
939
- Date: Sat Jul 23 21:58:04 JST 2005
940
- Content-Length: 1083
941
- Host: www.cincomsmalltalk.com
942
-
943
- <?xml version="1.0" encoding="utf-8" ?>
944
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
945
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
946
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
947
- <env:Body>
948
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
949
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
950
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
951
- xsi:type="n2:SOAPArrayStruct">
952
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
953
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
954
- xsi:type="n3:Array"
955
- n3:arrayType="xsd:string[3]">
956
- <item>2</item>
957
- <item href="#id-605849514"></item>
958
- <item>b</item>
959
- </varArray>
960
- <varInt xsi:type="xsd:int">1</varInt>
961
- <varString href="#id-605849514"></varString>
962
- </inputStruct>
963
- </n1:echoNestedArray>
964
- <item id="id-605849514"
965
- xsi:type="xsd:string"
966
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
967
- </env:Body>
968
- </env:Envelope>
969
-
970
- = Response
971
-
972
-