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,1408 +0,0 @@
1
- File: clientSpray2001_GroupB.log - Wiredumps for SOAP4R client / Spray2001 server.
2
- Date: Sat Jul 23 21:21:54 JST 2005
3
-
4
- ##########
5
- # echoStructAsSimpleTypes
6
-
7
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
8
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
9
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
10
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
11
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
12
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
13
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
14
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
15
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1676:in `doTestGroupB'
16
- clientSpray2001.rb:16
17
-
18
- Wire dump:
19
-
20
- = Request
21
-
22
- ! CONNECTION ESTABLISHED
23
- POST /services/interopB2001 HTTP/1.1
24
- SOAPAction: "http://soapinterop.org/"
25
- Content-Type: text/xml; charset=utf-8
26
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
27
- Date: Sat Jul 23 21:21:54 JST 2005
28
- Content-Length: 700
29
- Host: www.dolphinharbor.org
30
-
31
- <?xml version="1.0" encoding="utf-8" ?>
32
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
33
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
34
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
35
- <env:Body>
36
- <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
37
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
38
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
39
- xsi:type="n2:SOAPStruct">
40
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
41
- <varInt xsi:type="xsd:int">1</varInt>
42
- <varString xsi:type="xsd:string">a</varString>
43
- </inputStruct>
44
- </n1:echoStructAsSimpleTypes>
45
- </env:Body>
46
- </env:Envelope>
47
-
48
- = Response
49
-
50
- HTTP/1.1 404 Not Found
51
- Content-Length: 1635
52
- Content-Type: text/html
53
- Server: Microsoft-IIS/6.0
54
- X-Powered-By: ASP.NET
55
- Date: Sat, 23 Jul 2005 12:23:43 GMT
56
-
57
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
58
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
59
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
60
- <STYLE type="text/css">
61
- BODY { font: 8pt/12pt verdana }
62
- H1 { font: 13pt/15pt verdana }
63
- H2 { font: 8pt/12pt verdana }
64
- A:link { color: red }
65
- A:visited { color: maroon }
66
- </STYLE>
67
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
68
-
69
- <h1>The page cannot be found</h1>
70
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
71
- <hr>
72
- <p>Please try the following:</p>
73
- <ul>
74
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
75
- <li>If you reached this page by clicking a link, contact
76
- the Web site administrator to alert them that the link is incorrectly formatted.
77
- </li>
78
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
79
- </ul>
80
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
81
- <hr>
82
- <p>Technical Information (for support personnel)</p>
83
- <ul>
84
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
85
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
86
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
87
- </ul>
88
-
89
- </TD></TR></TABLE></BODY></HTML>
90
-
91
-
92
-
93
- ##########
94
- # echoStructAsSimpleTypes (nil)
95
-
96
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
97
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
98
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
99
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
100
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
101
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
102
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
103
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
104
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1687:in `doTestGroupB'
105
- clientSpray2001.rb:16
106
-
107
- Wire dump:
108
-
109
- = Request
110
-
111
- POST /services/interopB2001 HTTP/1.1
112
- SOAPAction: "http://soapinterop.org/"
113
- Content-Type: text/xml; charset=utf-8
114
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
115
- Date: Sat Jul 23 21:21:55 JST 2005
116
- Content-Length: 677
117
- Host: www.dolphinharbor.org
118
-
119
- <?xml version="1.0" encoding="utf-8" ?>
120
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
121
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
122
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
123
- <env:Body>
124
- <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
125
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
126
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
127
- xsi:type="n2:SOAPStruct">
128
- <varFloat xsi:nil="true"></varFloat>
129
- <varInt xsi:nil="true"></varInt>
130
- <varString xsi:nil="true"></varString>
131
- </inputStruct>
132
- </n1:echoStructAsSimpleTypes>
133
- </env:Body>
134
- </env:Envelope>
135
-
136
- = Response
137
-
138
- HTTP/1.1 404 Not Found
139
- Content-Length: 1635
140
- Content-Type: text/html
141
- Server: Microsoft-IIS/6.0
142
- X-Powered-By: ASP.NET
143
- Date: Sat, 23 Jul 2005 12:23:43 GMT
144
-
145
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
146
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
147
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
148
- <STYLE type="text/css">
149
- BODY { font: 8pt/12pt verdana }
150
- H1 { font: 13pt/15pt verdana }
151
- H2 { font: 8pt/12pt verdana }
152
- A:link { color: red }
153
- A:visited { color: maroon }
154
- </STYLE>
155
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
156
-
157
- <h1>The page cannot be found</h1>
158
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
159
- <hr>
160
- <p>Please try the following:</p>
161
- <ul>
162
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
163
- <li>If you reached this page by clicking a link, contact
164
- the Web site administrator to alert them that the link is incorrectly formatted.
165
- </li>
166
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
167
- </ul>
168
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
169
- <hr>
170
- <p>Technical Information (for support personnel)</p>
171
- <ul>
172
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
173
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
174
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
175
- </ul>
176
-
177
- </TD></TR></TABLE></BODY></HTML>
178
-
179
-
180
-
181
- ##########
182
- # echoSimpleTypesAsStruct
183
-
184
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
185
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
186
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
187
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
188
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
189
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
190
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
191
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
192
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1698:in `doTestGroupB'
193
- clientSpray2001.rb:16
194
-
195
- Wire dump:
196
-
197
- = Request
198
-
199
- POST /services/interopB2001 HTTP/1.1
200
- SOAPAction: "http://soapinterop.org/"
201
- Content-Type: text/xml; charset=utf-8
202
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
203
- Date: Sat Jul 23 21:21:55 JST 2005
204
- Content-Length: 600
205
- Host: www.dolphinharbor.org
206
-
207
- <?xml version="1.0" encoding="utf-8" ?>
208
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
209
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
210
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
211
- <env:Body>
212
- <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
213
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
214
- <inputString xsi:type="xsd:string">a</inputString>
215
- <inputInteger xsi:type="xsd:int">1</inputInteger>
216
- <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
217
- </n1:echoSimpleTypesAsStruct>
218
- </env:Body>
219
- </env:Envelope>
220
-
221
- = Response
222
-
223
- HTTP/1.1 404 Not Found
224
- Content-Length: 1635
225
- Content-Type: text/html
226
- Server: Microsoft-IIS/6.0
227
- X-Powered-By: ASP.NET
228
- Date: Sat, 23 Jul 2005 12:23:44 GMT
229
-
230
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
231
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
232
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
233
- <STYLE type="text/css">
234
- BODY { font: 8pt/12pt verdana }
235
- H1 { font: 13pt/15pt verdana }
236
- H2 { font: 8pt/12pt verdana }
237
- A:link { color: red }
238
- A:visited { color: maroon }
239
- </STYLE>
240
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
241
-
242
- <h1>The page cannot be found</h1>
243
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
244
- <hr>
245
- <p>Please try the following:</p>
246
- <ul>
247
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
248
- <li>If you reached this page by clicking a link, contact
249
- the Web site administrator to alert them that the link is incorrectly formatted.
250
- </li>
251
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
252
- </ul>
253
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
254
- <hr>
255
- <p>Technical Information (for support personnel)</p>
256
- <ul>
257
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
258
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
259
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
260
- </ul>
261
-
262
- </TD></TR></TABLE></BODY></HTML>
263
-
264
-
265
-
266
- ##########
267
- # echoSimpleTypesAsStruct (nil)
268
-
269
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
270
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
271
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
272
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
273
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
274
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
275
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
276
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
277
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1708:in `doTestGroupB'
278
- clientSpray2001.rb:16
279
-
280
- Wire dump:
281
-
282
- = Request
283
-
284
- POST /services/interopB2001 HTTP/1.1
285
- SOAPAction: "http://soapinterop.org/"
286
- Content-Type: text/xml; charset=utf-8
287
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
288
- Date: Sat Jul 23 21:21:56 JST 2005
289
- Content-Length: 577
290
- Host: www.dolphinharbor.org
291
-
292
- <?xml version="1.0" encoding="utf-8" ?>
293
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
294
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
295
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
296
- <env:Body>
297
- <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
298
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
299
- <inputString xsi:nil="true"></inputString>
300
- <inputInteger xsi:nil="true"></inputInteger>
301
- <inputFloat xsi:nil="true"></inputFloat>
302
- </n1:echoSimpleTypesAsStruct>
303
- </env:Body>
304
- </env:Envelope>
305
-
306
- = Response
307
-
308
- HTTP/1.1 404 Not Found
309
- Content-Length: 1635
310
- Content-Type: text/html
311
- Server: Microsoft-IIS/6.0
312
- X-Powered-By: ASP.NET
313
- Date: Sat, 23 Jul 2005 12:23:44 GMT
314
-
315
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
316
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
317
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
318
- <STYLE type="text/css">
319
- BODY { font: 8pt/12pt verdana }
320
- H1 { font: 13pt/15pt verdana }
321
- H2 { font: 8pt/12pt verdana }
322
- A:link { color: red }
323
- A:visited { color: maroon }
324
- </STYLE>
325
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
326
-
327
- <h1>The page cannot be found</h1>
328
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
329
- <hr>
330
- <p>Please try the following:</p>
331
- <ul>
332
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
333
- <li>If you reached this page by clicking a link, contact
334
- the Web site administrator to alert them that the link is incorrectly formatted.
335
- </li>
336
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
337
- </ul>
338
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
339
- <hr>
340
- <p>Technical Information (for support personnel)</p>
341
- <ul>
342
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
343
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
344
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
345
- </ul>
346
-
347
- </TD></TR></TABLE></BODY></HTML>
348
-
349
-
350
-
351
- ##########
352
- # echo2DStringArray
353
-
354
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
355
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
356
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
357
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
358
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
359
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
360
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
361
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
362
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1747:in `doTestGroupB'
363
- clientSpray2001.rb:16
364
-
365
- Wire dump:
366
-
367
- = Request
368
-
369
- POST /services/interopB2001 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:21:56 JST 2005
374
- Content-Length: 889
375
- Host: www.dolphinharbor.org
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:echo2DStringArray xmlns:n1="http://soapinterop.org/"
383
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
384
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
385
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
386
- xsi:type="n2:ArrayOfString2D"
387
- n3:arrayType="xsd:string[3,3]">
388
- <item>r0c0</item>
389
- <item>r1c0</item>
390
- <item>r2c0</item>
391
- <item>r0c1</item>
392
- <item>r1c1</item>
393
- <item>r2c1</item>
394
- <item>r0c2</item>
395
- <item>r1c2</item>
396
- <item>r2c2</item>
397
- </input2DStringArray>
398
- </n1:echo2DStringArray>
399
- </env:Body>
400
- </env:Envelope>
401
-
402
- = Response
403
-
404
- HTTP/1.1 404 Not Found
405
- Content-Length: 1635
406
- Content-Type: text/html
407
- Server: Microsoft-IIS/6.0
408
- X-Powered-By: ASP.NET
409
- Date: Sat, 23 Jul 2005 12:23:45 GMT
410
-
411
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
412
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
413
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
414
- <STYLE type="text/css">
415
- BODY { font: 8pt/12pt verdana }
416
- H1 { font: 13pt/15pt verdana }
417
- H2 { font: 8pt/12pt verdana }
418
- A:link { color: red }
419
- A:visited { color: maroon }
420
- </STYLE>
421
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
422
-
423
- <h1>The page cannot be found</h1>
424
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
425
- <hr>
426
- <p>Please try the following:</p>
427
- <ul>
428
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
429
- <li>If you reached this page by clicking a link, contact
430
- the Web site administrator to alert them that the link is incorrectly formatted.
431
- </li>
432
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
433
- </ul>
434
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
435
- <hr>
436
- <p>Technical Information (for support personnel)</p>
437
- <ul>
438
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
439
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
440
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
441
- </ul>
442
-
443
- </TD></TR></TABLE></BODY></HTML>
444
-
445
-
446
-
447
- ##########
448
- # echo2DStringArray (anyType array)
449
-
450
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
451
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
452
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
453
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
454
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
455
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
456
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
457
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
458
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1765:in `doTestGroupB'
459
- clientSpray2001.rb:16
460
-
461
- Wire dump:
462
-
463
- = Request
464
-
465
- POST /services/interopB2001 HTTP/1.1
466
- SOAPAction: "http://soapinterop.org/"
467
- Content-Type: text/xml; charset=utf-8
468
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
469
- Date: Sat Jul 23 21:21:57 JST 2005
470
- Content-Length: 1088
471
- Host: www.dolphinharbor.org
472
-
473
- <?xml version="1.0" encoding="utf-8" ?>
474
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
475
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
476
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
477
- <env:Body>
478
- <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
479
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
480
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
481
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
482
- xsi:type="n2:ArrayOfString2D"
483
- n3:arrayType="xsd:anyType[3,3]">
484
- <item xsi:type="xsd:string">r0c0</item>
485
- <item xsi:type="xsd:string">r0c1</item>
486
- <item xsi:type="xsd:string">r0c2</item>
487
- <item xsi:type="xsd:string">r1c0</item>
488
- <item xsi:type="xsd:string">r1c1</item>
489
- <item xsi:type="xsd:string">r1c2</item>
490
- <item xsi:type="xsd:string">r2c0</item>
491
- <item xsi:type="xsd:string">r0c1</item>
492
- <item xsi:type="xsd:string">r2c2</item>
493
- </input2DStringArray>
494
- </n1:echo2DStringArray>
495
- </env:Body>
496
- </env:Envelope>
497
-
498
- = Response
499
-
500
- HTTP/1.1 404 Not Found
501
- Content-Length: 1635
502
- Content-Type: text/html
503
- Server: Microsoft-IIS/6.0
504
- X-Powered-By: ASP.NET
505
- Date: Sat, 23 Jul 2005 12:23:45 GMT
506
-
507
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
508
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
509
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
510
- <STYLE type="text/css">
511
- BODY { font: 8pt/12pt verdana }
512
- H1 { font: 13pt/15pt verdana }
513
- H2 { font: 8pt/12pt verdana }
514
- A:link { color: red }
515
- A:visited { color: maroon }
516
- </STYLE>
517
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
518
-
519
- <h1>The page cannot be found</h1>
520
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
521
- <hr>
522
- <p>Please try the following:</p>
523
- <ul>
524
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
525
- <li>If you reached this page by clicking a link, contact
526
- the Web site administrator to alert them that the link is incorrectly formatted.
527
- </li>
528
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
529
- </ul>
530
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
531
- <hr>
532
- <p>Technical Information (for support personnel)</p>
533
- <ul>
534
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
535
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
536
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
537
- </ul>
538
-
539
- </TD></TR></TABLE></BODY></HTML>
540
-
541
-
542
-
543
- ##########
544
- # echo2DStringArray (multi-ref)
545
-
546
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
547
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
548
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
549
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
550
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
551
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
552
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
553
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
554
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
555
- clientSpray2001.rb:16
556
-
557
- Wire dump:
558
-
559
- = Request
560
-
561
- POST /services/interopB2001 HTTP/1.1
562
- SOAPAction: "http://soapinterop.org/"
563
- Content-Type: text/xml; charset=utf-8
564
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
565
- Date: Sat Jul 23 21:21:58 JST 2005
566
- Content-Length: 1063
567
- Host: www.dolphinharbor.org
568
-
569
- <?xml version="1.0" encoding="utf-8" ?>
570
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
571
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
572
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
573
- <env:Body>
574
- <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
575
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
576
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
577
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
578
- xsi:type="n2:ArrayOfString2D"
579
- n3:arrayType="xsd:string[3,3]">
580
- <item>r0c0</item>
581
- <item>r1c0</item>
582
- <item href="#id-605710720"></item>
583
- <item>r0c1</item>
584
- <item>r1c1</item>
585
- <item>r2c1</item>
586
- <item href="#id-605710720"></item>
587
- <item>r1c2</item>
588
- <item>r2c2</item>
589
- </input2DStringArray>
590
- </n1:echo2DStringArray>
591
- <item id="id-605710720"
592
- xsi:type="xsd:string"
593
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
594
- </env:Body>
595
- </env:Envelope>
596
-
597
- = Response
598
-
599
- HTTP/1.1 404 Not Found
600
- Content-Length: 1635
601
- Content-Type: text/html
602
- Server: Microsoft-IIS/6.0
603
- X-Powered-By: ASP.NET
604
- Date: Sat, 23 Jul 2005 12:23:46 GMT
605
-
606
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
607
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
608
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
609
- <STYLE type="text/css">
610
- BODY { font: 8pt/12pt verdana }
611
- H1 { font: 13pt/15pt verdana }
612
- H2 { font: 8pt/12pt verdana }
613
- A:link { color: red }
614
- A:visited { color: maroon }
615
- </STYLE>
616
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
617
-
618
- <h1>The page cannot be found</h1>
619
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
620
- <hr>
621
- <p>Please try the following:</p>
622
- <ul>
623
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
624
- <li>If you reached this page by clicking a link, contact
625
- the Web site administrator to alert them that the link is incorrectly formatted.
626
- </li>
627
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
628
- </ul>
629
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
630
- <hr>
631
- <p>Technical Information (for support personnel)</p>
632
- <ul>
633
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
634
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
635
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
636
- </ul>
637
-
638
- </TD></TR></TABLE></BODY></HTML>
639
-
640
-
641
-
642
- ##########
643
- # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
644
-
645
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
646
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
647
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
648
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
649
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
650
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
651
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
652
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
653
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1852:in `doTestGroupB'
654
- clientSpray2001.rb:16
655
-
656
- Wire dump:
657
-
658
- = Request
659
-
660
- POST /services/interopB2001 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:21:58 JST 2005
665
- Content-Length: 1063
666
- Host: www.dolphinharbor.org
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:echo2DStringArray xmlns:n1="http://soapinterop.org/"
674
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
675
- <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
676
- xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
677
- xsi:type="n2:ArrayOfString2D"
678
- n3:arrayType="xsd:string[3,3]">
679
- <item>r0c0</item>
680
- <item>r1c0</item>
681
- <item href="#id-605736140"></item>
682
- <item>r0c1</item>
683
- <item>r1c1</item>
684
- <item>r2c1</item>
685
- <item href="#id-605736140"></item>
686
- <item>r1c2</item>
687
- <item>r2c2</item>
688
- </input2DStringArray>
689
- </n1:echo2DStringArray>
690
- <item id="id-605736140"
691
- xsi:type="xsd:string"
692
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
693
- </env:Body>
694
- </env:Envelope>
695
-
696
- = Response
697
-
698
- HTTP/1.1 404 Not Found
699
- Content-Length: 1635
700
- Content-Type: text/html
701
- Server: Microsoft-IIS/6.0
702
- X-Powered-By: ASP.NET
703
- Date: Sat, 23 Jul 2005 12:23:46 GMT
704
-
705
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
706
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
707
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
708
- <STYLE type="text/css">
709
- BODY { font: 8pt/12pt verdana }
710
- H1 { font: 13pt/15pt verdana }
711
- H2 { font: 8pt/12pt verdana }
712
- A:link { color: red }
713
- A:visited { color: maroon }
714
- </STYLE>
715
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
716
-
717
- <h1>The page cannot be found</h1>
718
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
719
- <hr>
720
- <p>Please try the following:</p>
721
- <ul>
722
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
723
- <li>If you reached this page by clicking a link, contact
724
- the Web site administrator to alert them that the link is incorrectly formatted.
725
- </li>
726
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
727
- </ul>
728
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
729
- <hr>
730
- <p>Technical Information (for support personnel)</p>
731
- <ul>
732
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
733
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
734
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
735
- </ul>
736
-
737
- </TD></TR></TABLE></BODY></HTML>
738
-
739
-
740
-
741
- ##########
742
- # echoNestedStruct
743
-
744
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
745
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
746
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
747
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
748
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
749
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
750
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
751
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
752
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1882:in `doTestGroupB'
753
- clientSpray2001.rb:16
754
-
755
- Wire dump:
756
-
757
- = Request
758
-
759
- POST /services/interopB2001 HTTP/1.1
760
- SOAPAction: "http://soapinterop.org/"
761
- Content-Type: text/xml; charset=utf-8
762
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
763
- Date: Sat Jul 23 21:21:59 JST 2005
764
- Content-Length: 920
765
- Host: www.dolphinharbor.org
766
-
767
- <?xml version="1.0" encoding="utf-8" ?>
768
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
769
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
770
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
771
- <env:Body>
772
- <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
773
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
774
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
775
- xsi:type="n2:SOAPStructStruct">
776
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
777
- <varInt xsi:type="xsd:int">1</varInt>
778
- <varStruct xsi:type="n2:SOAPStruct">
779
- <varFloat xsi:type="xsd:float">+2.2</varFloat>
780
- <varInt xsi:type="xsd:int">2</varInt>
781
- <varString xsi:type="xsd:string">b</varString>
782
- </varStruct>
783
- <varString xsi:type="xsd:string">a</varString>
784
- </inputStruct>
785
- </n1:echoNestedStruct>
786
- </env:Body>
787
- </env:Envelope>
788
-
789
- = Response
790
-
791
- HTTP/1.1 404 Not Found
792
- Content-Length: 1635
793
- Content-Type: text/html
794
- Server: Microsoft-IIS/6.0
795
- X-Powered-By: ASP.NET
796
- Date: Sat, 23 Jul 2005 12:23:48 GMT
797
-
798
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
799
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
800
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
801
- <STYLE type="text/css">
802
- BODY { font: 8pt/12pt verdana }
803
- H1 { font: 13pt/15pt verdana }
804
- H2 { font: 8pt/12pt verdana }
805
- A:link { color: red }
806
- A:visited { color: maroon }
807
- </STYLE>
808
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
809
-
810
- <h1>The page cannot be found</h1>
811
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
812
- <hr>
813
- <p>Please try the following:</p>
814
- <ul>
815
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
816
- <li>If you reached this page by clicking a link, contact
817
- the Web site administrator to alert them that the link is incorrectly formatted.
818
- </li>
819
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
820
- </ul>
821
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
822
- <hr>
823
- <p>Technical Information (for support personnel)</p>
824
- <ul>
825
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
826
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
827
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
828
- </ul>
829
-
830
- </TD></TR></TABLE></BODY></HTML>
831
-
832
-
833
-
834
- ##########
835
- # echoNestedStruct (nil)
836
-
837
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
838
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
839
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
840
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
841
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
842
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
843
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
844
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
845
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1894:in `doTestGroupB'
846
- clientSpray2001.rb:16
847
-
848
- Wire dump:
849
-
850
- = Request
851
-
852
- POST /services/interopB2001 HTTP/1.1
853
- SOAPAction: "http://soapinterop.org/"
854
- Content-Type: text/xml; charset=utf-8
855
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
856
- Date: Sat Jul 23 21:21:59 JST 2005
857
- Content-Length: 874
858
- Host: www.dolphinharbor.org
859
-
860
- <?xml version="1.0" encoding="utf-8" ?>
861
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
862
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
863
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
864
- <env:Body>
865
- <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
866
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
867
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
868
- xsi:type="n2:SOAPStructStruct">
869
- <varFloat xsi:nil="true"></varFloat>
870
- <varInt xsi:nil="true"></varInt>
871
- <varStruct xsi:type="n2:SOAPStruct">
872
- <varFloat xsi:nil="true"></varFloat>
873
- <varInt xsi:nil="true"></varInt>
874
- <varString xsi:nil="true"></varString>
875
- </varStruct>
876
- <varString xsi:nil="true"></varString>
877
- </inputStruct>
878
- </n1:echoNestedStruct>
879
- </env:Body>
880
- </env:Envelope>
881
-
882
- = Response
883
-
884
- HTTP/1.1 404 Not Found
885
- Content-Length: 1635
886
- Content-Type: text/html
887
- Server: Microsoft-IIS/6.0
888
- X-Powered-By: ASP.NET
889
- Date: Sat, 23 Jul 2005 12:23:48 GMT
890
-
891
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
892
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
893
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
894
- <STYLE type="text/css">
895
- BODY { font: 8pt/12pt verdana }
896
- H1 { font: 13pt/15pt verdana }
897
- H2 { font: 8pt/12pt verdana }
898
- A:link { color: red }
899
- A:visited { color: maroon }
900
- </STYLE>
901
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
902
-
903
- <h1>The page cannot be found</h1>
904
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
905
- <hr>
906
- <p>Please try the following:</p>
907
- <ul>
908
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
909
- <li>If you reached this page by clicking a link, contact
910
- the Web site administrator to alert them that the link is incorrectly formatted.
911
- </li>
912
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
913
- </ul>
914
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
915
- <hr>
916
- <p>Technical Information (for support personnel)</p>
917
- <ul>
918
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
919
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
920
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
921
- </ul>
922
-
923
- </TD></TR></TABLE></BODY></HTML>
924
-
925
-
926
-
927
- ##########
928
- # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
929
-
930
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
931
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
932
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
933
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
934
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
935
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
936
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
937
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
938
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1907:in `doTestGroupB'
939
- clientSpray2001.rb:16
940
-
941
- Wire dump:
942
-
943
- = Request
944
-
945
- POST /services/interopB2001 HTTP/1.1
946
- SOAPAction: "http://soapinterop.org/"
947
- Content-Type: text/xml; charset=utf-8
948
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
949
- Date: Sat Jul 23 21:22:00 JST 2005
950
- Content-Length: 1062
951
- Host: www.dolphinharbor.org
952
-
953
- <?xml version="1.0" encoding="utf-8" ?>
954
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
955
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
956
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
957
- <env:Body>
958
- <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
959
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
960
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
961
- xsi:type="n2:SOAPStructStruct">
962
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
963
- <varInt xsi:type="xsd:int">1</varInt>
964
- <varStruct xsi:type="n2:SOAPStruct">
965
- <varFloat xsi:type="xsd:float">+2.2</varFloat>
966
- <varInt xsi:type="xsd:int">2</varInt>
967
- <varString href="#id-605792030"></varString>
968
- </varStruct>
969
- <varString href="#id-605792030"></varString>
970
- </inputStruct>
971
- </n1:echoNestedStruct>
972
- <varString id="id-605792030"
973
- xsi:type="xsd:string"
974
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
975
- </env:Body>
976
- </env:Envelope>
977
-
978
- = Response
979
-
980
- HTTP/1.1 404 Not Found
981
- Content-Length: 1635
982
- Content-Type: text/html
983
- Server: Microsoft-IIS/6.0
984
- X-Powered-By: ASP.NET
985
- Date: Sat, 23 Jul 2005 12:23:49 GMT
986
-
987
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
988
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
989
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
990
- <STYLE type="text/css">
991
- BODY { font: 8pt/12pt verdana }
992
- H1 { font: 13pt/15pt verdana }
993
- H2 { font: 8pt/12pt verdana }
994
- A:link { color: red }
995
- A:visited { color: maroon }
996
- </STYLE>
997
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
998
-
999
- <h1>The page cannot be found</h1>
1000
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
1001
- <hr>
1002
- <p>Please try the following:</p>
1003
- <ul>
1004
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
1005
- <li>If you reached this page by clicking a link, contact
1006
- the Web site administrator to alert them that the link is incorrectly formatted.
1007
- </li>
1008
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
1009
- </ul>
1010
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
1011
- <hr>
1012
- <p>Technical Information (for support personnel)</p>
1013
- <ul>
1014
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
1015
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
1016
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
1017
- </ul>
1018
-
1019
- </TD></TR></TABLE></BODY></HTML>
1020
-
1021
-
1022
-
1023
- ##########
1024
- # echoNestedArray
1025
-
1026
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
1027
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
1028
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
1029
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
1030
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1031
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1032
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
1033
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
1034
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1917:in `doTestGroupB'
1035
- clientSpray2001.rb:16
1036
-
1037
- Wire dump:
1038
-
1039
- = Request
1040
-
1041
- POST /services/interopB2001 HTTP/1.1
1042
- SOAPAction: "http://soapinterop.org/"
1043
- Content-Type: text/xml; charset=utf-8
1044
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1045
- Date: Sat Jul 23 21:22:01 JST 2005
1046
- Content-Length: 931
1047
- Host: www.dolphinharbor.org
1048
-
1049
- <?xml version="1.0" encoding="utf-8" ?>
1050
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1051
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1052
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1053
- <env:Body>
1054
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1055
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1056
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1057
- xsi:type="n2:SOAPArrayStruct">
1058
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
1059
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1060
- xsi:type="n3:Array"
1061
- n3:arrayType="xsd:string[3]">
1062
- <item>2</item>
1063
- <item>2.2</item>
1064
- <item>b</item>
1065
- </varArray>
1066
- <varInt xsi:type="xsd:int">1</varInt>
1067
- <varString xsi:type="xsd:string">a</varString>
1068
- </inputStruct>
1069
- </n1:echoNestedArray>
1070
- </env:Body>
1071
- </env:Envelope>
1072
-
1073
- = Response
1074
-
1075
- HTTP/1.1 404 Not Found
1076
- Content-Length: 1635
1077
- Content-Type: text/html
1078
- Server: Microsoft-IIS/6.0
1079
- X-Powered-By: ASP.NET
1080
- Date: Sat, 23 Jul 2005 12:23:49 GMT
1081
-
1082
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
1083
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
1084
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
1085
- <STYLE type="text/css">
1086
- BODY { font: 8pt/12pt verdana }
1087
- H1 { font: 13pt/15pt verdana }
1088
- H2 { font: 8pt/12pt verdana }
1089
- A:link { color: red }
1090
- A:visited { color: maroon }
1091
- </STYLE>
1092
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
1093
-
1094
- <h1>The page cannot be found</h1>
1095
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
1096
- <hr>
1097
- <p>Please try the following:</p>
1098
- <ul>
1099
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
1100
- <li>If you reached this page by clicking a link, contact
1101
- the Web site administrator to alert them that the link is incorrectly formatted.
1102
- </li>
1103
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
1104
- </ul>
1105
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
1106
- <hr>
1107
- <p>Technical Information (for support personnel)</p>
1108
- <ul>
1109
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
1110
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
1111
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
1112
- </ul>
1113
-
1114
- </TD></TR></TABLE></BODY></HTML>
1115
-
1116
-
1117
-
1118
- ##########
1119
- # echoNestedArray (anyType array)
1120
-
1121
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
1122
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
1123
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
1124
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
1125
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1126
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1127
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
1128
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
1129
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
1130
- clientSpray2001.rb:16
1131
-
1132
- Wire dump:
1133
-
1134
- = Request
1135
-
1136
- POST /services/interopB2001 HTTP/1.1
1137
- SOAPAction: "http://soapinterop.org/"
1138
- Content-Type: text/xml; charset=utf-8
1139
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1140
- Date: Sat Jul 23 21:22:01 JST 2005
1141
- Content-Length: 998
1142
- Host: www.dolphinharbor.org
1143
-
1144
- <?xml version="1.0" encoding="utf-8" ?>
1145
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1146
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1147
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1148
- <env:Body>
1149
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1150
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1151
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1152
- xsi:type="n2:SOAPArrayStruct">
1153
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
1154
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1155
- xsi:type="n3:Array"
1156
- n3:arrayType="xsd:anyType[3]">
1157
- <item xsi:type="xsd:string">2</item>
1158
- <item xsi:type="xsd:string">2.2</item>
1159
- <item xsi:type="xsd:string">b</item>
1160
- </varArray>
1161
- <varInt xsi:type="xsd:int">1</varInt>
1162
- <varString xsi:type="xsd:string">a</varString>
1163
- </inputStruct>
1164
- </n1:echoNestedArray>
1165
- </env:Body>
1166
- </env:Envelope>
1167
-
1168
- = Response
1169
-
1170
- HTTP/1.1 404 Not Found
1171
- Content-Length: 1635
1172
- Content-Type: text/html
1173
- Server: Microsoft-IIS/6.0
1174
- X-Powered-By: ASP.NET
1175
- Date: Sat, 23 Jul 2005 12:23:50 GMT
1176
-
1177
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
1178
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
1179
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
1180
- <STYLE type="text/css">
1181
- BODY { font: 8pt/12pt verdana }
1182
- H1 { font: 13pt/15pt verdana }
1183
- H2 { font: 8pt/12pt verdana }
1184
- A:link { color: red }
1185
- A:visited { color: maroon }
1186
- </STYLE>
1187
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
1188
-
1189
- <h1>The page cannot be found</h1>
1190
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
1191
- <hr>
1192
- <p>Please try the following:</p>
1193
- <ul>
1194
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
1195
- <li>If you reached this page by clicking a link, contact
1196
- the Web site administrator to alert them that the link is incorrectly formatted.
1197
- </li>
1198
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
1199
- </ul>
1200
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
1201
- <hr>
1202
- <p>Technical Information (for support personnel)</p>
1203
- <ul>
1204
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
1205
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
1206
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
1207
- </ul>
1208
-
1209
- </TD></TR></TABLE></BODY></HTML>
1210
-
1211
-
1212
-
1213
- ##########
1214
- # echoNestedArray (multi-ref)
1215
-
1216
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
1217
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
1218
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
1219
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
1220
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1221
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1222
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
1223
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
1224
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1938:in `doTestGroupB'
1225
- clientSpray2001.rb:16
1226
-
1227
- Wire dump:
1228
-
1229
- = Request
1230
-
1231
- POST /services/interopB2001 HTTP/1.1
1232
- SOAPAction: "http://soapinterop.org/"
1233
- Content-Type: text/xml; charset=utf-8
1234
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1235
- Date: Sat Jul 23 21:22:02 JST 2005
1236
- Content-Length: 1083
1237
- Host: www.dolphinharbor.org
1238
-
1239
- <?xml version="1.0" encoding="utf-8" ?>
1240
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1241
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1242
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1243
- <env:Body>
1244
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1245
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1246
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1247
- xsi:type="n2:SOAPArrayStruct">
1248
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
1249
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1250
- xsi:type="n3:Array"
1251
- n3:arrayType="xsd:string[3]">
1252
- <item>2</item>
1253
- <item href="#id-605824600"></item>
1254
- <item>b</item>
1255
- </varArray>
1256
- <varInt xsi:type="xsd:int">1</varInt>
1257
- <varString href="#id-605824600"></varString>
1258
- </inputStruct>
1259
- </n1:echoNestedArray>
1260
- <item id="id-605824600"
1261
- xsi:type="xsd:string"
1262
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
1263
- </env:Body>
1264
- </env:Envelope>
1265
-
1266
- = Response
1267
-
1268
- HTTP/1.1 404 Not Found
1269
- Content-Length: 1635
1270
- Content-Type: text/html
1271
- Server: Microsoft-IIS/6.0
1272
- X-Powered-By: ASP.NET
1273
- Date: Sat, 23 Jul 2005 12:23:50 GMT
1274
-
1275
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
1276
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
1277
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
1278
- <STYLE type="text/css">
1279
- BODY { font: 8pt/12pt verdana }
1280
- H1 { font: 13pt/15pt verdana }
1281
- H2 { font: 8pt/12pt verdana }
1282
- A:link { color: red }
1283
- A:visited { color: maroon }
1284
- </STYLE>
1285
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
1286
-
1287
- <h1>The page cannot be found</h1>
1288
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
1289
- <hr>
1290
- <p>Please try the following:</p>
1291
- <ul>
1292
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
1293
- <li>If you reached this page by clicking a link, contact
1294
- the Web site administrator to alert them that the link is incorrectly formatted.
1295
- </li>
1296
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
1297
- </ul>
1298
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
1299
- <hr>
1300
- <p>Technical Information (for support personnel)</p>
1301
- <ul>
1302
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
1303
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
1304
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
1305
- </ul>
1306
-
1307
- </TD></TR></TABLE></BODY></HTML>
1308
-
1309
-
1310
-
1311
- ##########
1312
- # echoNestedArray (multi-ref: varString == varArray[1])
1313
-
1314
- Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
1315
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
1316
- /usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
1317
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
1318
- /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1319
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1320
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
1321
- /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
1322
- /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1949:in `doTestGroupB'
1323
- clientSpray2001.rb:16
1324
-
1325
- Wire dump:
1326
-
1327
- = Request
1328
-
1329
- POST /services/interopB2001 HTTP/1.1
1330
- SOAPAction: "http://soapinterop.org/"
1331
- Content-Type: text/xml; charset=utf-8
1332
- User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1333
- Date: Sat Jul 23 21:22:02 JST 2005
1334
- Content-Length: 1083
1335
- Host: www.dolphinharbor.org
1336
-
1337
- <?xml version="1.0" encoding="utf-8" ?>
1338
- <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1339
- xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1340
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1341
- <env:Body>
1342
- <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1343
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1344
- <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1345
- xsi:type="n2:SOAPArrayStruct">
1346
- <varFloat xsi:type="xsd:float">+1.1</varFloat>
1347
- <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1348
- xsi:type="n3:Array"
1349
- n3:arrayType="xsd:string[3]">
1350
- <item>2</item>
1351
- <item href="#id-605835820"></item>
1352
- <item>b</item>
1353
- </varArray>
1354
- <varInt xsi:type="xsd:int">1</varInt>
1355
- <varString href="#id-605835820"></varString>
1356
- </inputStruct>
1357
- </n1:echoNestedArray>
1358
- <item id="id-605835820"
1359
- xsi:type="xsd:string"
1360
- env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
1361
- </env:Body>
1362
- </env:Envelope>
1363
-
1364
- = Response
1365
-
1366
- HTTP/1.1 404 Not Found
1367
- Content-Length: 1635
1368
- Content-Type: text/html
1369
- Server: Microsoft-IIS/6.0
1370
- X-Powered-By: ASP.NET
1371
- Date: Sat, 23 Jul 2005 12:23:51 GMT
1372
-
1373
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
1374
- <HTML><HEAD><TITLE>The page cannot be found</TITLE>
1375
- <META HTTP-EQUIV="Content-Type" Content="text/html; charset=Windows-1252">
1376
- <STYLE type="text/css">
1377
- BODY { font: 8pt/12pt verdana }
1378
- H1 { font: 13pt/15pt verdana }
1379
- H2 { font: 8pt/12pt verdana }
1380
- A:link { color: red }
1381
- A:visited { color: maroon }
1382
- </STYLE>
1383
- </HEAD><BODY><TABLE width=500 border=0 cellspacing=10><TR><TD>
1384
-
1385
- <h1>The page cannot be found</h1>
1386
- The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.
1387
- <hr>
1388
- <p>Please try the following:</p>
1389
- <ul>
1390
- <li>Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.</li>
1391
- <li>If you reached this page by clicking a link, contact
1392
- the Web site administrator to alert them that the link is incorrectly formatted.
1393
- </li>
1394
- <li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
1395
- </ul>
1396
- <h2>HTTP Error 404 - File or directory not found.<br>Internet Information Services (IIS)</h2>
1397
- <hr>
1398
- <p>Technical Information (for support personnel)</p>
1399
- <ul>
1400
- <li>Go to <a href="http://go.microsoft.com/fwlink/?linkid=8180">Microsoft Product Support Services</a> and perform a title search for the words <b>HTTP</b> and <b>404</b>.</li>
1401
- <li>Open <b>IIS Help</b>, which is accessible in IIS Manager (inetmgr),
1402
- and search for topics titled <b>Web Site Setup</b>, <b>Common Administrative Tasks</b>, and <b>About Custom Error Messages</b>.</li>
1403
- </ul>
1404
-
1405
- </TD></TR></TABLE></BODY></HTML>
1406
-
1407
-
1408
-