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,15 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $serverName = 'WingfootSOAPServer'
4
+
5
+ $server = 'http://www.wingfoot.com/servlet/wserver'
6
+ $noEchoMap = true
7
+
8
+ require 'clientBase'
9
+
10
+ drv = SOAP::RPC::Driver.new($server, InterfaceNS)
11
+ methodDef(drv)
12
+
13
+ doTestBase(drv)
14
+ doTestGroupB(drv)
15
+ submitTestResult
@@ -0,0 +1,4445 @@
1
+ File: clientWingfoot_Base.log - Wiredumps for SOAP4R client / WingfootSOAPServer server.
2
+ Date: Sat Jul 23 22:15:38 JST 2005
3
+
4
+ ##########
5
+ # echoVoid
6
+
7
+ Result: OK
8
+
9
+ Wire dump:
10
+
11
+ = Request
12
+
13
+ ! CONNECTION ESTABLISHED
14
+ POST /servlet/wserver HTTP/1.1
15
+ SOAPAction: "http://soapinterop.org/"
16
+ Content-Type: text/xml; charset=utf-8
17
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
18
+ Date: Sat Jul 23 22:15:39 JST 2005
19
+ Content-Length: 400
20
+ Host: www.wingfoot.com
21
+
22
+ <?xml version="1.0" encoding="utf-8" ?>
23
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
24
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
25
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
26
+ <env:Body>
27
+ <n1:echoVoid xmlns:n1="http://soapinterop.org/"
28
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
29
+ </n1:echoVoid>
30
+ </env:Body>
31
+ </env:Envelope>
32
+
33
+ = Response
34
+
35
+ HTTP/1.1 200 OK
36
+ Date: Sat, 23 Jul 2005 13:17:07 GMT
37
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
38
+ Content-Length: 414
39
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
40
+ Content-Type: text/xml; charset="utf-8"
41
+
42
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoVoidResponse xmlns:ns1="http://soapinterop.org/"></ns1:echoVoidResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
43
+
44
+
45
+ ##########
46
+ # echoString
47
+
48
+ Result: OK
49
+
50
+ Wire dump:
51
+
52
+ = Request
53
+
54
+ POST /servlet/wserver HTTP/1.1
55
+ SOAPAction: "http://soapinterop.org/"
56
+ Content-Type: text/xml; charset=utf-8
57
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
58
+ Date: Sat Jul 23 22:15:39 JST 2005
59
+ Content-Length: 488
60
+ Host: www.wingfoot.com
61
+
62
+ <?xml version="1.0" encoding="utf-8" ?>
63
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
64
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
65
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
+ <env:Body>
67
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
68
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
69
+ <inputString xsi:type="xsd:string">SOAP4R Interoperability Test</inputString>
70
+ </n1:echoString>
71
+ </env:Body>
72
+ </env:Envelope>
73
+
74
+ = Response
75
+
76
+ HTTP/1.1 200 OK
77
+ Date: Sat, 23 Jul 2005 13:17:07 GMT
78
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
79
+ Content-Length: 485
80
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
81
+ Content-Type: text/xml; charset="utf-8"
82
+
83
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:string">SOAP4R Interoperability Test</return></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
84
+
85
+
86
+ ##########
87
+ # echoString (Entity reference)
88
+
89
+ Result: OK
90
+
91
+ Wire dump:
92
+
93
+ = Request
94
+
95
+ POST /servlet/wserver HTTP/1.1
96
+ SOAPAction: "http://soapinterop.org/"
97
+ Content-Type: text/xml; charset=utf-8
98
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
99
+ Date: Sat Jul 23 22:15:40 JST 2005
100
+ Content-Length: 549
101
+ Host: www.wingfoot.com
102
+
103
+ <?xml version="1.0" encoding="utf-8" ?>
104
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
105
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
106
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
107
+ <env:Body>
108
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
109
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
110
+ <inputString xsi:type="xsd:string">&lt;&gt;&quot;&amp; &amp;lt;&amp;gt;&amp;quot;&amp;amp; &amp;amp&amp;amp;&gt;&lt;&lt;&lt;</inputString>
111
+ </n1:echoString>
112
+ </env:Body>
113
+ </env:Envelope>
114
+
115
+ = Response
116
+
117
+ HTTP/1.1 200 OK
118
+ Date: Sat, 23 Jul 2005 13:17:07 GMT
119
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
120
+ Content-Length: 546
121
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
122
+ Content-Type: text/xml; charset="utf-8"
123
+
124
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:string">&lt;&gt;&quot;&amp; &amp;lt;&amp;gt;&amp;quot;&amp;amp; &amp;amp&amp;amp;&gt;&lt;&lt;&lt;</return></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
125
+
126
+
127
+ ##########
128
+ # echoString (Character reference)
129
+
130
+ Result: OK
131
+
132
+ Wire dump:
133
+
134
+ = Request
135
+
136
+ POST /servlet/wserver HTTP/1.1
137
+ SOAPAction: "http://soapinterop.org/"
138
+ Content-Type: text/xml; charset=utf-8
139
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
140
+ Date: Sat Jul 23 22:15:40 JST 2005
141
+ Content-Length: 487
142
+ Host: www.wingfoot.com
143
+
144
+ <?xml version="1.0" encoding="utf-8" ?>
145
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
146
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
147
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
148
+ <env:Body>
149
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
150
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
151
+ <inputString xsi:type="xsd:string"> &#x20; &#32;&#x7f;&#127;</inputString>
152
+ </n1:echoString>
153
+ </env:Body>
154
+ </env:Envelope>
155
+
156
+ = Response
157
+
158
+ HTTP/1.1 200 OK
159
+ Date: Sat, 23 Jul 2005 13:17:08 GMT
160
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
161
+ Content-Length: 465
162
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
163
+ Content-Type: text/xml; charset="utf-8"
164
+
165
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:string"> </return></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
166
+
167
+
168
+ ##########
169
+ # echoString (Leading and trailing whitespace)
170
+
171
+ Result: OK
172
+
173
+ Wire dump:
174
+
175
+ = Request
176
+
177
+ POST /servlet/wserver HTTP/1.1
178
+ SOAPAction: "http://soapinterop.org/"
179
+ Content-Type: text/xml; charset=utf-8
180
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
181
+ Date: Sat Jul 23 22:15:40 JST 2005
182
+ Content-Length: 494
183
+ Host: www.wingfoot.com
184
+
185
+ <?xml version="1.0" encoding="utf-8" ?>
186
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
187
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
188
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
189
+ <env:Body>
190
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
191
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
192
+ <inputString xsi:type="xsd:string"> SOAP4R
193
+ Interoperability
194
+ Test </inputString>
195
+ </n1:echoString>
196
+ </env:Body>
197
+ </env:Envelope>
198
+
199
+ = Response
200
+
201
+ HTTP/1.1 200 OK
202
+ Date: Sat, 23 Jul 2005 13:17:08 GMT
203
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
204
+ Content-Length: 491
205
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
206
+ Content-Type: text/xml; charset="utf-8"
207
+
208
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:string"> SOAP4R
209
+ Interoperability
210
+ Test </return></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
211
+
212
+
213
+ ##########
214
+ # echoString (EUC encoded)
215
+
216
+ Result: OK
217
+
218
+ Wire dump:
219
+
220
+ = Request
221
+
222
+ POST /servlet/wserver HTTP/1.1
223
+ SOAPAction: "http://soapinterop.org/"
224
+ Content-Type: text/xml; charset=utf-8
225
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
226
+ Date: Sat Jul 23 22:15:41 JST 2005
227
+ Content-Length: 501
228
+ Host: www.wingfoot.com
229
+
230
+ <?xml version="1.0" encoding="utf-8" ?>
231
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
232
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
233
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
234
+ <env:Body>
235
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
236
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
237
+ <inputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</inputString>
238
+ </n1:echoString>
239
+ </env:Body>
240
+ </env:Envelope>
241
+
242
+ = Response
243
+
244
+ HTTP/1.1 200 OK
245
+ Date: Sat, 23 Jul 2005 13:17:08 GMT
246
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
247
+ Content-Length: 498
248
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
249
+ Content-Type: text/xml; charset="utf-8"
250
+
251
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</return></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
252
+
253
+
254
+ ##########
255
+ # echoString (EUC encoded) again
256
+
257
+ Result: OK
258
+
259
+ Wire dump:
260
+
261
+ = Request
262
+
263
+ POST /servlet/wserver HTTP/1.1
264
+ SOAPAction: "http://soapinterop.org/"
265
+ Content-Type: text/xml; charset=utf-8
266
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
267
+ Date: Sat Jul 23 22:15:41 JST 2005
268
+ Content-Length: 501
269
+ Host: www.wingfoot.com
270
+
271
+ <?xml version="1.0" encoding="utf-8" ?>
272
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
273
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
274
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
275
+ <env:Body>
276
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
277
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
278
+ <inputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</inputString>
279
+ </n1:echoString>
280
+ </env:Body>
281
+ </env:Envelope>
282
+
283
+ = Response
284
+
285
+ HTTP/1.1 200 OK
286
+ Date: Sat, 23 Jul 2005 13:17:09 GMT
287
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
288
+ Content-Length: 498
289
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
290
+ Content-Type: text/xml; charset="utf-8"
291
+
292
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</return></ns1:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
293
+
294
+
295
+ ##########
296
+ # echoString (empty)
297
+
298
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
299
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
300
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
301
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
302
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
303
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoString'
304
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoString'
305
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:297:in `doTestBase'
306
+ clientWingfoot.rb:13
307
+
308
+ Wire dump:
309
+
310
+ = Request
311
+
312
+ POST /servlet/wserver HTTP/1.1
313
+ SOAPAction: "http://soapinterop.org/"
314
+ Content-Type: text/xml; charset=utf-8
315
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
316
+ Date: Sat Jul 23 22:15:41 JST 2005
317
+ Content-Length: 460
318
+ Host: www.wingfoot.com
319
+
320
+ <?xml version="1.0" encoding="utf-8" ?>
321
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
322
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
323
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
324
+ <env:Body>
325
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
326
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
327
+ <inputString xsi:type="xsd:string"></inputString>
328
+ </n1:echoString>
329
+ </env:Body>
330
+ </env:Envelope>
331
+
332
+ = Response
333
+
334
+ HTTP/1.1 500 Internal
335
+ Date: Sat, 23 Jul 2005 13:17:09 GMT
336
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
337
+ Content-Length: 4
338
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
339
+ Connection: close
340
+ Content-Type: text/xml; charset="utf-8"
341
+
342
+ null! CONNECTION CLOSED
343
+
344
+
345
+
346
+ ##########
347
+ # echoString (space)
348
+
349
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
350
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
351
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
352
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
353
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
354
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoString'
355
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoString'
356
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:307:in `doTestBase'
357
+ clientWingfoot.rb:13
358
+
359
+ Wire dump:
360
+
361
+ = Request
362
+
363
+ ! CONNECTION ESTABLISHED
364
+ POST /servlet/wserver HTTP/1.1
365
+ SOAPAction: "http://soapinterop.org/"
366
+ Content-Type: text/xml; charset=utf-8
367
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
368
+ Date: Sat Jul 23 22:15:42 JST 2005
369
+ Content-Length: 461
370
+ Host: www.wingfoot.com
371
+
372
+ <?xml version="1.0" encoding="utf-8" ?>
373
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
374
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
375
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
376
+ <env:Body>
377
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
378
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
379
+ <inputString xsi:type="xsd:string"> </inputString>
380
+ </n1:echoString>
381
+ </env:Body>
382
+ </env:Envelope>
383
+
384
+ = Response
385
+
386
+ HTTP/1.1 500 Internal
387
+ Date: Sat, 23 Jul 2005 13:17:10 GMT
388
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
389
+ Content-Length: 4
390
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
391
+ Connection: close
392
+ Content-Type: text/xml; charset="utf-8"
393
+
394
+ null! CONNECTION CLOSED
395
+
396
+
397
+
398
+ ##########
399
+ # echoString (whitespaces:\r \n \t \r \n \t)
400
+
401
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
402
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
403
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
404
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
405
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
406
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoString'
407
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoString'
408
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:317:in `doTestBase'
409
+ clientWingfoot.rb:13
410
+
411
+ Wire dump:
412
+
413
+ = Request
414
+
415
+ ! CONNECTION ESTABLISHED
416
+ POST /servlet/wserver HTTP/1.1
417
+ SOAPAction: "http://soapinterop.org/"
418
+ Content-Type: text/xml; charset=utf-8
419
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
420
+ Date: Sat Jul 23 22:15:43 JST 2005
421
+ Content-Length: 479
422
+ Host: www.wingfoot.com
423
+
424
+ <?xml version="1.0" encoding="utf-8" ?>
425
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
426
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
427
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
428
+ <env:Body>
429
+ <n1:echoString xmlns:n1="http://soapinterop.org/"
430
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
431
+ <inputString xsi:type="xsd:string">&#xd;
432
+ &#xd;
433
+ </inputString>
434
+ </n1:echoString>
435
+ </env:Body>
436
+ </env:Envelope>
437
+
438
+ = Response
439
+
440
+ HTTP/1.1 500 Internal
441
+ Date: Sat, 23 Jul 2005 13:17:10 GMT
442
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
443
+ Content-Length: 4
444
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
445
+ Connection: close
446
+ Content-Type: text/xml; charset="utf-8"
447
+
448
+ null! CONNECTION CLOSED
449
+
450
+
451
+
452
+ ##########
453
+ # echoStringArray
454
+
455
+ Result: OK
456
+
457
+ Wire dump:
458
+
459
+ = Request
460
+
461
+ ! CONNECTION ESTABLISHED
462
+ POST /servlet/wserver HTTP/1.1
463
+ SOAPAction: "http://soapinterop.org/"
464
+ Content-Type: text/xml; charset=utf-8
465
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
466
+ Date: Sat Jul 23 22:15:43 JST 2005
467
+ Content-Length: 684
468
+ Host: www.wingfoot.com
469
+
470
+ <?xml version="1.0" encoding="utf-8" ?>
471
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
472
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
473
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
474
+ <env:Body>
475
+ <n1:echoStringArray xmlns:n1="http://soapinterop.org/"
476
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
477
+ <inputStringArray n2:arrayType="xsd:string[3]"
478
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
479
+ xsi:type="n2:Array">
480
+ <item>SOAP4R
481
+ </item>
482
+ <item> Interoperability </item>
483
+ <item> Test </item>
484
+ </inputStringArray>
485
+ </n1:echoStringArray>
486
+ </env:Body>
487
+ </env:Envelope>
488
+
489
+ = Response
490
+
491
+ HTTP/1.1 200 OK
492
+ Date: Sat, 23 Jul 2005 13:17:11 GMT
493
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
494
+ Content-Length: 687
495
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
496
+ Content-Type: text/xml; charset="utf-8"
497
+
498
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:string[3]"><item xsi:type="xsd:string">SOAP4R
499
+ </item><item xsi:type="xsd:string"> Interoperability </item><item xsi:type="xsd:string"> Test </item></return></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
500
+
501
+
502
+ ##########
503
+ # echoStringArray (multi-ref)
504
+
505
+ Result: OK
506
+
507
+ Wire dump:
508
+
509
+ = Request
510
+
511
+ POST /servlet/wserver HTTP/1.1
512
+ SOAPAction: "http://soapinterop.org/"
513
+ Content-Type: text/xml; charset=utf-8
514
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
515
+ Date: Sat Jul 23 22:15:43 JST 2005
516
+ Content-Length: 843
517
+ Host: www.wingfoot.com
518
+
519
+ <?xml version="1.0" encoding="utf-8" ?>
520
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
521
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
522
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
523
+ <env:Body>
524
+ <n1:echoStringArray xmlns:n1="http://soapinterop.org/"
525
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
526
+ <inputStringArray n2:arrayType="xsd:string[3]"
527
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
528
+ xsi:type="n2:Array">
529
+ <item href="#id-605704230"></item>
530
+ <item>SOAP4R</item>
531
+ <item href="#id-605704230"></item>
532
+ </inputStringArray>
533
+ </n1:echoStringArray>
534
+ <item id="id-605704230"
535
+ xsi:type="xsd:string"
536
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">SOAP4R</item>
537
+ </env:Body>
538
+ </env:Envelope>
539
+
540
+ = Response
541
+
542
+ HTTP/1.1 200 OK
543
+ Date: Sat, 23 Jul 2005 13:17:11 GMT
544
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
545
+ Content-Length: 674
546
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
547
+ Content-Type: text/xml; charset="utf-8"
548
+
549
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:string[3]"><item xsi:type="xsd:string">SOAP4R</item><item xsi:type="xsd:string">SOAP4R</item><item xsi:type="xsd:string">SOAP4R</item></return></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
550
+
551
+
552
+ ##########
553
+ # echoStringArray (multi-ref: elem1 == elem3)
554
+
555
+ Result: Expected = "String#-605735790" // Actual = "String#-605736490"
556
+
557
+ Wire dump:
558
+
559
+ = Request
560
+
561
+ POST /servlet/wserver HTTP/1.1
562
+ SOAPAction: "http://soapinterop.org/"
563
+ Content-Type: text/xml; charset=utf-8
564
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
565
+ Date: Sat Jul 23 22:15:44 JST 2005
566
+ Content-Length: 843
567
+ Host: www.wingfoot.com
568
+
569
+ <?xml version="1.0" encoding="utf-8" ?>
570
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
571
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
572
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
573
+ <env:Body>
574
+ <n1:echoStringArray xmlns:n1="http://soapinterop.org/"
575
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
576
+ <inputStringArray n2:arrayType="xsd:string[3]"
577
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
578
+ xsi:type="n2:Array">
579
+ <item href="#id-605721270"></item>
580
+ <item>SOAP4R</item>
581
+ <item href="#id-605721270"></item>
582
+ </inputStringArray>
583
+ </n1:echoStringArray>
584
+ <item id="id-605721270"
585
+ xsi:type="xsd:string"
586
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">SOAP4R</item>
587
+ </env:Body>
588
+ </env:Envelope>
589
+
590
+ = Response
591
+
592
+ HTTP/1.1 200 OK
593
+ Date: Sat, 23 Jul 2005 13:17:12 GMT
594
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
595
+ Content-Length: 674
596
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
597
+ Content-Type: text/xml; charset="utf-8"
598
+
599
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStringArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:string[3]"><item xsi:type="xsd:string">SOAP4R</item><item xsi:type="xsd:string">SOAP4R</item><item xsi:type="xsd:string">SOAP4R</item></return></ns1:echoStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
600
+
601
+
602
+ ##########
603
+ # echoStringArray (empty, multi-ref: elem1 == elem3)
604
+
605
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
606
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
607
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
608
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
609
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
610
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStringArray'
611
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStringArray'
612
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:375:in `doTestBase'
613
+ clientWingfoot.rb:13
614
+
615
+ Wire dump:
616
+
617
+ = Request
618
+
619
+ POST /servlet/wserver HTTP/1.1
620
+ SOAPAction: "http://soapinterop.org/"
621
+ Content-Type: text/xml; charset=utf-8
622
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
623
+ Date: Sat Jul 23 22:15:44 JST 2005
624
+ Content-Length: 831
625
+ Host: www.wingfoot.com
626
+
627
+ <?xml version="1.0" encoding="utf-8" ?>
628
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
629
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
630
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
631
+ <env:Body>
632
+ <n1:echoStringArray xmlns:n1="http://soapinterop.org/"
633
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
634
+ <inputStringArray n2:arrayType="xsd:string[3]"
635
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
636
+ xsi:type="n2:Array">
637
+ <item href="#id-605738400"></item>
638
+ <item></item>
639
+ <item href="#id-605738400"></item>
640
+ </inputStringArray>
641
+ </n1:echoStringArray>
642
+ <item id="id-605738400"
643
+ xsi:type="xsd:string"
644
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
645
+ </env:Body>
646
+ </env:Envelope>
647
+
648
+ = Response
649
+
650
+ HTTP/1.1 500 Internal
651
+ Date: Sat, 23 Jul 2005 13:17:12 GMT
652
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
653
+ Content-Length: 4
654
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
655
+ Connection: close
656
+ Content-Type: text/xml; charset="utf-8"
657
+
658
+ null! CONNECTION CLOSED
659
+
660
+
661
+
662
+ ##########
663
+ # echoInteger (Int: 123)
664
+
665
+ Result: OK
666
+
667
+ Wire dump:
668
+
669
+ = Request
670
+
671
+ ! CONNECTION ESTABLISHED
672
+ POST /servlet/wserver HTTP/1.1
673
+ SOAPAction: "http://soapinterop.org/"
674
+ Content-Type: text/xml; charset=utf-8
675
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
676
+ Date: Sat Jul 23 22:15:45 JST 2005
677
+ Content-Length: 464
678
+ Host: www.wingfoot.com
679
+
680
+ <?xml version="1.0" encoding="utf-8" ?>
681
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
682
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
683
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
684
+ <env:Body>
685
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
686
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
687
+ <inputInteger xsi:type="xsd:int">123</inputInteger>
688
+ </n1:echoInteger>
689
+ </env:Body>
690
+ </env:Envelope>
691
+
692
+ = Response
693
+
694
+ HTTP/1.1 200 OK
695
+ Date: Sat, 23 Jul 2005 13:17:13 GMT
696
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
697
+ Content-Length: 459
698
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
699
+ Content-Type: text/xml; charset="utf-8"
700
+
701
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoIntegerResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:int">123</return></ns1:echoIntegerResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
702
+
703
+
704
+ ##########
705
+ # echoInteger (Int: 2147483647)
706
+
707
+ Result: OK
708
+
709
+ Wire dump:
710
+
711
+ = Request
712
+
713
+ POST /servlet/wserver HTTP/1.1
714
+ SOAPAction: "http://soapinterop.org/"
715
+ Content-Type: text/xml; charset=utf-8
716
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
717
+ Date: Sat Jul 23 22:15:45 JST 2005
718
+ Content-Length: 471
719
+ Host: www.wingfoot.com
720
+
721
+ <?xml version="1.0" encoding="utf-8" ?>
722
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
723
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
724
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
725
+ <env:Body>
726
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
727
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
728
+ <inputInteger xsi:type="xsd:int">2147483647</inputInteger>
729
+ </n1:echoInteger>
730
+ </env:Body>
731
+ </env:Envelope>
732
+
733
+ = Response
734
+
735
+ HTTP/1.1 200 OK
736
+ Date: Sat, 23 Jul 2005 13:17:13 GMT
737
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
738
+ Content-Length: 466
739
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
740
+ Content-Type: text/xml; charset="utf-8"
741
+
742
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoIntegerResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:int">2147483647</return></ns1:echoIntegerResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
743
+
744
+
745
+ ##########
746
+ # echoInteger (Int: -2147483648)
747
+
748
+ Result: OK
749
+
750
+ Wire dump:
751
+
752
+ = Request
753
+
754
+ POST /servlet/wserver HTTP/1.1
755
+ SOAPAction: "http://soapinterop.org/"
756
+ Content-Type: text/xml; charset=utf-8
757
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
758
+ Date: Sat Jul 23 22:15:46 JST 2005
759
+ Content-Length: 472
760
+ Host: www.wingfoot.com
761
+
762
+ <?xml version="1.0" encoding="utf-8" ?>
763
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
764
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
765
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
766
+ <env:Body>
767
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
768
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
769
+ <inputInteger xsi:type="xsd:int">-2147483648</inputInteger>
770
+ </n1:echoInteger>
771
+ </env:Body>
772
+ </env:Envelope>
773
+
774
+ = Response
775
+
776
+ HTTP/1.1 200 OK
777
+ Date: Sat, 23 Jul 2005 13:17:13 GMT
778
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
779
+ Content-Length: 467
780
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
781
+ Content-Type: text/xml; charset="utf-8"
782
+
783
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoIntegerResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:int">-2147483648</return></ns1:echoIntegerResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
784
+
785
+
786
+ ##########
787
+ # echoInteger (2147483648: junk)
788
+
789
+ Result: OK
790
+
791
+ Wire dump:
792
+
793
+ = Request
794
+
795
+ POST /servlet/wserver HTTP/1.1
796
+ SOAPAction: "http://soapinterop.org/"
797
+ Content-Type: text/xml; charset=utf-8
798
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
799
+ Date: Sat Jul 23 22:15:46 JST 2005
800
+ Content-Length: 471
801
+ Host: www.wingfoot.com
802
+
803
+ <?xml version="1.0" encoding="utf-8" ?>
804
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
805
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
806
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
807
+ <env:Body>
808
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
809
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
810
+ <inputInteger xsi:type="xsd:int">2147483648</inputInteger>
811
+ </n1:echoInteger>
812
+ </env:Body>
813
+ </env:Envelope>
814
+
815
+ = Response
816
+
817
+ HTTP/1.1 500 Internal
818
+ Date: Sat, 23 Jul 2005 13:17:14 GMT
819
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
820
+ Content-Length: 458
821
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
822
+ Connection: close
823
+ Content-Type: text/xml; charset="utf-8"
824
+
825
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>2147483648</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
826
+
827
+
828
+
829
+ ##########
830
+ # echoInteger (-2147483649: junk)
831
+
832
+ Result: OK
833
+
834
+ Wire dump:
835
+
836
+ = Request
837
+
838
+ ! CONNECTION ESTABLISHED
839
+ POST /servlet/wserver HTTP/1.1
840
+ SOAPAction: "http://soapinterop.org/"
841
+ Content-Type: text/xml; charset=utf-8
842
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
843
+ Date: Sat Jul 23 22:15:47 JST 2005
844
+ Content-Length: 472
845
+ Host: www.wingfoot.com
846
+
847
+ <?xml version="1.0" encoding="utf-8" ?>
848
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
849
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
850
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
851
+ <env:Body>
852
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
853
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
854
+ <inputInteger xsi:type="xsd:int">-2147483649</inputInteger>
855
+ </n1:echoInteger>
856
+ </env:Body>
857
+ </env:Envelope>
858
+
859
+ = Response
860
+
861
+ HTTP/1.1 500 Internal
862
+ Date: Sat, 23 Jul 2005 13:17:14 GMT
863
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
864
+ Content-Length: 459
865
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
866
+ Connection: close
867
+ Content-Type: text/xml; charset="utf-8"
868
+
869
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>-2147483649</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
870
+
871
+
872
+
873
+ ##########
874
+ # echoInteger (0.0: junk)
875
+
876
+ Result: OK
877
+
878
+ Wire dump:
879
+
880
+ = Request
881
+
882
+ ! CONNECTION ESTABLISHED
883
+ POST /servlet/wserver HTTP/1.1
884
+ SOAPAction: "http://soapinterop.org/"
885
+ Content-Type: text/xml; charset=utf-8
886
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
887
+ Date: Sat Jul 23 22:15:47 JST 2005
888
+ Content-Length: 464
889
+ Host: www.wingfoot.com
890
+
891
+ <?xml version="1.0" encoding="utf-8" ?>
892
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
893
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
894
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
895
+ <env:Body>
896
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
897
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
898
+ <inputInteger xsi:type="xsd:int">0.0</inputInteger>
899
+ </n1:echoInteger>
900
+ </env:Body>
901
+ </env:Envelope>
902
+
903
+ = Response
904
+
905
+ HTTP/1.1 500 Internal
906
+ Date: Sat, 23 Jul 2005 13:17:15 GMT
907
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
908
+ Content-Length: 451
909
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
910
+ Connection: close
911
+ Content-Type: text/xml; charset="utf-8"
912
+
913
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>0.0</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
914
+
915
+
916
+
917
+ ##########
918
+ # echoInteger (-5.2: junk)
919
+
920
+ Result: OK
921
+
922
+ Wire dump:
923
+
924
+ = Request
925
+
926
+ ! CONNECTION ESTABLISHED
927
+ POST /servlet/wserver HTTP/1.1
928
+ SOAPAction: "http://soapinterop.org/"
929
+ Content-Type: text/xml; charset=utf-8
930
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
931
+ Date: Sat Jul 23 22:15:48 JST 2005
932
+ Content-Length: 465
933
+ Host: www.wingfoot.com
934
+
935
+ <?xml version="1.0" encoding="utf-8" ?>
936
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
937
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
938
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
939
+ <env:Body>
940
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
941
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
942
+ <inputInteger xsi:type="xsd:int">-5.2</inputInteger>
943
+ </n1:echoInteger>
944
+ </env:Body>
945
+ </env:Envelope>
946
+
947
+ = Response
948
+
949
+ HTTP/1.1 500 Internal
950
+ Date: Sat, 23 Jul 2005 13:17:15 GMT
951
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
952
+ Content-Length: 452
953
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
954
+ Connection: close
955
+ Content-Type: text/xml; charset="utf-8"
956
+
957
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>-5.2</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
958
+
959
+
960
+
961
+ ##########
962
+ # echoInteger (0.000000000a: junk)
963
+
964
+ Result: OK
965
+
966
+ Wire dump:
967
+
968
+ = Request
969
+
970
+ ! CONNECTION ESTABLISHED
971
+ POST /servlet/wserver HTTP/1.1
972
+ SOAPAction: "http://soapinterop.org/"
973
+ Content-Type: text/xml; charset=utf-8
974
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
975
+ Date: Sat Jul 23 22:15:48 JST 2005
976
+ Content-Length: 473
977
+ Host: www.wingfoot.com
978
+
979
+ <?xml version="1.0" encoding="utf-8" ?>
980
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
981
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
982
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
983
+ <env:Body>
984
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
985
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
986
+ <inputInteger xsi:type="xsd:int">0.000000000a</inputInteger>
987
+ </n1:echoInteger>
988
+ </env:Body>
989
+ </env:Envelope>
990
+
991
+ = Response
992
+
993
+ HTTP/1.1 500 Internal
994
+ Date: Sat, 23 Jul 2005 13:17:16 GMT
995
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
996
+ Content-Length: 460
997
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
998
+ Connection: close
999
+ Content-Type: text/xml; charset="utf-8"
1000
+
1001
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>0.000000000a</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
1002
+
1003
+
1004
+
1005
+ ##########
1006
+ # echoInteger (+-5: junk)
1007
+
1008
+ Result: OK
1009
+
1010
+ Wire dump:
1011
+
1012
+ = Request
1013
+
1014
+ ! CONNECTION ESTABLISHED
1015
+ POST /servlet/wserver HTTP/1.1
1016
+ SOAPAction: "http://soapinterop.org/"
1017
+ Content-Type: text/xml; charset=utf-8
1018
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1019
+ Date: Sat Jul 23 22:15:49 JST 2005
1020
+ Content-Length: 464
1021
+ Host: www.wingfoot.com
1022
+
1023
+ <?xml version="1.0" encoding="utf-8" ?>
1024
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1025
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1026
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1027
+ <env:Body>
1028
+ <n1:echoInteger xmlns:n1="http://soapinterop.org/"
1029
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1030
+ <inputInteger xsi:type="xsd:int">+-5</inputInteger>
1031
+ </n1:echoInteger>
1032
+ </env:Body>
1033
+ </env:Envelope>
1034
+
1035
+ = Response
1036
+
1037
+ HTTP/1.1 500 Internal
1038
+ Date: Sat, 23 Jul 2005 13:17:17 GMT
1039
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1040
+ Content-Length: 451
1041
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1042
+ Connection: close
1043
+ Content-Type: text/xml; charset="utf-8"
1044
+
1045
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>+-5</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
1046
+
1047
+
1048
+
1049
+ ##########
1050
+ # echoIntegerArray
1051
+
1052
+ Result: OK
1053
+
1054
+ Wire dump:
1055
+
1056
+ = Request
1057
+
1058
+ ! CONNECTION ESTABLISHED
1059
+ POST /servlet/wserver HTTP/1.1
1060
+ SOAPAction: "http://soapinterop.org/"
1061
+ Content-Type: text/xml; charset=utf-8
1062
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1063
+ Date: Sat Jul 23 22:15:49 JST 2005
1064
+ Content-Length: 657
1065
+ Host: www.wingfoot.com
1066
+
1067
+ <?xml version="1.0" encoding="utf-8" ?>
1068
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1069
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1070
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1071
+ <env:Body>
1072
+ <n1:echoIntegerArray xmlns:n1="http://soapinterop.org/"
1073
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1074
+ <inputIntegerArray n2:arrayType="xsd:int[3]"
1075
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
1076
+ xsi:type="n2:Array">
1077
+ <item>1</item>
1078
+ <item>2</item>
1079
+ <item>3</item>
1080
+ </inputIntegerArray>
1081
+ </n1:echoIntegerArray>
1082
+ </env:Body>
1083
+ </env:Envelope>
1084
+
1085
+ = Response
1086
+
1087
+ HTTP/1.1 200 OK
1088
+ Date: Sat, 23 Jul 2005 13:17:17 GMT
1089
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1090
+ Content-Length: 649
1091
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1092
+ Content-Type: text/xml; charset="utf-8"
1093
+
1094
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoIntegerArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:int[3]"><item xsi:type="xsd:int">1</item><item xsi:type="xsd:int">2</item><item xsi:type="xsd:int">3</item></return></ns1:echoIntegerArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1095
+
1096
+
1097
+ ##########
1098
+ # echoIntegerArray (empty)
1099
+
1100
+ Result: Expected = [] // Actual = nil
1101
+
1102
+ Wire dump:
1103
+
1104
+ = Request
1105
+
1106
+ POST /servlet/wserver HTTP/1.1
1107
+ SOAPAction: "http://soapinterop.org/"
1108
+ Content-Type: text/xml; charset=utf-8
1109
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1110
+ Date: Sat Jul 23 22:15:50 JST 2005
1111
+ Content-Length: 588
1112
+ Host: www.wingfoot.com
1113
+
1114
+ <?xml version="1.0" encoding="utf-8" ?>
1115
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1116
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1117
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1118
+ <env:Body>
1119
+ <n1:echoIntegerArray xmlns:n1="http://soapinterop.org/"
1120
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1121
+ <inputIntegerArray n2:arrayType="xsd:int[0]"
1122
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
1123
+ xsi:type="n2:Array">
1124
+ </inputIntegerArray>
1125
+ </n1:echoIntegerArray>
1126
+ </env:Body>
1127
+ </env:Envelope>
1128
+
1129
+ = Response
1130
+
1131
+ HTTP/1.1 200 OK
1132
+ Date: Sat, 23 Jul 2005 13:17:18 GMT
1133
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1134
+ Content-Length: 569
1135
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1136
+ Content-Type: text/xml; charset="utf-8"
1137
+
1138
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoIntegerArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:anyType[0]" xsi:nil="true"></return></ns1:echoIntegerArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1139
+
1140
+
1141
+ ##########
1142
+ # echoFloat
1143
+
1144
+ Result: OK
1145
+
1146
+ Wire dump:
1147
+
1148
+ = Request
1149
+
1150
+ POST /servlet/wserver HTTP/1.1
1151
+ SOAPAction: "http://soapinterop.org/"
1152
+ Content-Type: text/xml; charset=utf-8
1153
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1154
+ Date: Sat Jul 23 22:15:50 JST 2005
1155
+ Content-Length: 467
1156
+ Host: www.wingfoot.com
1157
+
1158
+ <?xml version="1.0" encoding="utf-8" ?>
1159
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1160
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1161
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1162
+ <env:Body>
1163
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1164
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1165
+ <inputFloat xsi:type="xsd:float">+3.141592654</inputFloat>
1166
+ </n1:echoFloat>
1167
+ </env:Body>
1168
+ </env:Envelope>
1169
+
1170
+ = Response
1171
+
1172
+ HTTP/1.1 200 OK
1173
+ Date: Sat, 23 Jul 2005 13:17:18 GMT
1174
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1175
+ Content-Length: 463
1176
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1177
+ Content-Type: text/xml; charset="utf-8"
1178
+
1179
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">3.1415927</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1180
+
1181
+
1182
+ ##########
1183
+ # echoFloat (scientific notation)
1184
+
1185
+ Result: OK
1186
+
1187
+ Wire dump:
1188
+
1189
+ = Request
1190
+
1191
+ POST /servlet/wserver HTTP/1.1
1192
+ SOAPAction: "http://soapinterop.org/"
1193
+ Content-Type: text/xml; charset=utf-8
1194
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1195
+ Date: Sat Jul 23 22:15:51 JST 2005
1196
+ Content-Length: 465
1197
+ Host: www.wingfoot.com
1198
+
1199
+ <?xml version="1.0" encoding="utf-8" ?>
1200
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1201
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1202
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1203
+ <env:Body>
1204
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1205
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1206
+ <inputFloat xsi:type="xsd:float">+1.234e+37</inputFloat>
1207
+ </n1:echoFloat>
1208
+ </env:Body>
1209
+ </env:Envelope>
1210
+
1211
+ = Response
1212
+
1213
+ HTTP/1.1 200 OK
1214
+ Date: Sat, 23 Jul 2005 13:17:18 GMT
1215
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1216
+ Content-Length: 462
1217
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1218
+ Content-Type: text/xml; charset="utf-8"
1219
+
1220
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">1.234E37</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1221
+
1222
+
1223
+ ##########
1224
+ # echoFloat (scientific notation 2)
1225
+
1226
+ Result: OK
1227
+
1228
+ Wire dump:
1229
+
1230
+ = Request
1231
+
1232
+ POST /servlet/wserver HTTP/1.1
1233
+ SOAPAction: "http://soapinterop.org/"
1234
+ Content-Type: text/xml; charset=utf-8
1235
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1236
+ Date: Sat Jul 23 22:15:51 JST 2005
1237
+ Content-Length: 465
1238
+ Host: www.wingfoot.com
1239
+
1240
+ <?xml version="1.0" encoding="utf-8" ?>
1241
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1242
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1243
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1244
+ <env:Body>
1245
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1246
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1247
+ <inputFloat xsi:type="xsd:float">+1.234e+37</inputFloat>
1248
+ </n1:echoFloat>
1249
+ </env:Body>
1250
+ </env:Envelope>
1251
+
1252
+ = Response
1253
+
1254
+ HTTP/1.1 200 OK
1255
+ Date: Sat, 23 Jul 2005 13:17:19 GMT
1256
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1257
+ Content-Length: 462
1258
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1259
+ Content-Type: text/xml; charset="utf-8"
1260
+
1261
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">1.234E37</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1262
+
1263
+
1264
+ ##########
1265
+ # echoFloat (scientific notation 3)
1266
+
1267
+ Result: OK
1268
+
1269
+ Wire dump:
1270
+
1271
+ = Request
1272
+
1273
+ POST /servlet/wserver HTTP/1.1
1274
+ SOAPAction: "http://soapinterop.org/"
1275
+ Content-Type: text/xml; charset=utf-8
1276
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1277
+ Date: Sat Jul 23 22:15:51 JST 2005
1278
+ Content-Length: 465
1279
+ Host: www.wingfoot.com
1280
+
1281
+ <?xml version="1.0" encoding="utf-8" ?>
1282
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1283
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1284
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1285
+ <env:Body>
1286
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1287
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1288
+ <inputFloat xsi:type="xsd:float">+1.234e+37</inputFloat>
1289
+ </n1:echoFloat>
1290
+ </env:Body>
1291
+ </env:Envelope>
1292
+
1293
+ = Response
1294
+
1295
+ HTTP/1.1 200 OK
1296
+ Date: Sat, 23 Jul 2005 13:17:19 GMT
1297
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1298
+ Content-Length: 462
1299
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1300
+ Content-Type: text/xml; charset="utf-8"
1301
+
1302
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">1.234E37</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1303
+
1304
+
1305
+ ##########
1306
+ # echoFloat (scientific notation 4)
1307
+
1308
+ Result: OK
1309
+
1310
+ Wire dump:
1311
+
1312
+ = Request
1313
+
1314
+ POST /servlet/wserver HTTP/1.1
1315
+ SOAPAction: "http://soapinterop.org/"
1316
+ Content-Type: text/xml; charset=utf-8
1317
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1318
+ Date: Sat Jul 23 22:15:52 JST 2005
1319
+ Content-Length: 459
1320
+ Host: www.wingfoot.com
1321
+
1322
+ <?xml version="1.0" encoding="utf-8" ?>
1323
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1324
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1325
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1326
+ <env:Body>
1327
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1328
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1329
+ <inputFloat xsi:type="xsd:float">-1.4</inputFloat>
1330
+ </n1:echoFloat>
1331
+ </env:Body>
1332
+ </env:Envelope>
1333
+
1334
+ = Response
1335
+
1336
+ HTTP/1.1 200 OK
1337
+ Date: Sat, 23 Jul 2005 13:17:19 GMT
1338
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1339
+ Content-Length: 458
1340
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1341
+ Content-Type: text/xml; charset="utf-8"
1342
+
1343
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">-1.4</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1344
+
1345
+
1346
+ ##########
1347
+ # echoFloat (positive lower boundary)
1348
+
1349
+ Result: OK
1350
+
1351
+ Wire dump:
1352
+
1353
+ = Request
1354
+
1355
+ POST /servlet/wserver HTTP/1.1
1356
+ SOAPAction: "http://soapinterop.org/"
1357
+ Content-Type: text/xml; charset=utf-8
1358
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1359
+ Date: Sat Jul 23 22:15:52 JST 2005
1360
+ Content-Length: 457
1361
+ Host: www.wingfoot.com
1362
+
1363
+ <?xml version="1.0" encoding="utf-8" ?>
1364
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1365
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1366
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1367
+ <env:Body>
1368
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1369
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1370
+ <inputFloat xsi:type="xsd:float">+0</inputFloat>
1371
+ </n1:echoFloat>
1372
+ </env:Body>
1373
+ </env:Envelope>
1374
+
1375
+ = Response
1376
+
1377
+ HTTP/1.1 200 OK
1378
+ Date: Sat, 23 Jul 2005 13:17:20 GMT
1379
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1380
+ Content-Length: 457
1381
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1382
+ Content-Type: text/xml; charset="utf-8"
1383
+
1384
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">0.0</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1385
+
1386
+
1387
+ ##########
1388
+ # echoFloat (negative lower boundary)
1389
+
1390
+ Result: OK
1391
+
1392
+ Wire dump:
1393
+
1394
+ = Request
1395
+
1396
+ POST /servlet/wserver HTTP/1.1
1397
+ SOAPAction: "http://soapinterop.org/"
1398
+ Content-Type: text/xml; charset=utf-8
1399
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1400
+ Date: Sat Jul 23 22:15:52 JST 2005
1401
+ Content-Length: 457
1402
+ Host: www.wingfoot.com
1403
+
1404
+ <?xml version="1.0" encoding="utf-8" ?>
1405
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1406
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1407
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1408
+ <env:Body>
1409
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1410
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1411
+ <inputFloat xsi:type="xsd:float">-0</inputFloat>
1412
+ </n1:echoFloat>
1413
+ </env:Body>
1414
+ </env:Envelope>
1415
+
1416
+ = Response
1417
+
1418
+ HTTP/1.1 200 OK
1419
+ Date: Sat, 23 Jul 2005 13:17:20 GMT
1420
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1421
+ Content-Length: 458
1422
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1423
+ Content-Type: text/xml; charset="utf-8"
1424
+
1425
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">-0.0</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1426
+
1427
+
1428
+ ##########
1429
+ # echoFloat (special values: +0)
1430
+
1431
+ Result: OK
1432
+
1433
+ Wire dump:
1434
+
1435
+ = Request
1436
+
1437
+ POST /servlet/wserver HTTP/1.1
1438
+ SOAPAction: "http://soapinterop.org/"
1439
+ Content-Type: text/xml; charset=utf-8
1440
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1441
+ Date: Sat Jul 23 22:15:53 JST 2005
1442
+ Content-Length: 457
1443
+ Host: www.wingfoot.com
1444
+
1445
+ <?xml version="1.0" encoding="utf-8" ?>
1446
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1447
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1448
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1449
+ <env:Body>
1450
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1451
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1452
+ <inputFloat xsi:type="xsd:float">+0</inputFloat>
1453
+ </n1:echoFloat>
1454
+ </env:Body>
1455
+ </env:Envelope>
1456
+
1457
+ = Response
1458
+
1459
+ HTTP/1.1 200 OK
1460
+ Date: Sat, 23 Jul 2005 13:17:21 GMT
1461
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1462
+ Content-Length: 457
1463
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1464
+ Content-Type: text/xml; charset="utf-8"
1465
+
1466
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">0.0</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1467
+
1468
+
1469
+ ##########
1470
+ # echoFloat (special values: -0)
1471
+
1472
+ Result: OK
1473
+
1474
+ Wire dump:
1475
+
1476
+ = Request
1477
+
1478
+ POST /servlet/wserver HTTP/1.1
1479
+ SOAPAction: "http://soapinterop.org/"
1480
+ Content-Type: text/xml; charset=utf-8
1481
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1482
+ Date: Sat Jul 23 22:15:53 JST 2005
1483
+ Content-Length: 457
1484
+ Host: www.wingfoot.com
1485
+
1486
+ <?xml version="1.0" encoding="utf-8" ?>
1487
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1488
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1489
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1490
+ <env:Body>
1491
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1492
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1493
+ <inputFloat xsi:type="xsd:float">-0</inputFloat>
1494
+ </n1:echoFloat>
1495
+ </env:Body>
1496
+ </env:Envelope>
1497
+
1498
+ = Response
1499
+
1500
+ HTTP/1.1 200 OK
1501
+ Date: Sat, 23 Jul 2005 13:17:21 GMT
1502
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1503
+ Content-Length: 458
1504
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1505
+ Content-Type: text/xml; charset="utf-8"
1506
+
1507
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">-0.0</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1508
+
1509
+
1510
+ ##########
1511
+ # echoFloat (special values: NaN)
1512
+
1513
+ Result: OK
1514
+
1515
+ Wire dump:
1516
+
1517
+ = Request
1518
+
1519
+ POST /servlet/wserver HTTP/1.1
1520
+ SOAPAction: "http://soapinterop.org/"
1521
+ Content-Type: text/xml; charset=utf-8
1522
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1523
+ Date: Sat Jul 23 22:15:54 JST 2005
1524
+ Content-Length: 458
1525
+ Host: www.wingfoot.com
1526
+
1527
+ <?xml version="1.0" encoding="utf-8" ?>
1528
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1529
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1530
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1531
+ <env:Body>
1532
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1533
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1534
+ <inputFloat xsi:type="xsd:float">NaN</inputFloat>
1535
+ </n1:echoFloat>
1536
+ </env:Body>
1537
+ </env:Envelope>
1538
+
1539
+ = Response
1540
+
1541
+ HTTP/1.1 200 OK
1542
+ Date: Sat, 23 Jul 2005 13:17:21 GMT
1543
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1544
+ Content-Length: 457
1545
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1546
+ Content-Type: text/xml; charset="utf-8"
1547
+
1548
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">NaN</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1549
+
1550
+
1551
+ ##########
1552
+ # echoFloat (special values: INF)
1553
+
1554
+ Result: Exception: {http://www.w3.org/2001/XMLSchema}float: cannot accept 'Infinity'. (XSD::ValueSpaceError)
1555
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:326:in `screen_data'
1556
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:140:in `set'
1557
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:466:in `decode_textbuf'
1558
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:196:in `decode_tag_end'
1559
+ /usr/local/lib/ruby/1.9/soap/parser.rb:193:in `decode_tag_end'
1560
+ /usr/local/lib/ruby/1.9/soap/parser.rb:154:in `end_element'
1561
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/parser.rb:75:in `end_element'
1562
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:88:in `on_etag'
1563
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:396:in `on_etag'
1564
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:683:in `scan_etag'
1565
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:814:in `scan_content'
1566
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
1567
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
1568
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
1569
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
1570
+ /usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
1571
+ /usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
1572
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
1573
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
1574
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1575
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1576
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoFloat'
1577
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoFloat'
1578
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:654:in `doTestBase'
1579
+ clientWingfoot.rb:13
1580
+
1581
+ Wire dump:
1582
+
1583
+ = Request
1584
+
1585
+ POST /servlet/wserver HTTP/1.1
1586
+ SOAPAction: "http://soapinterop.org/"
1587
+ Content-Type: text/xml; charset=utf-8
1588
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1589
+ Date: Sat Jul 23 22:15:54 JST 2005
1590
+ Content-Length: 458
1591
+ Host: www.wingfoot.com
1592
+
1593
+ <?xml version="1.0" encoding="utf-8" ?>
1594
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1595
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1596
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1597
+ <env:Body>
1598
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1599
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1600
+ <inputFloat xsi:type="xsd:float">INF</inputFloat>
1601
+ </n1:echoFloat>
1602
+ </env:Body>
1603
+ </env:Envelope>
1604
+
1605
+ = Response
1606
+
1607
+ HTTP/1.1 200 OK
1608
+ Date: Sat, 23 Jul 2005 13:17:22 GMT
1609
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1610
+ Content-Length: 462
1611
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1612
+ Content-Type: text/xml; charset="utf-8"
1613
+
1614
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">Infinity</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1615
+
1616
+
1617
+ ##########
1618
+ # echoFloat (special values: -INF)
1619
+
1620
+ Result: Exception: {http://www.w3.org/2001/XMLSchema}float: cannot accept '-Infinity'. (XSD::ValueSpaceError)
1621
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:326:in `screen_data'
1622
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:140:in `set'
1623
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:466:in `decode_textbuf'
1624
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:196:in `decode_tag_end'
1625
+ /usr/local/lib/ruby/1.9/soap/parser.rb:193:in `decode_tag_end'
1626
+ /usr/local/lib/ruby/1.9/soap/parser.rb:154:in `end_element'
1627
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/parser.rb:75:in `end_element'
1628
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:88:in `on_etag'
1629
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:396:in `on_etag'
1630
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:683:in `scan_etag'
1631
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:814:in `scan_content'
1632
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
1633
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
1634
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
1635
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
1636
+ /usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
1637
+ /usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
1638
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
1639
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
1640
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1641
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1642
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoFloat'
1643
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoFloat'
1644
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:664:in `doTestBase'
1645
+ clientWingfoot.rb:13
1646
+
1647
+ Wire dump:
1648
+
1649
+ = Request
1650
+
1651
+ POST /servlet/wserver HTTP/1.1
1652
+ SOAPAction: "http://soapinterop.org/"
1653
+ Content-Type: text/xml; charset=utf-8
1654
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1655
+ Date: Sat Jul 23 22:15:54 JST 2005
1656
+ Content-Length: 459
1657
+ Host: www.wingfoot.com
1658
+
1659
+ <?xml version="1.0" encoding="utf-8" ?>
1660
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1661
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1662
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1663
+ <env:Body>
1664
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1665
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1666
+ <inputFloat xsi:type="xsd:float">-INF</inputFloat>
1667
+ </n1:echoFloat>
1668
+ </env:Body>
1669
+ </env:Envelope>
1670
+
1671
+ = Response
1672
+
1673
+ HTTP/1.1 200 OK
1674
+ Date: Sat, 23 Jul 2005 13:17:22 GMT
1675
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1676
+ Content-Length: 463
1677
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1678
+ Content-Type: text/xml; charset="utf-8"
1679
+
1680
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:float">-Infinity</return></ns1:echoFloatResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1681
+
1682
+
1683
+ ##########
1684
+ # echoFloat (0.000a: junk)
1685
+
1686
+ Result: OK
1687
+
1688
+ Wire dump:
1689
+
1690
+ = Request
1691
+
1692
+ POST /servlet/wserver HTTP/1.1
1693
+ SOAPAction: "http://soapinterop.org/"
1694
+ Content-Type: text/xml; charset=utf-8
1695
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1696
+ Date: Sat Jul 23 22:15:55 JST 2005
1697
+ Content-Length: 474
1698
+ Host: www.wingfoot.com
1699
+
1700
+ <?xml version="1.0" encoding="utf-8" ?>
1701
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1702
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1703
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1704
+ <env:Body>
1705
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1706
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1707
+ <inputFloat xsi:type="xsd:float">0.0000000000000000a</inputFloat>
1708
+ </n1:echoFloat>
1709
+ </env:Body>
1710
+ </env:Envelope>
1711
+
1712
+ = Response
1713
+
1714
+ HTTP/1.1 500 Internal
1715
+ Date: Sat, 23 Jul 2005 13:17:22 GMT
1716
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1717
+ Content-Length: 467
1718
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1719
+ Connection: close
1720
+ Content-Type: text/xml; charset="utf-8"
1721
+
1722
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>0.0000000000000000a</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
1723
+
1724
+
1725
+
1726
+ ##########
1727
+ # echoFloat (00a.0001: junk)
1728
+
1729
+ Result: OK
1730
+
1731
+ Wire dump:
1732
+
1733
+ = Request
1734
+
1735
+ ! CONNECTION ESTABLISHED
1736
+ POST /servlet/wserver HTTP/1.1
1737
+ SOAPAction: "http://soapinterop.org/"
1738
+ Content-Type: text/xml; charset=utf-8
1739
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1740
+ Date: Sat Jul 23 22:15:55 JST 2005
1741
+ Content-Length: 474
1742
+ Host: www.wingfoot.com
1743
+
1744
+ <?xml version="1.0" encoding="utf-8" ?>
1745
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1746
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1747
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1748
+ <env:Body>
1749
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1750
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1751
+ <inputFloat xsi:type="xsd:float">00a.000000000000001</inputFloat>
1752
+ </n1:echoFloat>
1753
+ </env:Body>
1754
+ </env:Envelope>
1755
+
1756
+ = Response
1757
+
1758
+ HTTP/1.1 500 Internal
1759
+ Date: Sat, 23 Jul 2005 13:17:23 GMT
1760
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1761
+ Content-Length: 467
1762
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1763
+ Connection: close
1764
+ Content-Type: text/xml; charset="utf-8"
1765
+
1766
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>00a.000000000000001</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
1767
+
1768
+
1769
+
1770
+ ##########
1771
+ # echoFloat (+-5: junk)
1772
+
1773
+ Result: OK
1774
+
1775
+ Wire dump:
1776
+
1777
+ = Request
1778
+
1779
+ ! CONNECTION ESTABLISHED
1780
+ POST /servlet/wserver HTTP/1.1
1781
+ SOAPAction: "http://soapinterop.org/"
1782
+ Content-Type: text/xml; charset=utf-8
1783
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1784
+ Date: Sat Jul 23 22:15:56 JST 2005
1785
+ Content-Length: 458
1786
+ Host: www.wingfoot.com
1787
+
1788
+ <?xml version="1.0" encoding="utf-8" ?>
1789
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1790
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1791
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1792
+ <env:Body>
1793
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1794
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1795
+ <inputFloat xsi:type="xsd:float">+-5</inputFloat>
1796
+ </n1:echoFloat>
1797
+ </env:Body>
1798
+ </env:Envelope>
1799
+
1800
+ = Response
1801
+
1802
+ HTTP/1.1 500 Internal
1803
+ Date: Sat, 23 Jul 2005 13:17:24 GMT
1804
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1805
+ Content-Length: 451
1806
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1807
+ Connection: close
1808
+ Content-Type: text/xml; charset="utf-8"
1809
+
1810
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>+-5</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
1811
+
1812
+
1813
+
1814
+ ##########
1815
+ # echoFloat (5_0: junk)
1816
+
1817
+ Result: OK
1818
+
1819
+ Wire dump:
1820
+
1821
+ = Request
1822
+
1823
+ ! CONNECTION ESTABLISHED
1824
+ POST /servlet/wserver HTTP/1.1
1825
+ SOAPAction: "http://soapinterop.org/"
1826
+ Content-Type: text/xml; charset=utf-8
1827
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1828
+ Date: Sat Jul 23 22:15:56 JST 2005
1829
+ Content-Length: 458
1830
+ Host: www.wingfoot.com
1831
+
1832
+ <?xml version="1.0" encoding="utf-8" ?>
1833
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1834
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1835
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1836
+ <env:Body>
1837
+ <n1:echoFloat xmlns:n1="http://soapinterop.org/"
1838
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1839
+ <inputFloat xsi:type="xsd:float">5_0</inputFloat>
1840
+ </n1:echoFloat>
1841
+ </env:Body>
1842
+ </env:Envelope>
1843
+
1844
+ = Response
1845
+
1846
+ HTTP/1.1 500 Internal
1847
+ Date: Sat, 23 Jul 2005 13:17:24 GMT
1848
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1849
+ Content-Length: 451
1850
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1851
+ Connection: close
1852
+ Content-Type: text/xml; charset="utf-8"
1853
+
1854
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>5_0</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
1855
+
1856
+
1857
+
1858
+ ##########
1859
+ # echoFloatArray
1860
+
1861
+ Result: OK
1862
+
1863
+ Wire dump:
1864
+
1865
+ = Request
1866
+
1867
+ ! CONNECTION ESTABLISHED
1868
+ POST /servlet/wserver HTTP/1.1
1869
+ SOAPAction: "http://soapinterop.org/"
1870
+ Content-Type: text/xml; charset=utf-8
1871
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1872
+ Date: Sat Jul 23 22:15:57 JST 2005
1873
+ Content-Length: 662
1874
+ Host: www.wingfoot.com
1875
+
1876
+ <?xml version="1.0" encoding="utf-8" ?>
1877
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1878
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1879
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1880
+ <env:Body>
1881
+ <n1:echoFloatArray xmlns:n1="http://soapinterop.org/"
1882
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1883
+ <inputFloatArray n2:arrayType="xsd:float[3]"
1884
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
1885
+ xsi:type="n2:Array">
1886
+ <item>+0.0001</item>
1887
+ <item>+1000</item>
1888
+ <item>+0</item>
1889
+ </inputFloatArray>
1890
+ </n1:echoFloatArray>
1891
+ </env:Body>
1892
+ </env:Envelope>
1893
+
1894
+ = Response
1895
+
1896
+ HTTP/1.1 200 OK
1897
+ Date: Sat, 23 Jul 2005 13:17:25 GMT
1898
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1899
+ Content-Length: 665
1900
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1901
+ Content-Type: text/xml; charset="utf-8"
1902
+
1903
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:float[3]"><item xsi:type="xsd:float">1.0E-4</item><item xsi:type="xsd:float">1000.0</item><item xsi:type="xsd:float">0.0</item></return></ns1:echoFloatArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1904
+
1905
+
1906
+ ##########
1907
+ # echoFloatArray (special values: NaN, INF, -INF)
1908
+
1909
+ Result: Exception: {http://www.w3.org/2001/XMLSchema}float: cannot accept 'Infinity'. (XSD::ValueSpaceError)
1910
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:326:in `screen_data'
1911
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:140:in `set'
1912
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:466:in `decode_textbuf'
1913
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:196:in `decode_tag_end'
1914
+ /usr/local/lib/ruby/1.9/soap/parser.rb:193:in `decode_tag_end'
1915
+ /usr/local/lib/ruby/1.9/soap/parser.rb:154:in `end_element'
1916
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/parser.rb:75:in `end_element'
1917
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:88:in `on_etag'
1918
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:396:in `on_etag'
1919
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:683:in `scan_etag'
1920
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:814:in `scan_content'
1921
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
1922
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
1923
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
1924
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
1925
+ /usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
1926
+ /usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
1927
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
1928
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
1929
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1930
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1931
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoFloatArray'
1932
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoFloatArray'
1933
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:743:in `doTestBase'
1934
+ clientWingfoot.rb:13
1935
+
1936
+ Wire dump:
1937
+
1938
+ = Request
1939
+
1940
+ POST /servlet/wserver HTTP/1.1
1941
+ SOAPAction: "http://soapinterop.org/"
1942
+ Content-Type: text/xml; charset=utf-8
1943
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1944
+ Date: Sat Jul 23 22:15:57 JST 2005
1945
+ Content-Length: 658
1946
+ Host: www.wingfoot.com
1947
+
1948
+ <?xml version="1.0" encoding="utf-8" ?>
1949
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1950
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1951
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1952
+ <env:Body>
1953
+ <n1:echoFloatArray xmlns:n1="http://soapinterop.org/"
1954
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1955
+ <inputFloatArray n2:arrayType="xsd:float[3]"
1956
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
1957
+ xsi:type="n2:Array">
1958
+ <item>NaN</item>
1959
+ <item>INF</item>
1960
+ <item>-INF</item>
1961
+ </inputFloatArray>
1962
+ </n1:echoFloatArray>
1963
+ </env:Body>
1964
+ </env:Envelope>
1965
+
1966
+ = Response
1967
+
1968
+ HTTP/1.1 200 OK
1969
+ Date: Sat, 23 Jul 2005 13:17:25 GMT
1970
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
1971
+ Content-Length: 670
1972
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
1973
+ Content-Type: text/xml; charset="utf-8"
1974
+
1975
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoFloatArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" ns2:arrayType="xsd:float[3]"><item xsi:type="xsd:float">NaN</item><item xsi:type="xsd:float">Infinity</item><item xsi:type="xsd:float">-Infinity</item></return></ns1:echoFloatArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
1976
+
1977
+
1978
+ ##########
1979
+ # echoStruct
1980
+
1981
+ Result: OK
1982
+
1983
+ Wire dump:
1984
+
1985
+ = Request
1986
+
1987
+ POST /servlet/wserver HTTP/1.1
1988
+ SOAPAction: "http://soapinterop.org/"
1989
+ Content-Type: text/xml; charset=utf-8
1990
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1991
+ Date: Sat Jul 23 22:15:58 JST 2005
1992
+ Content-Length: 674
1993
+ Host: www.wingfoot.com
1994
+
1995
+ <?xml version="1.0" encoding="utf-8" ?>
1996
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1997
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1998
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1999
+ <env:Body>
2000
+ <n1:echoStruct xmlns:n1="http://soapinterop.org/"
2001
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2002
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
2003
+ xsi:type="n2:SOAPStruct">
2004
+ <varString xsi:type="xsd:string">a</varString>
2005
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2006
+ <varInt xsi:type="xsd:int">1</varInt>
2007
+ </inputStruct>
2008
+ </n1:echoStruct>
2009
+ </env:Body>
2010
+ </env:Envelope>
2011
+
2012
+ = Response
2013
+
2014
+ HTTP/1.1 200 OK
2015
+ Date: Sat, 23 Jul 2005 13:17:25 GMT
2016
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2017
+ Content-Length: 629
2018
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2019
+ Content-Type: text/xml; charset="utf-8"
2020
+
2021
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://soapinterop.org/xsd" xsi:type="ns2:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></return></ns1:echoStructResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2022
+
2023
+
2024
+ ##########
2025
+ # echoStruct (nil members)
2026
+
2027
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
2028
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
2029
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
2030
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
2031
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
2032
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStruct'
2033
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStruct'
2034
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:775:in `doTestBase'
2035
+ clientWingfoot.rb:13
2036
+
2037
+ Wire dump:
2038
+
2039
+ = Request
2040
+
2041
+ POST /servlet/wserver HTTP/1.1
2042
+ SOAPAction: "http://soapinterop.org/"
2043
+ Content-Type: text/xml; charset=utf-8
2044
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2045
+ Date: Sat Jul 23 22:15:58 JST 2005
2046
+ Content-Length: 651
2047
+ Host: www.wingfoot.com
2048
+
2049
+ <?xml version="1.0" encoding="utf-8" ?>
2050
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2051
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2052
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2053
+ <env:Body>
2054
+ <n1:echoStruct xmlns:n1="http://soapinterop.org/"
2055
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2056
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
2057
+ xsi:type="n2:SOAPStruct">
2058
+ <varString xsi:nil="true"></varString>
2059
+ <varFloat xsi:nil="true"></varFloat>
2060
+ <varInt xsi:nil="true"></varInt>
2061
+ </inputStruct>
2062
+ </n1:echoStruct>
2063
+ </env:Body>
2064
+ </env:Envelope>
2065
+
2066
+ = Response
2067
+
2068
+ HTTP/1.1 500 Internal
2069
+ Date: Sat, 23 Jul 2005 13:17:26 GMT
2070
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2071
+ Content-Length: 4
2072
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2073
+ Connection: close
2074
+ Content-Type: text/xml; charset="utf-8"
2075
+
2076
+ null! CONNECTION CLOSED
2077
+
2078
+
2079
+
2080
+ ##########
2081
+ # echoStructArray
2082
+
2083
+ Result: OK
2084
+
2085
+ Wire dump:
2086
+
2087
+ = Request
2088
+
2089
+ ! CONNECTION ESTABLISHED
2090
+ POST /servlet/wserver HTTP/1.1
2091
+ SOAPAction: "http://soapinterop.org/"
2092
+ Content-Type: text/xml; charset=utf-8
2093
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2094
+ Date: Sat Jul 23 22:15:59 JST 2005
2095
+ Content-Length: 1217
2096
+ Host: www.wingfoot.com
2097
+
2098
+ <?xml version="1.0" encoding="utf-8" ?>
2099
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2100
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2101
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2102
+ <env:Body>
2103
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2104
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2105
+ <inputStructArray n2:arrayType="n3:SOAPStruct[3]"
2106
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2107
+ xmlns:n3="http://soapinterop.org/xsd"
2108
+ xsi:type="n2:Array">
2109
+ <item>
2110
+ <varString xsi:type="xsd:string">a</varString>
2111
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2112
+ <varInt xsi:type="xsd:int">1</varInt>
2113
+ </item>
2114
+ <item>
2115
+ <varString xsi:type="xsd:string">b</varString>
2116
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2117
+ <varInt xsi:type="xsd:int">2</varInt>
2118
+ </item>
2119
+ <item>
2120
+ <varString xsi:type="xsd:string">c</varString>
2121
+ <varFloat xsi:type="xsd:float">+3.3</varFloat>
2122
+ <varInt xsi:type="xsd:int">3</varInt>
2123
+ </item>
2124
+ </inputStructArray>
2125
+ </n1:echoStructArray>
2126
+ </env:Body>
2127
+ </env:Envelope>
2128
+
2129
+ = Response
2130
+
2131
+ HTTP/1.1 200 OK
2132
+ Date: Sat, 23 Jul 2005 13:17:26 GMT
2133
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2134
+ Content-Length: 1096
2135
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2136
+ Content-Type: text/xml; charset="utf-8"
2137
+
2138
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">c</varString><varInt xsi:type="xsd:int">3</varInt><varFloat xsi:type="xsd:float">3.3</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2139
+
2140
+
2141
+ ##########
2142
+ # echoStructArray (anyType Array)
2143
+
2144
+ Result: OK
2145
+
2146
+ Wire dump:
2147
+
2148
+ = Request
2149
+
2150
+ POST /servlet/wserver HTTP/1.1
2151
+ SOAPAction: "http://soapinterop.org/"
2152
+ Content-Type: text/xml; charset=utf-8
2153
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2154
+ Date: Sat Jul 23 22:15:59 JST 2005
2155
+ Content-Length: 1392
2156
+ Host: www.wingfoot.com
2157
+
2158
+ <?xml version="1.0" encoding="utf-8" ?>
2159
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2160
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2161
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2162
+ <env:Body>
2163
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2164
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2165
+ <inputStructArray n2:arrayType="xsd:anyType[3]"
2166
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2167
+ xsi:type="n2:Array">
2168
+ <item xmlns:n3="http://soapinterop.org/xsd"
2169
+ xsi:type="n3:SOAPStruct">
2170
+ <varString xsi:type="xsd:string">a</varString>
2171
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2172
+ <varInt xsi:type="xsd:int">1</varInt>
2173
+ </item>
2174
+ <item xmlns:n4="http://soapinterop.org/xsd"
2175
+ xsi:type="n4:SOAPStruct">
2176
+ <varString xsi:type="xsd:string">b</varString>
2177
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2178
+ <varInt xsi:type="xsd:int">2</varInt>
2179
+ </item>
2180
+ <item xmlns:n5="http://soapinterop.org/xsd"
2181
+ xsi:type="n5:SOAPStruct">
2182
+ <varString xsi:type="xsd:string">c</varString>
2183
+ <varFloat xsi:type="xsd:float">+3.3</varFloat>
2184
+ <varInt xsi:type="xsd:int">3</varInt>
2185
+ </item>
2186
+ </inputStructArray>
2187
+ </n1:echoStructArray>
2188
+ </env:Body>
2189
+ </env:Envelope>
2190
+
2191
+ = Response
2192
+
2193
+ HTTP/1.1 200 OK
2194
+ Date: Sat, 23 Jul 2005 13:17:27 GMT
2195
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2196
+ Content-Length: 1096
2197
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2198
+ Content-Type: text/xml; charset="utf-8"
2199
+
2200
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">c</varString><varInt xsi:type="xsd:int">3</varInt><varFloat xsi:type="xsd:float">3.3</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2201
+
2202
+
2203
+ ##########
2204
+ # echoStructArray (multi-ref)
2205
+
2206
+ Result: OK
2207
+
2208
+ Wire dump:
2209
+
2210
+ = Request
2211
+
2212
+ POST /servlet/wserver HTTP/1.1
2213
+ SOAPAction: "http://soapinterop.org/"
2214
+ Content-Type: text/xml; charset=utf-8
2215
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2216
+ Date: Sat Jul 23 22:15:59 JST 2005
2217
+ Content-Length: 1257
2218
+ Host: www.wingfoot.com
2219
+
2220
+ <?xml version="1.0" encoding="utf-8" ?>
2221
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2222
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2223
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2224
+ <env:Body>
2225
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2226
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2227
+ <inputStructArray n2:arrayType="n3:SOAPStruct[3]"
2228
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2229
+ xmlns:n3="http://soapinterop.org/xsd"
2230
+ xsi:type="n2:Array">
2231
+ <item href="#id-605730110"></item>
2232
+ <item href="#id-605730110"></item>
2233
+ <item>
2234
+ <varString xsi:type="xsd:string">b</varString>
2235
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2236
+ <varInt xsi:type="xsd:int">2</varInt>
2237
+ </item>
2238
+ </inputStructArray>
2239
+ </n1:echoStructArray>
2240
+ <item xmlns:n4="http://soapinterop.org/xsd"
2241
+ id="id-605730110"
2242
+ xsi:type="n4:SOAPStruct"
2243
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2244
+ <varString xsi:type="xsd:string">a</varString>
2245
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2246
+ <varInt xsi:type="xsd:int">1</varInt>
2247
+ </item>
2248
+ </env:Body>
2249
+ </env:Envelope>
2250
+
2251
+ = Response
2252
+
2253
+ HTTP/1.1 200 OK
2254
+ Date: Sat, 23 Jul 2005 13:17:27 GMT
2255
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2256
+ Content-Length: 1096
2257
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2258
+ Content-Type: text/xml; charset="utf-8"
2259
+
2260
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2261
+
2262
+
2263
+ ##########
2264
+ # echoStructArray (multi-ref: elem1 == elem2)
2265
+
2266
+ Result: Expected = "SOAPBuildersInterop::SOAPStruct#-605785240" // Actual = "SOAPBuildersInterop::SOAPStruct#-605786300"
2267
+
2268
+ Wire dump:
2269
+
2270
+ = Request
2271
+
2272
+ POST /servlet/wserver HTTP/1.1
2273
+ SOAPAction: "http://soapinterop.org/"
2274
+ Content-Type: text/xml; charset=utf-8
2275
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2276
+ Date: Sat Jul 23 22:16:00 JST 2005
2277
+ Content-Length: 1257
2278
+ Host: www.wingfoot.com
2279
+
2280
+ <?xml version="1.0" encoding="utf-8" ?>
2281
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2282
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2283
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2284
+ <env:Body>
2285
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2286
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2287
+ <inputStructArray n2:arrayType="n3:SOAPStruct[3]"
2288
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2289
+ xmlns:n3="http://soapinterop.org/xsd"
2290
+ xsi:type="n2:Array">
2291
+ <item href="#id-605759900"></item>
2292
+ <item href="#id-605759900"></item>
2293
+ <item>
2294
+ <varString xsi:type="xsd:string">b</varString>
2295
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2296
+ <varInt xsi:type="xsd:int">2</varInt>
2297
+ </item>
2298
+ </inputStructArray>
2299
+ </n1:echoStructArray>
2300
+ <item xmlns:n4="http://soapinterop.org/xsd"
2301
+ id="id-605759900"
2302
+ xsi:type="n4:SOAPStruct"
2303
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2304
+ <varString xsi:type="xsd:string">a</varString>
2305
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2306
+ <varInt xsi:type="xsd:int">1</varInt>
2307
+ </item>
2308
+ </env:Body>
2309
+ </env:Envelope>
2310
+
2311
+ = Response
2312
+
2313
+ HTTP/1.1 200 OK
2314
+ Date: Sat, 23 Jul 2005 13:17:27 GMT
2315
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2316
+ Content-Length: 1096
2317
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2318
+ Content-Type: text/xml; charset="utf-8"
2319
+
2320
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2321
+
2322
+
2323
+ ##########
2324
+ # echoStructArray (anyType Array, multi-ref: elem2 == elem3)
2325
+
2326
+ Result: Expected = "SOAPBuildersInterop::SOAPStruct#-605817260" // Actual = "SOAPBuildersInterop::SOAPStruct#-605818320"
2327
+
2328
+ Wire dump:
2329
+
2330
+ = Request
2331
+
2332
+ POST /servlet/wserver HTTP/1.1
2333
+ SOAPAction: "http://soapinterop.org/"
2334
+ Content-Type: text/xml; charset=utf-8
2335
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2336
+ Date: Sat Jul 23 22:16:00 JST 2005
2337
+ Content-Length: 1282
2338
+ Host: www.wingfoot.com
2339
+
2340
+ <?xml version="1.0" encoding="utf-8" ?>
2341
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2342
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2343
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2344
+ <env:Body>
2345
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2346
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2347
+ <inputStructArray n2:arrayType="xsd:anyType[3]"
2348
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2349
+ xsi:type="n2:Array">
2350
+ <item xmlns:n3="http://soapinterop.org/xsd"
2351
+ xsi:type="n3:SOAPStruct">
2352
+ <varString xsi:type="xsd:string">a</varString>
2353
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2354
+ <varInt xsi:type="xsd:int">1</varInt>
2355
+ </item>
2356
+ <item href="#id-605791700"></item>
2357
+ <item href="#id-605791700"></item>
2358
+ </inputStructArray>
2359
+ </n1:echoStructArray>
2360
+ <item xmlns:n4="http://soapinterop.org/xsd"
2361
+ id="id-605791700"
2362
+ xsi:type="n4:SOAPStruct"
2363
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2364
+ <varString xsi:type="xsd:string">b</varString>
2365
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2366
+ <varInt xsi:type="xsd:int">2</varInt>
2367
+ </item>
2368
+ </env:Body>
2369
+ </env:Envelope>
2370
+
2371
+ = Response
2372
+
2373
+ HTTP/1.1 200 OK
2374
+ Date: Sat, 23 Jul 2005 13:17:28 GMT
2375
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2376
+ Content-Length: 1096
2377
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2378
+ Content-Type: text/xml; charset="utf-8"
2379
+
2380
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2381
+
2382
+
2383
+ ##########
2384
+ # echoStructArray (multi-ref: varString of elem1 == varString of elem2)
2385
+
2386
+ Result: Expected = "String#-604752036" // Actual = "String#-604763006"
2387
+
2388
+ Wire dump:
2389
+
2390
+ = Request
2391
+
2392
+ POST /servlet/wserver HTTP/1.1
2393
+ SOAPAction: "http://soapinterop.org/"
2394
+ Content-Type: text/xml; charset=utf-8
2395
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2396
+ Date: Sat Jul 23 22:16:00 JST 2005
2397
+ Content-Length: 1360
2398
+ Host: www.wingfoot.com
2399
+
2400
+ <?xml version="1.0" encoding="utf-8" ?>
2401
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2402
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2403
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2404
+ <env:Body>
2405
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2406
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2407
+ <inputStructArray n2:arrayType="n3:SOAPStruct[3]"
2408
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2409
+ xmlns:n3="http://soapinterop.org/xsd"
2410
+ xsi:type="n2:Array">
2411
+ <item>
2412
+ <varString href="#id-605821800"></varString>
2413
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2414
+ <varInt xsi:type="xsd:int">1</varInt>
2415
+ </item>
2416
+ <item>
2417
+ <varString href="#id-605821800"></varString>
2418
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2419
+ <varInt xsi:type="xsd:int">2</varInt>
2420
+ </item>
2421
+ <item>
2422
+ <varString xsi:type="xsd:string">a</varString>
2423
+ <varFloat xsi:type="xsd:float">+3.3</varFloat>
2424
+ <varInt xsi:type="xsd:int">3</varInt>
2425
+ </item>
2426
+ </inputStructArray>
2427
+ </n1:echoStructArray>
2428
+ <varString id="id-605821800"
2429
+ xsi:type="xsd:string"
2430
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">a</varString>
2431
+ </env:Body>
2432
+ </env:Envelope>
2433
+
2434
+ = Response
2435
+
2436
+ HTTP/1.1 200 OK
2437
+ Date: Sat, 23 Jul 2005 13:17:28 GMT
2438
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2439
+ Content-Length: 1096
2440
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2441
+ Content-Type: text/xml; charset="utf-8"
2442
+
2443
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">a</varString><varInt xsi:type="xsd:int">3</varInt><varFloat xsi:type="xsd:float">3.3</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2444
+
2445
+
2446
+ ##########
2447
+ # echoStructArray (anyType Array, multi-ref: varString of elem2 == varString of elem3)
2448
+
2449
+ Result: Expected = "String#-605294200" // Actual = "String#-605295820"
2450
+
2451
+ Wire dump:
2452
+
2453
+ = Request
2454
+
2455
+ POST /servlet/wserver HTTP/1.1
2456
+ SOAPAction: "http://soapinterop.org/"
2457
+ Content-Type: text/xml; charset=utf-8
2458
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2459
+ Date: Sat Jul 23 22:16:01 JST 2005
2460
+ Content-Length: 1535
2461
+ Host: www.wingfoot.com
2462
+
2463
+ <?xml version="1.0" encoding="utf-8" ?>
2464
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2465
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2466
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2467
+ <env:Body>
2468
+ <n1:echoStructArray xmlns:n1="http://soapinterop.org/"
2469
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2470
+ <inputStructArray n2:arrayType="xsd:anyType[3]"
2471
+ xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
2472
+ xsi:type="n2:Array">
2473
+ <item xmlns:n3="http://soapinterop.org/xsd"
2474
+ xsi:type="n3:SOAPStruct">
2475
+ <varString xsi:type="xsd:string">b</varString>
2476
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
2477
+ <varInt xsi:type="xsd:int">1</varInt>
2478
+ </item>
2479
+ <item xmlns:n4="http://soapinterop.org/xsd"
2480
+ xsi:type="n4:SOAPStruct">
2481
+ <varString href="#id-604801056"></varString>
2482
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
2483
+ <varInt xsi:type="xsd:int">2</varInt>
2484
+ </item>
2485
+ <item xmlns:n5="http://soapinterop.org/xsd"
2486
+ xsi:type="n5:SOAPStruct">
2487
+ <varString href="#id-604801056"></varString>
2488
+ <varFloat xsi:type="xsd:float">+3.3</varFloat>
2489
+ <varInt xsi:type="xsd:int">3</varInt>
2490
+ </item>
2491
+ </inputStructArray>
2492
+ </n1:echoStructArray>
2493
+ <varString id="id-604801056"
2494
+ xsi:type="xsd:string"
2495
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">b</varString>
2496
+ </env:Body>
2497
+ </env:Envelope>
2498
+
2499
+ = Response
2500
+
2501
+ HTTP/1.1 200 OK
2502
+ Date: Sat, 23 Jul 2005 13:17:29 GMT
2503
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2504
+ Content-Length: 1096
2505
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2506
+ Content-Type: text/xml; charset="utf-8"
2507
+
2508
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoStructArrayResponse xmlns:ns1="http://soapinterop.org/"><return xmlns:ns2="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:Array" xmlns:ns3="http://soapinterop.org/xsd" ns2:arrayType="ns3:SOAPStruct[3]"><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">1</varInt><varFloat xsi:type="xsd:float">1.1</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">2</varInt><varFloat xsi:type="xsd:float">2.2</varFloat></item><item xsi:type="ns3:SOAPStruct"><varString xsi:type="xsd:string">b</varString><varInt xsi:type="xsd:int">3</varInt><varFloat xsi:type="xsd:float">3.3</varFloat></item></return></ns1:echoStructArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2509
+
2510
+
2511
+ ##########
2512
+ # echoDate (now)
2513
+
2514
+ Result: OK
2515
+
2516
+ Wire dump:
2517
+
2518
+ = Request
2519
+
2520
+ POST /servlet/wserver HTTP/1.1
2521
+ SOAPAction: "http://soapinterop.org/"
2522
+ Content-Type: text/xml; charset=utf-8
2523
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2524
+ Date: Sat Jul 23 22:16:01 JST 2005
2525
+ Content-Length: 474
2526
+ Host: www.wingfoot.com
2527
+
2528
+ <?xml version="1.0" encoding="utf-8" ?>
2529
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2530
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2531
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2532
+ <env:Body>
2533
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2534
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2535
+ <inputDate xsi:type="xsd:dateTime">2005-07-23T13:16:01Z</inputDate>
2536
+ </n1:echoDate>
2537
+ </env:Body>
2538
+ </env:Envelope>
2539
+
2540
+ = Response
2541
+
2542
+ HTTP/1.1 200 OK
2543
+ Date: Sat, 23 Jul 2005 13:17:29 GMT
2544
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2545
+ Content-Length: 475
2546
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2547
+ Content-Type: text/xml; charset="utf-8"
2548
+
2549
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2005-07-23T13:16:01Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2550
+
2551
+
2552
+ ##########
2553
+ # echoDate (before 1970: 1-01-01T00:00:00Z)
2554
+
2555
+ Result: Exception: {http://www.w3.org/2001/XMLSchema}dateTime: cannot accept '1-01-01T00:00:00Z'. (XSD::ValueSpaceError)
2556
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:600:in `screen_data_str'
2557
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:578:in `screen_data'
2558
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:140:in `set'
2559
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:466:in `decode_textbuf'
2560
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:196:in `decode_tag_end'
2561
+ /usr/local/lib/ruby/1.9/soap/parser.rb:193:in `decode_tag_end'
2562
+ /usr/local/lib/ruby/1.9/soap/parser.rb:154:in `end_element'
2563
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/parser.rb:75:in `end_element'
2564
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:88:in `on_etag'
2565
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:396:in `on_etag'
2566
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:683:in `scan_etag'
2567
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:814:in `scan_content'
2568
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
2569
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
2570
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
2571
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
2572
+ /usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
2573
+ /usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
2574
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
2575
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
2576
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
2577
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
2578
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoDate'
2579
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoDate'
2580
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1005:in `doTestBase'
2581
+ clientWingfoot.rb:13
2582
+
2583
+ Wire dump:
2584
+
2585
+ = Request
2586
+
2587
+ POST /servlet/wserver HTTP/1.1
2588
+ SOAPAction: "http://soapinterop.org/"
2589
+ Content-Type: text/xml; charset=utf-8
2590
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2591
+ Date: Sat Jul 23 22:16:02 JST 2005
2592
+ Content-Length: 474
2593
+ Host: www.wingfoot.com
2594
+
2595
+ <?xml version="1.0" encoding="utf-8" ?>
2596
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2597
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2598
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2599
+ <env:Body>
2600
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2601
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2602
+ <inputDate xsi:type="xsd:dateTime">0001-01-01T00:00:00Z</inputDate>
2603
+ </n1:echoDate>
2604
+ </env:Body>
2605
+ </env:Envelope>
2606
+
2607
+ = Response
2608
+
2609
+ HTTP/1.1 200 OK
2610
+ Date: Sat, 23 Jul 2005 13:17:30 GMT
2611
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2612
+ Content-Length: 472
2613
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2614
+ Content-Type: text/xml; charset="utf-8"
2615
+
2616
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">1-01-01T00:00:00Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2617
+
2618
+
2619
+ ##########
2620
+ # echoDate (after 2038: 2038-12-31T00:00:00Z)
2621
+
2622
+ Result: OK
2623
+
2624
+ Wire dump:
2625
+
2626
+ = Request
2627
+
2628
+ POST /servlet/wserver HTTP/1.1
2629
+ SOAPAction: "http://soapinterop.org/"
2630
+ Content-Type: text/xml; charset=utf-8
2631
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2632
+ Date: Sat Jul 23 22:16:02 JST 2005
2633
+ Content-Length: 474
2634
+ Host: www.wingfoot.com
2635
+
2636
+ <?xml version="1.0" encoding="utf-8" ?>
2637
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2638
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2639
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2640
+ <env:Body>
2641
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2642
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2643
+ <inputDate xsi:type="xsd:dateTime">2038-12-31T00:00:00Z</inputDate>
2644
+ </n1:echoDate>
2645
+ </env:Body>
2646
+ </env:Envelope>
2647
+
2648
+ = Response
2649
+
2650
+ HTTP/1.1 200 OK
2651
+ Date: Sat, 23 Jul 2005 13:17:30 GMT
2652
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2653
+ Content-Length: 475
2654
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2655
+ Content-Type: text/xml; charset="utf-8"
2656
+
2657
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2038-12-31T00:00:00Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2658
+
2659
+
2660
+ ##########
2661
+ # echoDate (negative: -10-01-01T00:00:00Z)
2662
+
2663
+ Result: Exception: T0 (SOAP::FaultError)
2664
+ #<SOAP::Mapping::Object:0xb7d33acc>
2665
+
2666
+ Wire dump:
2667
+
2668
+ = Request
2669
+
2670
+ POST /servlet/wserver HTTP/1.1
2671
+ SOAPAction: "http://soapinterop.org/"
2672
+ Content-Type: text/xml; charset=utf-8
2673
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2674
+ Date: Sat Jul 23 22:16:02 JST 2005
2675
+ Content-Length: 475
2676
+ Host: www.wingfoot.com
2677
+
2678
+ <?xml version="1.0" encoding="utf-8" ?>
2679
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2680
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2681
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2682
+ <env:Body>
2683
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2684
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2685
+ <inputDate xsi:type="xsd:dateTime">-0011-01-01T00:00:00Z</inputDate>
2686
+ </n1:echoDate>
2687
+ </env:Body>
2688
+ </env:Envelope>
2689
+
2690
+ = Response
2691
+
2692
+ HTTP/1.1 500 Internal
2693
+ Date: Sat, 23 Jul 2005 13:17:30 GMT
2694
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2695
+ Content-Length: 450
2696
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2697
+ Connection: close
2698
+ Content-Type: text/xml; charset="utf-8"
2699
+
2700
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>T0</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
2701
+
2702
+
2703
+
2704
+ ##########
2705
+ # echoDate (time precision: msec)
2706
+
2707
+ Result: Expected = #<DateTime: 52964868805003/21600000,0,2299161> // Actual = #<DateTime: 10592973761/4320,0,2299161>
2708
+
2709
+ Wire dump:
2710
+
2711
+ = Request
2712
+
2713
+ ! CONNECTION ESTABLISHED
2714
+ POST /servlet/wserver HTTP/1.1
2715
+ SOAPAction: "http://soapinterop.org/"
2716
+ Content-Type: text/xml; charset=utf-8
2717
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2718
+ Date: Sat Jul 23 22:16:03 JST 2005
2719
+ Content-Length: 478
2720
+ Host: www.wingfoot.com
2721
+
2722
+ <?xml version="1.0" encoding="utf-8" ?>
2723
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2724
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2725
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2726
+ <env:Body>
2727
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2728
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2729
+ <inputDate xsi:type="xsd:dateTime">2001-06-16T18:13:40.012Z</inputDate>
2730
+ </n1:echoDate>
2731
+ </env:Body>
2732
+ </env:Envelope>
2733
+
2734
+ = Response
2735
+
2736
+ HTTP/1.1 200 OK
2737
+ Date: Sat, 23 Jul 2005 13:17:31 GMT
2738
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2739
+ Content-Length: 475
2740
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2741
+ Content-Type: text/xml; charset="utf-8"
2742
+
2743
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-16T18:13:40Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2744
+
2745
+
2746
+ ##########
2747
+ # echoDate (time precision: long)
2748
+
2749
+ Result: Expected = #<DateTime: 21185947522000000000001234567890123456789/8640000000000000000000000000000000,0,2299161> // Actual = #<DateTime: 10592973761/4320,0,2299161>
2750
+
2751
+ Wire dump:
2752
+
2753
+ = Request
2754
+
2755
+ POST /servlet/wserver HTTP/1.1
2756
+ SOAPAction: "http://soapinterop.org/"
2757
+ Content-Type: text/xml; charset=utf-8
2758
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2759
+ Date: Sat Jul 23 22:16:03 JST 2005
2760
+ Content-Length: 515
2761
+ Host: www.wingfoot.com
2762
+
2763
+ <?xml version="1.0" encoding="utf-8" ?>
2764
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2765
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2766
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2767
+ <env:Body>
2768
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2769
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2770
+ <inputDate xsi:type="xsd:dateTime">2001-06-16T18:13:40.0000000000123456789012345678900000000000Z</inputDate>
2771
+ </n1:echoDate>
2772
+ </env:Body>
2773
+ </env:Envelope>
2774
+
2775
+ = Response
2776
+
2777
+ HTTP/1.1 200 OK
2778
+ Date: Sat, 23 Jul 2005 13:17:31 GMT
2779
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2780
+ Content-Length: 475
2781
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2782
+ Content-Type: text/xml; charset="utf-8"
2783
+
2784
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-16T18:13:40Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2785
+
2786
+
2787
+ ##########
2788
+ # echoDate (positive TZ)
2789
+
2790
+ Result: OK
2791
+
2792
+ Wire dump:
2793
+
2794
+ = Request
2795
+
2796
+ POST /servlet/wserver HTTP/1.1
2797
+ SOAPAction: "http://soapinterop.org/"
2798
+ Content-Type: text/xml; charset=utf-8
2799
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2800
+ Date: Sat Jul 23 22:16:04 JST 2005
2801
+ Content-Length: 479
2802
+ Host: www.wingfoot.com
2803
+
2804
+ <?xml version="1.0" encoding="utf-8" ?>
2805
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2806
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2807
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2808
+ <env:Body>
2809
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2810
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2811
+ <inputDate xsi:type="xsd:dateTime">2001-06-17T01:13:40+07:00</inputDate>
2812
+ </n1:echoDate>
2813
+ </env:Body>
2814
+ </env:Envelope>
2815
+
2816
+ = Response
2817
+
2818
+ HTTP/1.1 200 OK
2819
+ Date: Sat, 23 Jul 2005 13:17:32 GMT
2820
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2821
+ Content-Length: 475
2822
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2823
+ Content-Type: text/xml; charset="utf-8"
2824
+
2825
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-16T18:13:40Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2826
+
2827
+
2828
+ ##########
2829
+ # echoDate (negative TZ)
2830
+
2831
+ Result: OK
2832
+
2833
+ Wire dump:
2834
+
2835
+ = Request
2836
+
2837
+ POST /servlet/wserver HTTP/1.1
2838
+ SOAPAction: "http://soapinterop.org/"
2839
+ Content-Type: text/xml; charset=utf-8
2840
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2841
+ Date: Sat Jul 23 22:16:04 JST 2005
2842
+ Content-Length: 479
2843
+ Host: www.wingfoot.com
2844
+
2845
+ <?xml version="1.0" encoding="utf-8" ?>
2846
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2847
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2848
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2849
+ <env:Body>
2850
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2851
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2852
+ <inputDate xsi:type="xsd:dateTime">2001-06-16T18:13:40-07:00</inputDate>
2853
+ </n1:echoDate>
2854
+ </env:Body>
2855
+ </env:Envelope>
2856
+
2857
+ = Response
2858
+
2859
+ HTTP/1.1 200 OK
2860
+ Date: Sat, 23 Jul 2005 13:17:32 GMT
2861
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2862
+ Content-Length: 475
2863
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2864
+ Content-Type: text/xml; charset="utf-8"
2865
+
2866
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-17T01:13:40Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2867
+
2868
+
2869
+ ##########
2870
+ # echoDate (+00:00 TZ)
2871
+
2872
+ Result: OK
2873
+
2874
+ Wire dump:
2875
+
2876
+ = Request
2877
+
2878
+ POST /servlet/wserver HTTP/1.1
2879
+ SOAPAction: "http://soapinterop.org/"
2880
+ Content-Type: text/xml; charset=utf-8
2881
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2882
+ Date: Sat Jul 23 22:16:05 JST 2005
2883
+ Content-Length: 474
2884
+ Host: www.wingfoot.com
2885
+
2886
+ <?xml version="1.0" encoding="utf-8" ?>
2887
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2888
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2889
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2890
+ <env:Body>
2891
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2892
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2893
+ <inputDate xsi:type="xsd:dateTime">2001-06-17T01:13:40Z</inputDate>
2894
+ </n1:echoDate>
2895
+ </env:Body>
2896
+ </env:Envelope>
2897
+
2898
+ = Response
2899
+
2900
+ HTTP/1.1 200 OK
2901
+ Date: Sat, 23 Jul 2005 13:17:32 GMT
2902
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2903
+ Content-Length: 475
2904
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2905
+ Content-Type: text/xml; charset="utf-8"
2906
+
2907
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-17T01:13:40Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2908
+
2909
+
2910
+ ##########
2911
+ # echoDate (-00:00 TZ)
2912
+
2913
+ Result: OK
2914
+
2915
+ Wire dump:
2916
+
2917
+ = Request
2918
+
2919
+ POST /servlet/wserver HTTP/1.1
2920
+ SOAPAction: "http://soapinterop.org/"
2921
+ Content-Type: text/xml; charset=utf-8
2922
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2923
+ Date: Sat Jul 23 22:16:05 JST 2005
2924
+ Content-Length: 474
2925
+ Host: www.wingfoot.com
2926
+
2927
+ <?xml version="1.0" encoding="utf-8" ?>
2928
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2929
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2930
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2931
+ <env:Body>
2932
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2933
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2934
+ <inputDate xsi:type="xsd:dateTime">2001-06-17T01:13:40Z</inputDate>
2935
+ </n1:echoDate>
2936
+ </env:Body>
2937
+ </env:Envelope>
2938
+
2939
+ = Response
2940
+
2941
+ HTTP/1.1 200 OK
2942
+ Date: Sat, 23 Jul 2005 13:17:33 GMT
2943
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2944
+ Content-Length: 475
2945
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2946
+ Content-Type: text/xml; charset="utf-8"
2947
+
2948
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-17T01:13:40Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2949
+
2950
+
2951
+ ##########
2952
+ # echoDate (min TZ)
2953
+
2954
+ Result: OK
2955
+
2956
+ Wire dump:
2957
+
2958
+ = Request
2959
+
2960
+ POST /servlet/wserver HTTP/1.1
2961
+ SOAPAction: "http://soapinterop.org/"
2962
+ Content-Type: text/xml; charset=utf-8
2963
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
2964
+ Date: Sat Jul 23 22:16:05 JST 2005
2965
+ Content-Length: 479
2966
+ Host: www.wingfoot.com
2967
+
2968
+ <?xml version="1.0" encoding="utf-8" ?>
2969
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2970
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
2971
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
2972
+ <env:Body>
2973
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
2974
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
2975
+ <inputDate xsi:type="xsd:dateTime">2001-06-16T00:00:01+00:01</inputDate>
2976
+ </n1:echoDate>
2977
+ </env:Body>
2978
+ </env:Envelope>
2979
+
2980
+ = Response
2981
+
2982
+ HTTP/1.1 200 OK
2983
+ Date: Sat, 23 Jul 2005 13:17:33 GMT
2984
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
2985
+ Content-Length: 475
2986
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
2987
+ Content-Type: text/xml; charset="utf-8"
2988
+
2989
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">2001-06-15T23:59:01Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
2990
+
2991
+
2992
+ ##########
2993
+ # echoDate (year > 9999)
2994
+
2995
+ Result: Exception: T1 (SOAP::FaultError)
2996
+ #<SOAP::Mapping::Object:0xb7cac4b4>
2997
+
2998
+ Wire dump:
2999
+
3000
+ = Request
3001
+
3002
+ POST /servlet/wserver HTTP/1.1
3003
+ SOAPAction: "http://soapinterop.org/"
3004
+ Content-Type: text/xml; charset=utf-8
3005
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3006
+ Date: Sat Jul 23 22:16:06 JST 2005
3007
+ Content-Length: 480
3008
+ Host: www.wingfoot.com
3009
+
3010
+ <?xml version="1.0" encoding="utf-8" ?>
3011
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3012
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3013
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3014
+ <env:Body>
3015
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3016
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3017
+ <inputDate xsi:type="xsd:dateTime">10000-06-16T18:13:40-07:00</inputDate>
3018
+ </n1:echoDate>
3019
+ </env:Body>
3020
+ </env:Envelope>
3021
+
3022
+ = Response
3023
+
3024
+ HTTP/1.1 500 Internal
3025
+ Date: Sat, 23 Jul 2005 13:17:34 GMT
3026
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3027
+ Content-Length: 450
3028
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3029
+ Connection: close
3030
+ Content-Type: text/xml; charset="utf-8"
3031
+
3032
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>T1</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3033
+
3034
+
3035
+
3036
+ ##########
3037
+ # echoDate (year < 0)
3038
+
3039
+ Result: Exception: T1 (SOAP::FaultError)
3040
+ #<SOAP::Mapping::Object:0xb7ca32b0>
3041
+
3042
+ Wire dump:
3043
+
3044
+ = Request
3045
+
3046
+ ! CONNECTION ESTABLISHED
3047
+ POST /servlet/wserver HTTP/1.1
3048
+ SOAPAction: "http://soapinterop.org/"
3049
+ Content-Type: text/xml; charset=utf-8
3050
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3051
+ Date: Sat Jul 23 22:16:06 JST 2005
3052
+ Content-Length: 480
3053
+ Host: www.wingfoot.com
3054
+
3055
+ <?xml version="1.0" encoding="utf-8" ?>
3056
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3057
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3058
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3059
+ <env:Body>
3060
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3061
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3062
+ <inputDate xsi:type="xsd:dateTime">-0001-06-16T18:13:40-07:00</inputDate>
3063
+ </n1:echoDate>
3064
+ </env:Body>
3065
+ </env:Envelope>
3066
+
3067
+ = Response
3068
+
3069
+ HTTP/1.1 500 Internal
3070
+ Date: Sat, 23 Jul 2005 13:17:34 GMT
3071
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3072
+ Content-Length: 450
3073
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3074
+ Connection: close
3075
+ Content-Type: text/xml; charset="utf-8"
3076
+
3077
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>T1</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3078
+
3079
+
3080
+
3081
+ ##########
3082
+ # echoDate (year == -4713)
3083
+
3084
+ Result: Exception: T1 (SOAP::FaultError)
3085
+ #<SOAP::Mapping::Object:0xb7c9cbcc>
3086
+
3087
+ Wire dump:
3088
+
3089
+ = Request
3090
+
3091
+ ! CONNECTION ESTABLISHED
3092
+ POST /servlet/wserver HTTP/1.1
3093
+ SOAPAction: "http://soapinterop.org/"
3094
+ Content-Type: text/xml; charset=utf-8
3095
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3096
+ Date: Sat Jul 23 22:16:07 JST 2005
3097
+ Content-Length: 475
3098
+ Host: www.wingfoot.com
3099
+
3100
+ <?xml version="1.0" encoding="utf-8" ?>
3101
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3102
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3103
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3104
+ <env:Body>
3105
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3106
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3107
+ <inputDate xsi:type="xsd:dateTime">-4713-01-01T12:00:00Z</inputDate>
3108
+ </n1:echoDate>
3109
+ </env:Body>
3110
+ </env:Envelope>
3111
+
3112
+ = Response
3113
+
3114
+ HTTP/1.1 500 Internal
3115
+ Date: Sat, 23 Jul 2005 13:17:35 GMT
3116
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3117
+ Content-Length: 450
3118
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3119
+ Connection: close
3120
+ Content-Type: text/xml; charset="utf-8"
3121
+
3122
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>T1</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3123
+
3124
+
3125
+
3126
+ ##########
3127
+ # echoDate (year 0000: junk)
3128
+
3129
+ Result: Exception: {http://www.w3.org/2001/XMLSchema}dateTime: cannot accept '1-05-18T16:52:20Z'. (XSD::ValueSpaceError)
3130
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:600:in `screen_data_str'
3131
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:578:in `screen_data'
3132
+ /usr/local/lib/ruby/1.9/xsd/datatypes.rb:140:in `set'
3133
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:466:in `decode_textbuf'
3134
+ /usr/local/lib/ruby/1.9/soap/encodingstyle/soapHandler.rb:196:in `decode_tag_end'
3135
+ /usr/local/lib/ruby/1.9/soap/parser.rb:193:in `decode_tag_end'
3136
+ /usr/local/lib/ruby/1.9/soap/parser.rb:154:in `end_element'
3137
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/parser.rb:75:in `end_element'
3138
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:88:in `on_etag'
3139
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:396:in `on_etag'
3140
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:683:in `scan_etag'
3141
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:814:in `scan_content'
3142
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
3143
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
3144
+ /usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
3145
+ /usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
3146
+ /usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
3147
+ /usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
3148
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
3149
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
3150
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
3151
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
3152
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoDate'
3153
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoDate'
3154
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1148:in `doTestBase'
3155
+ clientWingfoot.rb:13
3156
+
3157
+ Wire dump:
3158
+
3159
+ = Request
3160
+
3161
+ ! CONNECTION ESTABLISHED
3162
+ POST /servlet/wserver HTTP/1.1
3163
+ SOAPAction: "http://soapinterop.org/"
3164
+ Content-Type: text/xml; charset=utf-8
3165
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3166
+ Date: Sat Jul 23 22:16:08 JST 2005
3167
+ Content-Length: 474
3168
+ Host: www.wingfoot.com
3169
+
3170
+ <?xml version="1.0" encoding="utf-8" ?>
3171
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3172
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3173
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3174
+ <env:Body>
3175
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3176
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3177
+ <inputDate xsi:type="xsd:dateTime">0000-05-18T16:52:20Z</inputDate>
3178
+ </n1:echoDate>
3179
+ </env:Body>
3180
+ </env:Envelope>
3181
+
3182
+ = Response
3183
+
3184
+ HTTP/1.1 200 OK
3185
+ Date: Sat, 23 Jul 2005 13:17:35 GMT
3186
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3187
+ Content-Length: 472
3188
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3189
+ Content-Type: text/xml; charset="utf-8"
3190
+
3191
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime">1-05-18T16:52:20Z</return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3192
+
3193
+
3194
+ ##########
3195
+ # echoDate (year nn: junk)
3196
+
3197
+ Result: OK
3198
+
3199
+ Wire dump:
3200
+
3201
+ = Request
3202
+
3203
+ POST /servlet/wserver HTTP/1.1
3204
+ SOAPAction: "http://soapinterop.org/"
3205
+ Content-Type: text/xml; charset=utf-8
3206
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3207
+ Date: Sat Jul 23 22:16:08 JST 2005
3208
+ Content-Length: 472
3209
+ Host: www.wingfoot.com
3210
+
3211
+ <?xml version="1.0" encoding="utf-8" ?>
3212
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3213
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3214
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3215
+ <env:Body>
3216
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3217
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3218
+ <inputDate xsi:type="xsd:dateTime">05-05-18T16:52:20Z</inputDate>
3219
+ </n1:echoDate>
3220
+ </env:Body>
3221
+ </env:Envelope>
3222
+
3223
+ = Response
3224
+
3225
+ HTTP/1.1 500 Internal
3226
+ Date: Sat, 23 Jul 2005 13:17:36 GMT
3227
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3228
+ Content-Length: 452
3229
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3230
+ Connection: close
3231
+ Content-Type: text/xml; charset="utf-8"
3232
+
3233
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>05-0</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3234
+
3235
+
3236
+
3237
+ ##########
3238
+ # echoDate (no day part: junk)
3239
+
3240
+ Result: OK
3241
+
3242
+ Wire dump:
3243
+
3244
+ = Request
3245
+
3246
+ ! CONNECTION ESTABLISHED
3247
+ POST /servlet/wserver HTTP/1.1
3248
+ SOAPAction: "http://soapinterop.org/"
3249
+ Content-Type: text/xml; charset=utf-8
3250
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3251
+ Date: Sat Jul 23 22:16:08 JST 2005
3252
+ Content-Length: 471
3253
+ Host: www.wingfoot.com
3254
+
3255
+ <?xml version="1.0" encoding="utf-8" ?>
3256
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3257
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3258
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3259
+ <env:Body>
3260
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3261
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3262
+ <inputDate xsi:type="xsd:dateTime">2002-05T16:52:20Z</inputDate>
3263
+ </n1:echoDate>
3264
+ </env:Body>
3265
+ </env:Envelope>
3266
+
3267
+ = Response
3268
+
3269
+ HTTP/1.1 500 Internal
3270
+ Date: Sat, 23 Jul 2005 13:17:36 GMT
3271
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3272
+ Content-Length: 477
3273
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3274
+ Connection: close
3275
+ Content-Type: text/xml; charset="utf-8"
3276
+
3277
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>String index out of range: 19</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3278
+
3279
+
3280
+
3281
+ ##########
3282
+ # echoDate (no sec part: junk)
3283
+
3284
+ Result: OK
3285
+
3286
+ Wire dump:
3287
+
3288
+ = Request
3289
+
3290
+ ! CONNECTION ESTABLISHED
3291
+ POST /servlet/wserver HTTP/1.1
3292
+ SOAPAction: "http://soapinterop.org/"
3293
+ Content-Type: text/xml; charset=utf-8
3294
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3295
+ Date: Sat Jul 23 22:16:09 JST 2005
3296
+ Content-Length: 471
3297
+ Host: www.wingfoot.com
3298
+
3299
+ <?xml version="1.0" encoding="utf-8" ?>
3300
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3301
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3302
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3303
+ <env:Body>
3304
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3305
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3306
+ <inputDate xsi:type="xsd:dateTime">2002-05-18T16:52Z</inputDate>
3307
+ </n1:echoDate>
3308
+ </env:Body>
3309
+ </env:Envelope>
3310
+
3311
+ = Response
3312
+
3313
+ HTTP/1.1 500 Internal
3314
+ Date: Sat, 23 Jul 2005 13:17:37 GMT
3315
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3316
+ Content-Length: 477
3317
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3318
+ Connection: close
3319
+ Content-Type: text/xml; charset="utf-8"
3320
+
3321
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>String index out of range: 19</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3322
+
3323
+
3324
+
3325
+ ##########
3326
+ # echoDate (empty: junk)
3327
+
3328
+ Result: Expected = "Fault" // Actual = "No error occurred."
3329
+
3330
+ Wire dump:
3331
+
3332
+ = Request
3333
+
3334
+ ! CONNECTION ESTABLISHED
3335
+ POST /servlet/wserver HTTP/1.1
3336
+ SOAPAction: "http://soapinterop.org/"
3337
+ Content-Type: text/xml; charset=utf-8
3338
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3339
+ Date: Sat Jul 23 22:16:10 JST 2005
3340
+ Content-Length: 454
3341
+ Host: www.wingfoot.com
3342
+
3343
+ <?xml version="1.0" encoding="utf-8" ?>
3344
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3345
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3346
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3347
+ <env:Body>
3348
+ <n1:echoDate xmlns:n1="http://soapinterop.org/"
3349
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3350
+ <inputDate xsi:type="xsd:dateTime"></inputDate>
3351
+ </n1:echoDate>
3352
+ </env:Body>
3353
+ </env:Envelope>
3354
+
3355
+ = Response
3356
+
3357
+ HTTP/1.1 200 OK
3358
+ Date: Sat, 23 Jul 2005 13:17:37 GMT
3359
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3360
+ Content-Length: 470
3361
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3362
+ Content-Type: text/xml; charset="utf-8"
3363
+
3364
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDateResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:dateTime" xsi:nil="true"></return></ns1:echoDateResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3365
+
3366
+
3367
+ ##########
3368
+ # echoBase64 (xsd:base64Binary)
3369
+
3370
+ Result: OK
3371
+
3372
+ Wire dump:
3373
+
3374
+ = Request
3375
+
3376
+ POST /servlet/wserver HTTP/1.1
3377
+ SOAPAction: "http://soapinterop.org/"
3378
+ Content-Type: text/xml; charset=utf-8
3379
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3380
+ Date: Sat Jul 23 22:16:10 JST 2005
3381
+ Content-Length: 510
3382
+ Host: www.wingfoot.com
3383
+
3384
+ <?xml version="1.0" encoding="utf-8" ?>
3385
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3386
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3387
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3388
+ <env:Body>
3389
+ <n1:echoBase64 xmlns:n1="http://soapinterop.org/"
3390
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3391
+ <inputBase64 xsi:type="xsd:base64Binary">SGVsbG8gKMb8y9y47EphcGFuZXNlKSCks6TzpMukwaTP</inputBase64>
3392
+ </n1:echoBase64>
3393
+ </env:Body>
3394
+ </env:Envelope>
3395
+
3396
+ = Response
3397
+
3398
+ HTTP/1.1 200 OK
3399
+ Date: Sat, 23 Jul 2005 13:17:38 GMT
3400
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3401
+ Content-Length: 507
3402
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3403
+ Content-Type: text/xml; charset="utf-8"
3404
+
3405
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoBase64Response xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:base64Binary">SGVsbG8gKMb8y9y47EphcGFuZXNlKSCks6TzpMukwaTP</return></ns1:echoBase64Response></SOAP-ENV:Body></SOAP-ENV:Envelope>
3406
+
3407
+
3408
+ ##########
3409
+ # echoBase64 (xsd:base64Binary, empty)
3410
+
3411
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
3412
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
3413
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
3414
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
3415
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
3416
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoBase64'
3417
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoBase64'
3418
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1231:in `doTestBase'
3419
+ clientWingfoot.rb:13
3420
+
3421
+ Wire dump:
3422
+
3423
+ = Request
3424
+
3425
+ POST /servlet/wserver HTTP/1.1
3426
+ SOAPAction: "http://soapinterop.org/"
3427
+ Content-Type: text/xml; charset=utf-8
3428
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3429
+ Date: Sat Jul 23 22:16:10 JST 2005
3430
+ Content-Length: 466
3431
+ Host: www.wingfoot.com
3432
+
3433
+ <?xml version="1.0" encoding="utf-8" ?>
3434
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3435
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3436
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3437
+ <env:Body>
3438
+ <n1:echoBase64 xmlns:n1="http://soapinterop.org/"
3439
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3440
+ <inputBase64 xsi:type="xsd:base64Binary"></inputBase64>
3441
+ </n1:echoBase64>
3442
+ </env:Body>
3443
+ </env:Envelope>
3444
+
3445
+ = Response
3446
+
3447
+ HTTP/1.1 500 Internal
3448
+ Date: Sat, 23 Jul 2005 13:17:38 GMT
3449
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3450
+ Content-Length: 4
3451
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3452
+ Connection: close
3453
+ Content-Type: text/xml; charset="utf-8"
3454
+
3455
+ null! CONNECTION CLOSED
3456
+
3457
+
3458
+
3459
+ ##########
3460
+ # echoBase64 (SOAP-ENC:base64)
3461
+
3462
+ Result: OK
3463
+
3464
+ Wire dump:
3465
+
3466
+ = Request
3467
+
3468
+ ! CONNECTION ESTABLISHED
3469
+ POST /servlet/wserver HTTP/1.1
3470
+ SOAPAction: "http://soapinterop.org/"
3471
+ Content-Type: text/xml; charset=utf-8
3472
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3473
+ Date: Sat Jul 23 22:16:11 JST 2005
3474
+ Content-Length: 566
3475
+ Host: www.wingfoot.com
3476
+
3477
+ <?xml version="1.0" encoding="utf-8" ?>
3478
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3479
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3480
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3481
+ <env:Body>
3482
+ <n1:echoBase64 xmlns:n1="http://soapinterop.org/"
3483
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3484
+ <inputBase64 xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
3485
+ xsi:type="n2:base64">SGVsbG8gKMb8y9y47EphcGFuZXNlKSCks6TzpMukwaTP</inputBase64>
3486
+ </n1:echoBase64>
3487
+ </env:Body>
3488
+ </env:Envelope>
3489
+
3490
+ = Response
3491
+
3492
+ HTTP/1.1 200 OK
3493
+ Date: Sat, 23 Jul 2005 13:17:39 GMT
3494
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3495
+ Content-Length: 507
3496
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3497
+ Content-Type: text/xml; charset="utf-8"
3498
+
3499
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoBase64Response xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:base64Binary">SGVsbG8gKMb8y9y47EphcGFuZXNlKSCks6TzpMukwaTP</return></ns1:echoBase64Response></SOAP-ENV:Body></SOAP-ENV:Envelope>
3500
+
3501
+
3502
+ ##########
3503
+ # echoBase64 (\0)
3504
+
3505
+ Result: OK
3506
+
3507
+ Wire dump:
3508
+
3509
+ = Request
3510
+
3511
+ POST /servlet/wserver HTTP/1.1
3512
+ SOAPAction: "http://soapinterop.org/"
3513
+ Content-Type: text/xml; charset=utf-8
3514
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3515
+ Date: Sat Jul 23 22:16:11 JST 2005
3516
+ Content-Length: 526
3517
+ Host: www.wingfoot.com
3518
+
3519
+ <?xml version="1.0" encoding="utf-8" ?>
3520
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3521
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3522
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3523
+ <env:Body>
3524
+ <n1:echoBase64 xmlns:n1="http://soapinterop.org/"
3525
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3526
+ <inputBase64 xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
3527
+ xsi:type="n2:base64">AA==</inputBase64>
3528
+ </n1:echoBase64>
3529
+ </env:Body>
3530
+ </env:Envelope>
3531
+
3532
+ = Response
3533
+
3534
+ HTTP/1.1 200 OK
3535
+ Date: Sat, 23 Jul 2005 13:17:39 GMT
3536
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3537
+ Content-Length: 467
3538
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3539
+ Content-Type: text/xml; charset="utf-8"
3540
+
3541
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoBase64Response xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:base64Binary">AA==</return></ns1:echoBase64Response></SOAP-ENV:Body></SOAP-ENV:Envelope>
3542
+
3543
+
3544
+ ##########
3545
+ # echoBase64 (\0a\0)
3546
+
3547
+ Result: OK
3548
+
3549
+ Wire dump:
3550
+
3551
+ = Request
3552
+
3553
+ POST /servlet/wserver HTTP/1.1
3554
+ SOAPAction: "http://soapinterop.org/"
3555
+ Content-Type: text/xml; charset=utf-8
3556
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3557
+ Date: Sat Jul 23 22:16:12 JST 2005
3558
+ Content-Length: 534
3559
+ Host: www.wingfoot.com
3560
+
3561
+ <?xml version="1.0" encoding="utf-8" ?>
3562
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3563
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3564
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3565
+ <env:Body>
3566
+ <n1:echoBase64 xmlns:n1="http://soapinterop.org/"
3567
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3568
+ <inputBase64 xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
3569
+ xsi:type="n2:base64">YQBiAABjAAAA</inputBase64>
3570
+ </n1:echoBase64>
3571
+ </env:Body>
3572
+ </env:Envelope>
3573
+
3574
+ = Response
3575
+
3576
+ HTTP/1.1 200 OK
3577
+ Date: Sat, 23 Jul 2005 13:17:39 GMT
3578
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3579
+ Content-Length: 475
3580
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3581
+ Content-Type: text/xml; charset="utf-8"
3582
+
3583
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoBase64Response xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:base64Binary">YQBiAABjAAAA</return></ns1:echoBase64Response></SOAP-ENV:Body></SOAP-ENV:Envelope>
3584
+
3585
+
3586
+ ##########
3587
+ # echoBase64 (-: junk)
3588
+
3589
+ Result: OK
3590
+
3591
+ Wire dump:
3592
+
3593
+ = Request
3594
+
3595
+ POST /servlet/wserver HTTP/1.1
3596
+ SOAPAction: "http://soapinterop.org/"
3597
+ Content-Type: text/xml; charset=utf-8
3598
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3599
+ Date: Sat Jul 23 22:16:12 JST 2005
3600
+ Content-Length: 523
3601
+ Host: www.wingfoot.com
3602
+
3603
+ <?xml version="1.0" encoding="utf-8" ?>
3604
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3605
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3606
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3607
+ <env:Body>
3608
+ <n1:echoBase64 xmlns:n1="http://soapinterop.org/"
3609
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3610
+ <inputBase64 xmlns:n2="http://schemas.xmlsoap.org/soap/encoding/"
3611
+ xsi:type="n2:base64">-</inputBase64>
3612
+ </n1:echoBase64>
3613
+ </env:Body>
3614
+ </env:Envelope>
3615
+
3616
+ = Response
3617
+
3618
+ HTTP/1.1 500 Internal
3619
+ Date: Sat, 23 Jul 2005 13:17:40 GMT
3620
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3621
+ Content-Length: 476
3622
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3623
+ Connection: close
3624
+ Content-Type: text/xml; charset="utf-8"
3625
+
3626
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>String index out of range: 1</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3627
+
3628
+
3629
+
3630
+ ##########
3631
+ # echoHexBinary
3632
+
3633
+ Result: OK
3634
+
3635
+ Wire dump:
3636
+
3637
+ = Request
3638
+
3639
+ ! CONNECTION ESTABLISHED
3640
+ POST /servlet/wserver HTTP/1.1
3641
+ SOAPAction: "http://soapinterop.org/"
3642
+ Content-Type: text/xml; charset=utf-8
3643
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3644
+ Date: Sat Jul 23 22:16:13 JST 2005
3645
+ Content-Length: 541
3646
+ Host: www.wingfoot.com
3647
+
3648
+ <?xml version="1.0" encoding="utf-8" ?>
3649
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3650
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3651
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3652
+ <env:Body>
3653
+ <n1:echoHexBinary xmlns:n1="http://soapinterop.org/"
3654
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3655
+ <inputHexBinary xsi:type="xsd:hexBinary">48656C6C6F2028C6FCCBDCB8EC4A6170616E6573652920A4B3A4F3A4CBA4C1A4CF</inputHexBinary>
3656
+ </n1:echoHexBinary>
3657
+ </env:Body>
3658
+ </env:Envelope>
3659
+
3660
+ = Response
3661
+
3662
+ HTTP/1.1 200 OK
3663
+ Date: Sat, 23 Jul 2005 13:17:41 GMT
3664
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3665
+ Content-Length: 532
3666
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3667
+ Content-Type: text/xml; charset="utf-8"
3668
+
3669
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoHexBinaryResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:hexBinary">48656C6C6F2028C6FCCBDCB8EC4A6170616E6573652920A4B3A4F3A4CBA4C1A4CF</return></ns1:echoHexBinaryResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3670
+
3671
+
3672
+ ##########
3673
+ # echoHexBinary(empty)
3674
+
3675
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
3676
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
3677
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
3678
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
3679
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
3680
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoHexBinary'
3681
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoHexBinary'
3682
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1301:in `doTestBase'
3683
+ clientWingfoot.rb:13
3684
+
3685
+ Wire dump:
3686
+
3687
+ = Request
3688
+
3689
+ POST /servlet/wserver HTTP/1.1
3690
+ SOAPAction: "http://soapinterop.org/"
3691
+ Content-Type: text/xml; charset=utf-8
3692
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3693
+ Date: Sat Jul 23 22:16:13 JST 2005
3694
+ Content-Length: 475
3695
+ Host: www.wingfoot.com
3696
+
3697
+ <?xml version="1.0" encoding="utf-8" ?>
3698
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3699
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3700
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3701
+ <env:Body>
3702
+ <n1:echoHexBinary xmlns:n1="http://soapinterop.org/"
3703
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3704
+ <inputHexBinary xsi:type="xsd:hexBinary"></inputHexBinary>
3705
+ </n1:echoHexBinary>
3706
+ </env:Body>
3707
+ </env:Envelope>
3708
+
3709
+ = Response
3710
+
3711
+ HTTP/1.1 500 Internal
3712
+ Date: Sat, 23 Jul 2005 13:17:41 GMT
3713
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3714
+ Content-Length: 4
3715
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3716
+ Connection: close
3717
+ Content-Type: text/xml; charset="utf-8"
3718
+
3719
+ null! CONNECTION CLOSED
3720
+
3721
+
3722
+
3723
+ ##########
3724
+ # echoHexBinary(\0)
3725
+
3726
+ Result: OK
3727
+
3728
+ Wire dump:
3729
+
3730
+ = Request
3731
+
3732
+ ! CONNECTION ESTABLISHED
3733
+ POST /servlet/wserver HTTP/1.1
3734
+ SOAPAction: "http://soapinterop.org/"
3735
+ Content-Type: text/xml; charset=utf-8
3736
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3737
+ Date: Sat Jul 23 22:16:14 JST 2005
3738
+ Content-Length: 477
3739
+ Host: www.wingfoot.com
3740
+
3741
+ <?xml version="1.0" encoding="utf-8" ?>
3742
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3743
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3744
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3745
+ <env:Body>
3746
+ <n1:echoHexBinary xmlns:n1="http://soapinterop.org/"
3747
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3748
+ <inputHexBinary xsi:type="xsd:hexBinary">00</inputHexBinary>
3749
+ </n1:echoHexBinary>
3750
+ </env:Body>
3751
+ </env:Envelope>
3752
+
3753
+ = Response
3754
+
3755
+ HTTP/1.1 200 OK
3756
+ Date: Sat, 23 Jul 2005 13:17:42 GMT
3757
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3758
+ Content-Length: 468
3759
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3760
+ Content-Type: text/xml; charset="utf-8"
3761
+
3762
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoHexBinaryResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:hexBinary">00</return></ns1:echoHexBinaryResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3763
+
3764
+
3765
+ ##########
3766
+ # echoHexBinary(\0a\0)
3767
+
3768
+ Result: OK
3769
+
3770
+ Wire dump:
3771
+
3772
+ = Request
3773
+
3774
+ POST /servlet/wserver HTTP/1.1
3775
+ SOAPAction: "http://soapinterop.org/"
3776
+ Content-Type: text/xml; charset=utf-8
3777
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3778
+ Date: Sat Jul 23 22:16:14 JST 2005
3779
+ Content-Length: 493
3780
+ Host: www.wingfoot.com
3781
+
3782
+ <?xml version="1.0" encoding="utf-8" ?>
3783
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3784
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3785
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3786
+ <env:Body>
3787
+ <n1:echoHexBinary xmlns:n1="http://soapinterop.org/"
3788
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3789
+ <inputHexBinary xsi:type="xsd:hexBinary">610062000063000000</inputHexBinary>
3790
+ </n1:echoHexBinary>
3791
+ </env:Body>
3792
+ </env:Envelope>
3793
+
3794
+ = Response
3795
+
3796
+ HTTP/1.1 200 OK
3797
+ Date: Sat, 23 Jul 2005 13:17:42 GMT
3798
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3799
+ Content-Length: 484
3800
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3801
+ Content-Type: text/xml; charset="utf-8"
3802
+
3803
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoHexBinaryResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:hexBinary">610062000063000000</return></ns1:echoHexBinaryResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3804
+
3805
+
3806
+ ##########
3807
+ # echoHexBinary(lower case)
3808
+
3809
+ Result: OK
3810
+
3811
+ Wire dump:
3812
+
3813
+ = Request
3814
+
3815
+ POST /servlet/wserver HTTP/1.1
3816
+ SOAPAction: "http://soapinterop.org/"
3817
+ Content-Type: text/xml; charset=utf-8
3818
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3819
+ Date: Sat Jul 23 22:16:15 JST 2005
3820
+ Content-Length: 495
3821
+ Host: www.wingfoot.com
3822
+
3823
+ <?xml version="1.0" encoding="utf-8" ?>
3824
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3825
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3826
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3827
+ <env:Body>
3828
+ <n1:echoHexBinary xmlns:n1="http://soapinterop.org/"
3829
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3830
+ <inputHexBinary xsi:type="xsd:hexBinary">6c6f7765722063617365</inputHexBinary>
3831
+ </n1:echoHexBinary>
3832
+ </env:Body>
3833
+ </env:Envelope>
3834
+
3835
+ = Response
3836
+
3837
+ HTTP/1.1 200 OK
3838
+ Date: Sat, 23 Jul 2005 13:17:43 GMT
3839
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3840
+ Content-Length: 486
3841
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3842
+ Content-Type: text/xml; charset="utf-8"
3843
+
3844
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoHexBinaryResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:hexBinary">6c6f7765722063617365</return></ns1:echoHexBinaryResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3845
+
3846
+
3847
+ ##########
3848
+ # echoHexBinary (0FG7: junk)
3849
+
3850
+ Result: OK
3851
+
3852
+ Wire dump:
3853
+
3854
+ = Request
3855
+
3856
+ POST /servlet/wserver HTTP/1.1
3857
+ SOAPAction: "http://soapinterop.org/"
3858
+ Content-Type: text/xml; charset=utf-8
3859
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3860
+ Date: Sat Jul 23 22:16:15 JST 2005
3861
+ Content-Length: 479
3862
+ Host: www.wingfoot.com
3863
+
3864
+ <?xml version="1.0" encoding="utf-8" ?>
3865
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3866
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3867
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3868
+ <env:Body>
3869
+ <n1:echoHexBinary xmlns:n1="http://soapinterop.org/"
3870
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3871
+ <inputHexBinary xsi:type="xsd:hexBinary">0FG7</inputHexBinary>
3872
+ </n1:echoHexBinary>
3873
+ </env:Body>
3874
+ </env:Envelope>
3875
+
3876
+ = Response
3877
+
3878
+ HTTP/1.1 500 Internal
3879
+ Date: Sat, 23 Jul 2005 13:17:43 GMT
3880
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3881
+ Content-Length: 479
3882
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3883
+ Connection: close
3884
+ Content-Type: text/xml; charset="utf-8"
3885
+
3886
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Illegal character in hex string</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
3887
+
3888
+
3889
+
3890
+ ##########
3891
+ # echoBoolean (true)
3892
+
3893
+ Result: OK
3894
+
3895
+ Wire dump:
3896
+
3897
+ = Request
3898
+
3899
+ ! CONNECTION ESTABLISHED
3900
+ POST /servlet/wserver HTTP/1.1
3901
+ SOAPAction: "http://soapinterop.org/"
3902
+ Content-Type: text/xml; charset=utf-8
3903
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3904
+ Date: Sat Jul 23 22:16:16 JST 2005
3905
+ Content-Length: 469
3906
+ Host: www.wingfoot.com
3907
+
3908
+ <?xml version="1.0" encoding="utf-8" ?>
3909
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3910
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3911
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3912
+ <env:Body>
3913
+ <n1:echoBoolean xmlns:n1="http://soapinterop.org/"
3914
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3915
+ <inputBoolean xsi:type="xsd:boolean">true</inputBoolean>
3916
+ </n1:echoBoolean>
3917
+ </env:Body>
3918
+ </env:Envelope>
3919
+
3920
+ = Response
3921
+
3922
+ HTTP/1.1 200 OK
3923
+ Date: Sat, 23 Jul 2005 13:17:43 GMT
3924
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3925
+ Content-Length: 464
3926
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3927
+ Content-Type: text/xml; charset="utf-8"
3928
+
3929
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoBooleanResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:boolean">true</return></ns1:echoBooleanResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3930
+
3931
+
3932
+ ##########
3933
+ # echoBoolean (false)
3934
+
3935
+ Result: OK
3936
+
3937
+ Wire dump:
3938
+
3939
+ = Request
3940
+
3941
+ POST /servlet/wserver HTTP/1.1
3942
+ SOAPAction: "http://soapinterop.org/"
3943
+ Content-Type: text/xml; charset=utf-8
3944
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3945
+ Date: Sat Jul 23 22:16:16 JST 2005
3946
+ Content-Length: 470
3947
+ Host: www.wingfoot.com
3948
+
3949
+ <?xml version="1.0" encoding="utf-8" ?>
3950
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3951
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3952
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3953
+ <env:Body>
3954
+ <n1:echoBoolean xmlns:n1="http://soapinterop.org/"
3955
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3956
+ <inputBoolean xsi:type="xsd:boolean">false</inputBoolean>
3957
+ </n1:echoBoolean>
3958
+ </env:Body>
3959
+ </env:Envelope>
3960
+
3961
+ = Response
3962
+
3963
+ HTTP/1.1 200 OK
3964
+ Date: Sat, 23 Jul 2005 13:17:44 GMT
3965
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
3966
+ Content-Length: 465
3967
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
3968
+ Content-Type: text/xml; charset="utf-8"
3969
+
3970
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoBooleanResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:boolean">false</return></ns1:echoBooleanResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
3971
+
3972
+
3973
+ ##########
3974
+ # echoBoolean (junk)
3975
+
3976
+ Result: OK
3977
+
3978
+ Wire dump:
3979
+
3980
+ = Request
3981
+
3982
+ POST /servlet/wserver HTTP/1.1
3983
+ SOAPAction: "http://soapinterop.org/"
3984
+ Content-Type: text/xml; charset=utf-8
3985
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
3986
+ Date: Sat Jul 23 22:16:16 JST 2005
3987
+ Content-Length: 469
3988
+ Host: www.wingfoot.com
3989
+
3990
+ <?xml version="1.0" encoding="utf-8" ?>
3991
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
3992
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
3993
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3994
+ <env:Body>
3995
+ <n1:echoBoolean xmlns:n1="http://soapinterop.org/"
3996
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
3997
+ <inputBoolean xsi:type="xsd:boolean">junk</inputBoolean>
3998
+ </n1:echoBoolean>
3999
+ </env:Body>
4000
+ </env:Envelope>
4001
+
4002
+ = Response
4003
+
4004
+ HTTP/1.1 500 Internal
4005
+ Date: Sat, 23 Jul 2005 13:17:44 GMT
4006
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4007
+ Content-Length: 484
4008
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4009
+ Connection: close
4010
+ Content-Type: text/xml; charset="utf-8"
4011
+
4012
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Incorrect value detected for boolean</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
4013
+
4014
+
4015
+
4016
+ ##########
4017
+ # echoDecimal (123456)
4018
+
4019
+ Result: OK
4020
+
4021
+ Wire dump:
4022
+
4023
+ = Request
4024
+
4025
+ ! CONNECTION ESTABLISHED
4026
+ POST /servlet/wserver HTTP/1.1
4027
+ SOAPAction: "http://soapinterop.org/"
4028
+ Content-Type: text/xml; charset=utf-8
4029
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4030
+ Date: Sat Jul 23 22:16:17 JST 2005
4031
+ Content-Length: 483
4032
+ Host: www.wingfoot.com
4033
+
4034
+ <?xml version="1.0" encoding="utf-8" ?>
4035
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4036
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4037
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4038
+ <env:Body>
4039
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4040
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4041
+ <inputDecimal xsi:type="xsd:decimal">123456789012345678</inputDecimal>
4042
+ </n1:echoDecimal>
4043
+ </env:Body>
4044
+ </env:Envelope>
4045
+
4046
+ = Response
4047
+
4048
+ HTTP/1.1 200 OK
4049
+ Date: Sat, 23 Jul 2005 13:17:45 GMT
4050
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4051
+ Content-Length: 478
4052
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4053
+ Content-Type: text/xml; charset="utf-8"
4054
+
4055
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDecimalResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:decimal">123456789012345678</return></ns1:echoDecimalResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
4056
+
4057
+
4058
+ ##########
4059
+ # echoDecimal (+0.123)
4060
+
4061
+ Result: OK
4062
+
4063
+ Wire dump:
4064
+
4065
+ = Request
4066
+
4067
+ POST /servlet/wserver HTTP/1.1
4068
+ SOAPAction: "http://soapinterop.org/"
4069
+ Content-Type: text/xml; charset=utf-8
4070
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4071
+ Date: Sat Jul 23 22:16:17 JST 2005
4072
+ Content-Length: 484
4073
+ Host: www.wingfoot.com
4074
+
4075
+ <?xml version="1.0" encoding="utf-8" ?>
4076
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4077
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4078
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4079
+ <env:Body>
4080
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4081
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4082
+ <inputDecimal xsi:type="xsd:decimal">0.12345678901234567</inputDecimal>
4083
+ </n1:echoDecimal>
4084
+ </env:Body>
4085
+ </env:Envelope>
4086
+
4087
+ = Response
4088
+
4089
+ HTTP/1.1 200 OK
4090
+ Date: Sat, 23 Jul 2005 13:17:45 GMT
4091
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4092
+ Content-Length: 479
4093
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4094
+ Content-Type: text/xml; charset="utf-8"
4095
+
4096
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDecimalResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:decimal">0.12345678901234567</return></ns1:echoDecimalResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
4097
+
4098
+
4099
+ ##########
4100
+ # echoDecimal (.00000123)
4101
+
4102
+ Result: OK
4103
+
4104
+ Wire dump:
4105
+
4106
+ = Request
4107
+
4108
+ POST /servlet/wserver HTTP/1.1
4109
+ SOAPAction: "http://soapinterop.org/"
4110
+ Content-Type: text/xml; charset=utf-8
4111
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4112
+ Date: Sat Jul 23 22:16:18 JST 2005
4113
+ Content-Length: 484
4114
+ Host: www.wingfoot.com
4115
+
4116
+ <?xml version="1.0" encoding="utf-8" ?>
4117
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4118
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4119
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4120
+ <env:Body>
4121
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4122
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4123
+ <inputDecimal xsi:type="xsd:decimal">0.00000123456789012</inputDecimal>
4124
+ </n1:echoDecimal>
4125
+ </env:Body>
4126
+ </env:Envelope>
4127
+
4128
+ = Response
4129
+
4130
+ HTTP/1.1 200 OK
4131
+ Date: Sat, 23 Jul 2005 13:17:45 GMT
4132
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4133
+ Content-Length: 479
4134
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4135
+ Content-Type: text/xml; charset="utf-8"
4136
+
4137
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDecimalResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:decimal">0.00000123456789012</return></ns1:echoDecimalResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
4138
+
4139
+
4140
+ ##########
4141
+ # echoDecimal (-.00000123)
4142
+
4143
+ Result: OK
4144
+
4145
+ Wire dump:
4146
+
4147
+ = Request
4148
+
4149
+ POST /servlet/wserver HTTP/1.1
4150
+ SOAPAction: "http://soapinterop.org/"
4151
+ Content-Type: text/xml; charset=utf-8
4152
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4153
+ Date: Sat Jul 23 22:16:18 JST 2005
4154
+ Content-Length: 485
4155
+ Host: www.wingfoot.com
4156
+
4157
+ <?xml version="1.0" encoding="utf-8" ?>
4158
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4159
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4160
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4161
+ <env:Body>
4162
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4163
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4164
+ <inputDecimal xsi:type="xsd:decimal">-0.00000123456789012</inputDecimal>
4165
+ </n1:echoDecimal>
4166
+ </env:Body>
4167
+ </env:Envelope>
4168
+
4169
+ = Response
4170
+
4171
+ HTTP/1.1 200 OK
4172
+ Date: Sat, 23 Jul 2005 13:17:46 GMT
4173
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4174
+ Content-Length: 480
4175
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4176
+ Content-Type: text/xml; charset="utf-8"
4177
+
4178
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDecimalResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:decimal">-0.00000123456789012</return></ns1:echoDecimalResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
4179
+
4180
+
4181
+ ##########
4182
+ # echoDecimal (-123.456)
4183
+
4184
+ Result: OK
4185
+
4186
+ Wire dump:
4187
+
4188
+ = Request
4189
+
4190
+ POST /servlet/wserver HTTP/1.1
4191
+ SOAPAction: "http://soapinterop.org/"
4192
+ Content-Type: text/xml; charset=utf-8
4193
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4194
+ Date: Sat Jul 23 22:16:18 JST 2005
4195
+ Content-Length: 485
4196
+ Host: www.wingfoot.com
4197
+
4198
+ <?xml version="1.0" encoding="utf-8" ?>
4199
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4200
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4201
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4202
+ <env:Body>
4203
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4204
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4205
+ <inputDecimal xsi:type="xsd:decimal">-123456789012345.008</inputDecimal>
4206
+ </n1:echoDecimal>
4207
+ </env:Body>
4208
+ </env:Envelope>
4209
+
4210
+ = Response
4211
+
4212
+ HTTP/1.1 200 OK
4213
+ Date: Sat, 23 Jul 2005 13:17:46 GMT
4214
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4215
+ Content-Length: 480
4216
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4217
+ Content-Type: text/xml; charset="utf-8"
4218
+
4219
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDecimalResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:decimal">-123456789012345.008</return></ns1:echoDecimalResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
4220
+
4221
+
4222
+ ##########
4223
+ # echoDecimal (-123.)
4224
+
4225
+ Result: OK
4226
+
4227
+ Wire dump:
4228
+
4229
+ = Request
4230
+
4231
+ POST /servlet/wserver HTTP/1.1
4232
+ SOAPAction: "http://soapinterop.org/"
4233
+ Content-Type: text/xml; charset=utf-8
4234
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4235
+ Date: Sat Jul 23 22:16:19 JST 2005
4236
+ Content-Length: 483
4237
+ Host: www.wingfoot.com
4238
+
4239
+ <?xml version="1.0" encoding="utf-8" ?>
4240
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4241
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4242
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4243
+ <env:Body>
4244
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4245
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4246
+ <inputDecimal xsi:type="xsd:decimal">-12345678901234567</inputDecimal>
4247
+ </n1:echoDecimal>
4248
+ </env:Body>
4249
+ </env:Envelope>
4250
+
4251
+ = Response
4252
+
4253
+ HTTP/1.1 200 OK
4254
+ Date: Sat, 23 Jul 2005 13:17:46 GMT
4255
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4256
+ Content-Length: 478
4257
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4258
+ Content-Type: text/xml; charset="utf-8"
4259
+
4260
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><ns1:echoDecimalResponse xmlns:ns1="http://soapinterop.org/"><return xsi:type="xsd:decimal">-12345678901234567</return></ns1:echoDecimalResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
4261
+
4262
+
4263
+ ##########
4264
+ # echoDecimal (0.000a: junk)
4265
+
4266
+ Result: OK
4267
+
4268
+ Wire dump:
4269
+
4270
+ = Request
4271
+
4272
+ POST /servlet/wserver HTTP/1.1
4273
+ SOAPAction: "http://soapinterop.org/"
4274
+ Content-Type: text/xml; charset=utf-8
4275
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4276
+ Date: Sat Jul 23 22:16:19 JST 2005
4277
+ Content-Length: 484
4278
+ Host: www.wingfoot.com
4279
+
4280
+ <?xml version="1.0" encoding="utf-8" ?>
4281
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4282
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4283
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4284
+ <env:Body>
4285
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4286
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4287
+ <inputDecimal xsi:type="xsd:decimal">0.0000000000000000a</inputDecimal>
4288
+ </n1:echoDecimal>
4289
+ </env:Body>
4290
+ </env:Envelope>
4291
+
4292
+ = Response
4293
+
4294
+ HTTP/1.1 500 Internal
4295
+ Date: Sat, 23 Jul 2005 13:17:47 GMT
4296
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4297
+ Content-Length: 449
4298
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4299
+ Connection: close
4300
+ Content-Type: text/xml; charset="utf-8"
4301
+
4302
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>a</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
4303
+
4304
+
4305
+
4306
+ ##########
4307
+ # echoDecimal (00a.0001: junk)
4308
+
4309
+ Result: OK
4310
+
4311
+ Wire dump:
4312
+
4313
+ = Request
4314
+
4315
+ ! CONNECTION ESTABLISHED
4316
+ POST /servlet/wserver HTTP/1.1
4317
+ SOAPAction: "http://soapinterop.org/"
4318
+ Content-Type: text/xml; charset=utf-8
4319
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4320
+ Date: Sat Jul 23 22:16:20 JST 2005
4321
+ Content-Length: 484
4322
+ Host: www.wingfoot.com
4323
+
4324
+ <?xml version="1.0" encoding="utf-8" ?>
4325
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4326
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4327
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4328
+ <env:Body>
4329
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4330
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4331
+ <inputDecimal xsi:type="xsd:decimal">00a.000000000000001</inputDecimal>
4332
+ </n1:echoDecimal>
4333
+ </env:Body>
4334
+ </env:Envelope>
4335
+
4336
+ = Response
4337
+
4338
+ HTTP/1.1 500 Internal
4339
+ Date: Sat, 23 Jul 2005 13:17:47 GMT
4340
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4341
+ Content-Length: 449
4342
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4343
+ Connection: close
4344
+ Content-Type: text/xml; charset="utf-8"
4345
+
4346
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>a</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
4347
+
4348
+
4349
+
4350
+ ##########
4351
+ # echoDecimal (+-5: junk)
4352
+
4353
+ Result: Exception: response is not a SOAP envelope: null (SOAP::ResponseFormatError)
4354
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
4355
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
4356
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
4357
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
4358
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoDecimal'
4359
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoDecimal'
4360
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1489:in `doTestBase'
4361
+ clientWingfoot.rb:13
4362
+
4363
+ Wire dump:
4364
+
4365
+ = Request
4366
+
4367
+ ! CONNECTION ESTABLISHED
4368
+ POST /servlet/wserver HTTP/1.1
4369
+ SOAPAction: "http://soapinterop.org/"
4370
+ Content-Type: text/xml; charset=utf-8
4371
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4372
+ Date: Sat Jul 23 22:16:20 JST 2005
4373
+ Content-Length: 468
4374
+ Host: www.wingfoot.com
4375
+
4376
+ <?xml version="1.0" encoding="utf-8" ?>
4377
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4378
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4379
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4380
+ <env:Body>
4381
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4382
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4383
+ <inputDecimal xsi:type="xsd:decimal">+-5</inputDecimal>
4384
+ </n1:echoDecimal>
4385
+ </env:Body>
4386
+ </env:Envelope>
4387
+
4388
+ = Response
4389
+
4390
+ HTTP/1.1 500 Internal
4391
+ Date: Sat, 23 Jul 2005 13:17:48 GMT
4392
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4393
+ Content-Length: 4
4394
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4395
+ Connection: close
4396
+ Content-Type: text/xml; charset="utf-8"
4397
+
4398
+ null! CONNECTION CLOSED
4399
+
4400
+
4401
+
4402
+ ##########
4403
+ # echoDecimal (5_0: junk)
4404
+
4405
+ Result: OK
4406
+
4407
+ Wire dump:
4408
+
4409
+ = Request
4410
+
4411
+ ! CONNECTION ESTABLISHED
4412
+ POST /servlet/wserver HTTP/1.1
4413
+ SOAPAction: "http://soapinterop.org/"
4414
+ Content-Type: text/xml; charset=utf-8
4415
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
4416
+ Date: Sat Jul 23 22:16:21 JST 2005
4417
+ Content-Length: 468
4418
+ Host: www.wingfoot.com
4419
+
4420
+ <?xml version="1.0" encoding="utf-8" ?>
4421
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4422
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
4423
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4424
+ <env:Body>
4425
+ <n1:echoDecimal xmlns:n1="http://soapinterop.org/"
4426
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
4427
+ <inputDecimal xsi:type="xsd:decimal">5_0</inputDecimal>
4428
+ </n1:echoDecimal>
4429
+ </env:Body>
4430
+ </env:Envelope>
4431
+
4432
+ = Response
4433
+
4434
+ HTTP/1.1 500 Internal
4435
+ Date: Sat, 23 Jul 2005 13:17:49 GMT
4436
+ Server: Apache/1.3.23 (Unix) (Red-Hat/Linux) mod_jk/1.2.1-beta-1 mod_ssl/2.8.7 OpenSSL/0.9.6e PHP/4.3.1 FrontPage/5.0.2.2510
4437
+ Content-Length: 451
4438
+ Servlet-Engine: Tomcat Web Server/3.2.3 (JSP 1.1; Servlet 2.2; Java 1.3.1_01; Linux 2.2.19 i386; java.vendor=Sun Microsystems Inc.)
4439
+ Connection: close
4440
+ Content-Type: text/xml; charset="utf-8"
4441
+
4442
+ <?xml version='1.0' encoding='UTF-8'?><SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>5_0</faultstring><detail></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>! CONNECTION CLOSED
4443
+
4444
+
4445
+