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