soap4r 1.5.5.20061022 → 1.5.6

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