soap4r 1.5.5.20061022

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (440) hide show
  1. data/bin/wsdl2ruby.rb +131 -0
  2. data/bin/xsd2ruby.rb +82 -0
  3. data/lib/soap/XMLSchemaDatatypes.rb +9 -0
  4. data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
  5. data/lib/soap/attachment.rb +108 -0
  6. data/lib/soap/baseData.rb +992 -0
  7. data/lib/soap/cgistub.rb +9 -0
  8. data/lib/soap/charset.rb +9 -0
  9. data/lib/soap/compat.rb +182 -0
  10. data/lib/soap/driver.rb +9 -0
  11. data/lib/soap/element.rb +266 -0
  12. data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
  13. data/lib/soap/encodingstyle/handler.rb +109 -0
  14. data/lib/soap/encodingstyle/literalHandler.rb +241 -0
  15. data/lib/soap/encodingstyle/soapHandler.rb +598 -0
  16. data/lib/soap/generator.rb +264 -0
  17. data/lib/soap/header/handler.rb +60 -0
  18. data/lib/soap/header/handlerset.rb +70 -0
  19. data/lib/soap/header/simplehandler.rb +44 -0
  20. data/lib/soap/httpconfigloader.rb +119 -0
  21. data/lib/soap/mapping.rb +12 -0
  22. data/lib/soap/mapping/encodedregistry.rb +531 -0
  23. data/lib/soap/mapping/factory.rb +372 -0
  24. data/lib/soap/mapping/literalregistry.rb +321 -0
  25. data/lib/soap/mapping/mapping.rb +561 -0
  26. data/lib/soap/mapping/registry.rb +258 -0
  27. data/lib/soap/mapping/rubytypeFactory.rb +475 -0
  28. data/lib/soap/mapping/typeMap.rb +82 -0
  29. data/lib/soap/mapping/wsdlencodedregistry.rb +253 -0
  30. data/lib/soap/mapping/wsdlliteralregistry.rb +246 -0
  31. data/lib/soap/mappingRegistry.rb +9 -0
  32. data/lib/soap/marshal.rb +59 -0
  33. data/lib/soap/mimemessage.rb +241 -0
  34. data/lib/soap/namespace.rb +9 -0
  35. data/lib/soap/netHttpClient.rb +204 -0
  36. data/lib/soap/parser.rb +251 -0
  37. data/lib/soap/processor.rb +66 -0
  38. data/lib/soap/property.rb +333 -0
  39. data/lib/soap/proxy.rb +14 -0
  40. data/lib/soap/qname.rb +9 -0
  41. data/lib/soap/rpc/cgistub.rb +214 -0
  42. data/lib/soap/rpc/driver.rb +245 -0
  43. data/lib/soap/rpc/element.rb +330 -0
  44. data/lib/soap/rpc/httpserver.rb +143 -0
  45. data/lib/soap/rpc/proxy.rb +563 -0
  46. data/lib/soap/rpc/router.rb +602 -0
  47. data/lib/soap/rpc/rpc.rb +25 -0
  48. data/lib/soap/rpc/soaplet.rb +162 -0
  49. data/lib/soap/rpc/standaloneServer.rb +43 -0
  50. data/lib/soap/rpcRouter.rb +9 -0
  51. data/lib/soap/rpcUtils.rb +9 -0
  52. data/lib/soap/server.rb +9 -0
  53. data/lib/soap/soap.rb +150 -0
  54. data/lib/soap/standaloneServer.rb +9 -0
  55. data/lib/soap/streamHandler.rb +258 -0
  56. data/lib/soap/wsdlDriver.rb +580 -0
  57. data/lib/wsdl/binding.rb +65 -0
  58. data/lib/wsdl/data.rb +64 -0
  59. data/lib/wsdl/definitions.rb +250 -0
  60. data/lib/wsdl/documentation.rb +32 -0
  61. data/lib/wsdl/import.rb +80 -0
  62. data/lib/wsdl/importer.rb +38 -0
  63. data/lib/wsdl/info.rb +39 -0
  64. data/lib/wsdl/message.rb +54 -0
  65. data/lib/wsdl/operation.rb +175 -0
  66. data/lib/wsdl/operationBinding.rb +116 -0
  67. data/lib/wsdl/param.rb +85 -0
  68. data/lib/wsdl/parser.rb +163 -0
  69. data/lib/wsdl/part.rb +52 -0
  70. data/lib/wsdl/port.rb +84 -0
  71. data/lib/wsdl/portType.rb +75 -0
  72. data/lib/wsdl/service.rb +61 -0
  73. data/lib/wsdl/soap/address.rb +40 -0
  74. data/lib/wsdl/soap/binding.rb +49 -0
  75. data/lib/wsdl/soap/body.rb +56 -0
  76. data/lib/wsdl/soap/cgiStubCreator.rb +88 -0
  77. data/lib/wsdl/soap/classDefCreator.rb +340 -0
  78. data/lib/wsdl/soap/classDefCreatorSupport.rb +131 -0
  79. data/lib/wsdl/soap/clientSkeltonCreator.rb +93 -0
  80. data/lib/wsdl/soap/complexType.rb +166 -0
  81. data/lib/wsdl/soap/data.rb +42 -0
  82. data/lib/wsdl/soap/definitions.rb +151 -0
  83. data/lib/wsdl/soap/driverCreator.rb +110 -0
  84. data/lib/wsdl/soap/element.rb +28 -0
  85. data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +117 -0
  86. data/lib/wsdl/soap/fault.rb +56 -0
  87. data/lib/wsdl/soap/header.rb +86 -0
  88. data/lib/wsdl/soap/headerfault.rb +56 -0
  89. data/lib/wsdl/soap/literalMappingRegistryCreator.rb +188 -0
  90. data/lib/wsdl/soap/mappingRegistryCreator.rb +53 -0
  91. data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +233 -0
  92. data/lib/wsdl/soap/methodDefCreator.rb +253 -0
  93. data/lib/wsdl/soap/operation.rb +122 -0
  94. data/lib/wsdl/soap/servantSkeltonCreator.rb +78 -0
  95. data/lib/wsdl/soap/standaloneServerStubCreator.rb +98 -0
  96. data/lib/wsdl/soap/wsdl2ruby.rb +196 -0
  97. data/lib/wsdl/types.rb +44 -0
  98. data/lib/wsdl/wsdl.rb +23 -0
  99. data/lib/wsdl/xmlSchema/all.rb +24 -0
  100. data/lib/wsdl/xmlSchema/annotation.rb +34 -0
  101. data/lib/wsdl/xmlSchema/any.rb +56 -0
  102. data/lib/wsdl/xmlSchema/attribute.rb +123 -0
  103. data/lib/wsdl/xmlSchema/choice.rb +55 -0
  104. data/lib/wsdl/xmlSchema/complexContent.rb +88 -0
  105. data/lib/wsdl/xmlSchema/complexExtension.rb +104 -0
  106. data/lib/wsdl/xmlSchema/complexRestriction.rb +92 -0
  107. data/lib/wsdl/xmlSchema/complexType.rb +152 -0
  108. data/lib/wsdl/xmlSchema/content.rb +74 -0
  109. data/lib/wsdl/xmlSchema/data.rb +90 -0
  110. data/lib/wsdl/xmlSchema/element.rb +158 -0
  111. data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
  112. data/lib/wsdl/xmlSchema/import.rb +65 -0
  113. data/lib/wsdl/xmlSchema/importer.rb +87 -0
  114. data/lib/wsdl/xmlSchema/include.rb +54 -0
  115. data/lib/wsdl/xmlSchema/length.rb +35 -0
  116. data/lib/wsdl/xmlSchema/list.rb +48 -0
  117. data/lib/wsdl/xmlSchema/maxlength.rb +35 -0
  118. data/lib/wsdl/xmlSchema/minlength.rb +35 -0
  119. data/lib/wsdl/xmlSchema/parser.rb +166 -0
  120. data/lib/wsdl/xmlSchema/pattern.rb +36 -0
  121. data/lib/wsdl/xmlSchema/schema.rb +144 -0
  122. data/lib/wsdl/xmlSchema/sequence.rb +51 -0
  123. data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
  124. data/lib/wsdl/xmlSchema/simpleExtension.rb +54 -0
  125. data/lib/wsdl/xmlSchema/simpleRestriction.rb +91 -0
  126. data/lib/wsdl/xmlSchema/simpleType.rb +80 -0
  127. data/lib/wsdl/xmlSchema/unique.rb +34 -0
  128. data/lib/wsdl/xmlSchema/xsd2ruby.rb +107 -0
  129. data/lib/xsd/charset.rb +187 -0
  130. data/lib/xsd/codegen.rb +12 -0
  131. data/lib/xsd/codegen/classdef.rb +203 -0
  132. data/lib/xsd/codegen/commentdef.rb +34 -0
  133. data/lib/xsd/codegen/gensupport.rb +168 -0
  134. data/lib/xsd/codegen/methoddef.rb +70 -0
  135. data/lib/xsd/codegen/moduledef.rb +191 -0
  136. data/lib/xsd/datatypes.rb +1282 -0
  137. data/lib/xsd/datatypes1999.rb +20 -0
  138. data/lib/xsd/iconvcharset.rb +33 -0
  139. data/lib/xsd/mapping.rb +42 -0
  140. data/lib/xsd/namedelements.rb +124 -0
  141. data/lib/xsd/ns.rb +146 -0
  142. data/lib/xsd/qname.rb +78 -0
  143. data/lib/xsd/xmlparser.rb +61 -0
  144. data/lib/xsd/xmlparser/parser.rb +96 -0
  145. data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
  146. data/lib/xsd/xmlparser/xmlparser.rb +50 -0
  147. data/lib/xsd/xmlparser/xmlscanner.rb +147 -0
  148. data/test/16runner.rb +68 -0
  149. data/test/interopR2/README.txt +2 -0
  150. data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
  151. data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
  152. data/test/interopR2/base.rb +288 -0
  153. data/test/interopR2/client.NetRemoting.rb +17 -0
  154. data/test/interopR2/client.NetRemoting.rb.result +3410 -0
  155. data/test/interopR2/client.NetRemoting_Base.log +6279 -0
  156. data/test/interopR2/client.NetRemoting_GroupB.log +1188 -0
  157. data/test/interopR2/client.rb +1228 -0
  158. data/test/interopR2/client4S4C.rb +15 -0
  159. data/test/interopR2/client4S4C2.rb +14 -0
  160. data/test/interopR2/client4S4C2_Base.log +4955 -0
  161. data/test/interopR2/client4S4C2_GroupB.log +1000 -0
  162. data/test/interopR2/client4S4C_Base.log +4635 -0
  163. data/test/interopR2/client4S4C_GroupB.log +900 -0
  164. data/test/interopR2/clientASP.NET.rb +17 -0
  165. data/test/interopR2/clientASP.NET_Base.log +5468 -0
  166. data/test/interopR2/clientASP.NET_GroupB.log +977 -0
  167. data/test/interopR2/clientApacheAxis.rb +16 -0
  168. data/test/interopR2/clientApacheAxis_Base.log +3171 -0
  169. data/test/interopR2/clientApacheAxis_GroupB.log +498 -0
  170. data/test/interopR2/clientApacheSOAP.rb +17 -0
  171. data/test/interopR2/clientApacheSOAP_Base.log +3171 -0
  172. data/test/interopR2/clientBEAWebLogic.rb +17 -0
  173. data/test/interopR2/clientBEAWebLogic_Base.log +3171 -0
  174. data/test/interopR2/clientBEAWebLogic_GroupB.log +498 -0
  175. data/test/interopR2/clientBase.rb +1970 -0
  176. data/test/interopR2/clientCapeConnect.rb +18 -0
  177. data/test/interopR2/clientCapeConnect_Base.log +2126 -0
  178. data/test/interopR2/clientDelphi.rb +19 -0
  179. data/test/interopR2/clientDelphi_Base.log +0 -0
  180. data/test/interopR2/clientEasySoap.rb +14 -0
  181. data/test/interopR2/clientEasySoap_Base.log +6187 -0
  182. data/test/interopR2/clientEasySoap_GroupB.log +1076 -0
  183. data/test/interopR2/clientFrontier.rb +25 -0
  184. data/test/interopR2/clientFrontier_Base.log +5188 -0
  185. data/test/interopR2/clientGLUE.rb +32 -0
  186. data/test/interopR2/clientHP.rb +13 -0
  187. data/test/interopR2/clientHP_Base.log +3171 -0
  188. data/test/interopR2/clientHP_GroupB.log +498 -0
  189. data/test/interopR2/clientJAX-RPC.rb +19 -0
  190. data/test/interopR2/clientJSOAP.rb +14 -0
  191. data/test/interopR2/clientJSOAP_Base.log +4465 -0
  192. data/test/interopR2/clientJSOAP_GroupB.log +824 -0
  193. data/test/interopR2/clientKafkaXSLT.rb +15 -0
  194. data/test/interopR2/clientKafkaXSLT_Base.log +10299 -0
  195. data/test/interopR2/clientKafkaXSLT_GroupB.log +1739 -0
  196. data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
  197. data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +4805 -0
  198. data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +871 -0
  199. data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
  200. data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +5076 -0
  201. data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +908 -0
  202. data/test/interopR2/clientNuSOAP.rb +19 -0
  203. data/test/interopR2/clientNuSOAP_Base.log +5076 -0
  204. data/test/interopR2/clientNuSOAP_GroupB.log +958 -0
  205. data/test/interopR2/clientNuWave.rb +15 -0
  206. data/test/interopR2/clientNuWave_Base.log +2019 -0
  207. data/test/interopR2/clientOpenLink.rb +15 -0
  208. data/test/interopR2/clientOpenLink_Base.log +6171 -0
  209. data/test/interopR2/clientOpenLink_GroupB.log +1094 -0
  210. data/test/interopR2/clientOracle.rb +15 -0
  211. data/test/interopR2/clientOracle_Base.log +5594 -0
  212. data/test/interopR2/clientPEAR.rb +18 -0
  213. data/test/interopR2/clientPEAR_Base.log +6261 -0
  214. data/test/interopR2/clientPEAR_GroupB.log +1106 -0
  215. data/test/interopR2/clientPhalanx.rb +18 -0
  216. data/test/interopR2/clientPhalanx_Base.log +41036 -0
  217. data/test/interopR2/clientPhalanx_GroupB.log +6519 -0
  218. data/test/interopR2/clientSIMACE.rb +18 -0
  219. data/test/interopR2/clientSIMACE_Base.log +6171 -0
  220. data/test/interopR2/clientSIMACE_GroupB.log +1093 -0
  221. data/test/interopR2/clientSOAP4R.rb +18 -0
  222. data/test/interopR2/clientSOAP4R.rb.result +3409 -0
  223. data/test/interopR2/clientSOAP4R_Base.log +6366 -0
  224. data/test/interopR2/clientSOAP4R_GroupB.log +1112 -0
  225. data/test/interopR2/clientSOAP__Lite.rb +14 -0
  226. data/test/interopR2/clientSQLData.rb +18 -0
  227. data/test/interopR2/clientSQLData_Base.log +4857 -0
  228. data/test/interopR2/clientSQLData_GroupB.log +770 -0
  229. data/test/interopR2/clientSilverStream.rb +17 -0
  230. data/test/interopR2/clientSilverStream_Base.log +3171 -0
  231. data/test/interopR2/clientSpray2001.rb +17 -0
  232. data/test/interopR2/clientSpray2001_Base.log +8187 -0
  233. data/test/interopR2/clientSpray2001_GroupB.log +1408 -0
  234. data/test/interopR2/clientSun.rb +19 -0
  235. data/test/interopR2/clientSun_Base.log +4641 -0
  236. data/test/interopR2/clientSun_GroupB.log +856 -0
  237. data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
  238. data/test/interopR2/clientVWOpentalkSoap_Base.log +5402 -0
  239. data/test/interopR2/clientVWOpentalkSoap_GroupB.log +972 -0
  240. data/test/interopR2/clientWASP.rb +19 -0
  241. data/test/interopR2/clientWASPC.rb +18 -0
  242. data/test/interopR2/clientWASPC_Base.log +4187 -0
  243. data/test/interopR2/clientWASPC_GroupB.log +763 -0
  244. data/test/interopR2/clientWASP_Base.log +5414 -0
  245. data/test/interopR2/clientWASP_GroupB.log +970 -0
  246. data/test/interopR2/clientWebMethods.rb +15 -0
  247. data/test/interopR2/clientWebMethods_Base.log +3075 -0
  248. data/test/interopR2/clientWebMethods_GroupB.log +483 -0
  249. data/test/interopR2/clientWhiteMesa.rb +28 -0
  250. data/test/interopR2/clientWhiteMesa_Base.log +4359 -0
  251. data/test/interopR2/clientWhiteMesa_GroupB.log +808 -0
  252. data/test/interopR2/clientWingfoot.rb +15 -0
  253. data/test/interopR2/clientWingfoot_Base.log +4445 -0
  254. data/test/interopR2/clientWingfoot_GroupB.log +848 -0
  255. data/test/interopR2/clientXMLBus.rb +19 -0
  256. data/test/interopR2/clientXMLBus_Base.log +3075 -0
  257. data/test/interopR2/clientXMLBus_GroupB.log +483 -0
  258. data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
  259. data/test/interopR2/clientXSOAP.rb +14 -0
  260. data/test/interopR2/clientXSOAP_Base.log +4445 -0
  261. data/test/interopR2/clientZSI.rb +19 -0
  262. data/test/interopR2/clienteSOAP.rb +18 -0
  263. data/test/interopR2/clienteSOAP_Base.log +8728 -0
  264. data/test/interopR2/clientgSOAP.rb +18 -0
  265. data/test/interopR2/clientgSOAP_Base.log +4689 -0
  266. data/test/interopR2/clientgSOAP_GroupB.log +1014 -0
  267. data/test/interopR2/clientkSOAP.rb +17 -0
  268. data/test/interopR2/clientkSOAP_Base.log +5625 -0
  269. data/test/interopR2/iSimonReg.rb +112 -0
  270. data/test/interopR2/interopResultBase.rb +114 -0
  271. data/test/interopR2/interopService.rb +247 -0
  272. data/test/interopR2/result_client.NetRemoting.txt +4593 -0
  273. data/test/interopR2/rwikiInteropService.rb +105 -0
  274. data/test/interopR2/server.cgi +270 -0
  275. data/test/interopR2/server.rb +274 -0
  276. data/test/interopR2/simonReg.rb +123 -0
  277. data/test/interopR2/test.sh +49 -0
  278. data/test/interopR4/client.rb +112 -0
  279. data/test/runner.rb +9 -0
  280. data/test/sm11/classDef.rb +156 -0
  281. data/test/sm11/client.rb +542 -0
  282. data/test/sm11/driver.rb +183 -0
  283. data/test/sm11/servant.rb +1067 -0
  284. data/test/sm11/server.rb +25 -0
  285. data/test/soap/asp.net/hello.wsdl +96 -0
  286. data/test/soap/asp.net/test_aspdotnet.rb +112 -0
  287. data/test/soap/calc/calc.rb +17 -0
  288. data/test/soap/calc/calc2.rb +29 -0
  289. data/test/soap/calc/server.cgi +13 -0
  290. data/test/soap/calc/server.rb +17 -0
  291. data/test/soap/calc/server2.rb +20 -0
  292. data/test/soap/calc/test_calc.rb +49 -0
  293. data/test/soap/calc/test_calc2.rb +53 -0
  294. data/test/soap/calc/test_calc_cgi.rb +69 -0
  295. data/test/soap/fault/test_customfault.rb +58 -0
  296. data/test/soap/header/server.cgi +119 -0
  297. data/test/soap/header/test_authheader.rb +240 -0
  298. data/test/soap/header/test_authheader_cgi.rb +121 -0
  299. data/test/soap/header/test_simplehandler.rb +116 -0
  300. data/test/soap/helloworld/hw_s.rb +16 -0
  301. data/test/soap/helloworld/test_helloworld.rb +41 -0
  302. data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
  303. data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
  304. data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
  305. data/test/soap/literalArrayMapping/test_definedarray.rb +36 -0
  306. data/test/soap/marshal/marshaltestlib.rb +494 -0
  307. data/test/soap/marshal/test_digraph.rb +56 -0
  308. data/test/soap/marshal/test_marshal.rb +26 -0
  309. data/test/soap/marshal/test_struct.rb +47 -0
  310. data/test/soap/ssl/README +1 -0
  311. data/test/soap/ssl/ca.cert +23 -0
  312. data/test/soap/ssl/client.cert +19 -0
  313. data/test/soap/ssl/client.key +15 -0
  314. data/test/soap/ssl/server.cert +19 -0
  315. data/test/soap/ssl/server.key +15 -0
  316. data/test/soap/ssl/sslsvr.rb +57 -0
  317. data/test/soap/ssl/subca.cert +21 -0
  318. data/test/soap/ssl/test_ssl.rb +245 -0
  319. data/test/soap/struct/test_struct.rb +77 -0
  320. data/test/soap/styleuse/client.rb +20 -0
  321. data/test/soap/styleuse/server.rb +86 -0
  322. data/test/soap/swa/test_file.rb +73 -0
  323. data/test/soap/test_basetype.rb +976 -0
  324. data/test/soap/test_custommap.rb +108 -0
  325. data/test/soap/test_empty.rb +79 -0
  326. data/test/soap/test_envelopenamespace.rb +92 -0
  327. data/test/soap/test_httpconfigloader.rb +39 -0
  328. data/test/soap/test_mapping.rb +59 -0
  329. data/test/soap/test_no_indent.rb +86 -0
  330. data/test/soap/test_property.rb +424 -0
  331. data/test/soap/test_response_as_xml.rb +95 -0
  332. data/test/soap/test_soapelement.rb +120 -0
  333. data/test/soap/test_streamhandler.rb +262 -0
  334. data/test/soap/test_styleuse.rb +333 -0
  335. data/test/soap/wsdlDriver/README.txt +2 -0
  336. data/test/soap/wsdlDriver/calc.wsdl +126 -0
  337. data/test/soap/wsdlDriver/document.wsdl +54 -0
  338. data/test/soap/wsdlDriver/echo_version.rb +29 -0
  339. data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
  340. data/test/soap/wsdlDriver/test_calc.rb +100 -0
  341. data/test/soap/wsdlDriver/test_document.rb +78 -0
  342. data/test/soap/wsdlDriver/test_simpletype.rb +87 -0
  343. data/test/wsdl/abstract/abstract.wsdl +97 -0
  344. data/test/wsdl/abstract/test_abstract.rb +130 -0
  345. data/test/wsdl/any/any.wsdl +51 -0
  346. data/test/wsdl/any/expectedDriver.rb +46 -0
  347. data/test/wsdl/any/expectedEcho.rb +18 -0
  348. data/test/wsdl/any/expectedService.rb +42 -0
  349. data/test/wsdl/any/test_any.rb +193 -0
  350. data/test/wsdl/axisArray/axisArray.wsdl +60 -0
  351. data/test/wsdl/axisArray/itemList.rb +14 -0
  352. data/test/wsdl/axisArray/test_axisarray.rb +69 -0
  353. data/test/wsdl/choice/choice.wsdl +91 -0
  354. data/test/wsdl/choice/test_choice.rb +134 -0
  355. data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
  356. data/test/wsdl/complexcontent/test_echo.rb +101 -0
  357. data/test/wsdl/datetime/DatetimeService.rb +44 -0
  358. data/test/wsdl/datetime/datetime.rb +0 -0
  359. data/test/wsdl/datetime/datetime.wsdl +45 -0
  360. data/test/wsdl/datetime/datetimeServant.rb +21 -0
  361. data/test/wsdl/datetime/test_datetime.rb +82 -0
  362. data/test/wsdl/document/array/double.wsdl +72 -0
  363. data/test/wsdl/document/array/test_array.rb +117 -0
  364. data/test/wsdl/document/document.wsdl +74 -0
  365. data/test/wsdl/document/number.wsdl +54 -0
  366. data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
  367. data/test/wsdl/document/test_nosoapaction.rb +109 -0
  368. data/test/wsdl/document/test_number.rb +99 -0
  369. data/test/wsdl/document/test_rpc.rb +211 -0
  370. data/test/wsdl/emptycomplextype.wsdl +31 -0
  371. data/test/wsdl/list/list.wsdl +93 -0
  372. data/test/wsdl/list/test_list.rb +134 -0
  373. data/test/wsdl/map/map.wsdl +92 -0
  374. data/test/wsdl/map/map.xml +43 -0
  375. data/test/wsdl/map/test_map.rb +99 -0
  376. data/test/wsdl/marshal/person.wsdl +21 -0
  377. data/test/wsdl/marshal/person_org.rb +18 -0
  378. data/test/wsdl/marshal/test_wsdlmarshal.rb +79 -0
  379. data/test/wsdl/multiplefault.wsdl +68 -0
  380. data/test/wsdl/overload/overload.wsdl +80 -0
  381. data/test/wsdl/overload/test_overload.rb +118 -0
  382. data/test/wsdl/qualified/lp.wsdl +47 -0
  383. data/test/wsdl/qualified/lp.xsd +26 -0
  384. data/test/wsdl/qualified/np.wsdl +51 -0
  385. data/test/wsdl/qualified/test_qualified.rb +145 -0
  386. data/test/wsdl/qualified/test_unqualified.rb +159 -0
  387. data/test/wsdl/raa/RAA.rb +120 -0
  388. data/test/wsdl/raa/RAAServant.rb +107 -0
  389. data/test/wsdl/raa/RAAService.rb +120 -0
  390. data/test/wsdl/raa/README.txt +8 -0
  391. data/test/wsdl/raa/raa.wsdl +264 -0
  392. data/test/wsdl/raa/server.rb +103 -0
  393. data/test/wsdl/raa/test_raa.rb +91 -0
  394. data/test/wsdl/ref/expectedProduct.rb +158 -0
  395. data/test/wsdl/ref/product.wsdl +147 -0
  396. data/test/wsdl/ref/test_ref.rb +289 -0
  397. data/test/wsdl/rpc/rpc.wsdl +83 -0
  398. data/test/wsdl/rpc/test-rpc-lit.wsdl +364 -0
  399. data/test/wsdl/rpc/test_rpc.rb +173 -0
  400. data/test/wsdl/rpc/test_rpc_lit.rb +407 -0
  401. data/test/wsdl/simplecontent/simplecontent.wsdl +83 -0
  402. data/test/wsdl/simplecontent/test_simplecontent.rb +116 -0
  403. data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
  404. data/test/wsdl/simpletype/rpc/expectedDriver.rb +55 -0
  405. data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +19 -0
  406. data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
  407. data/test/wsdl/simpletype/rpc/expectedService.rb +51 -0
  408. data/test/wsdl/simpletype/rpc/rpc.wsdl +80 -0
  409. data/test/wsdl/simpletype/rpc/test_rpc.rb +62 -0
  410. data/test/wsdl/simpletype/simpletype.wsdl +95 -0
  411. data/test/wsdl/simpletype/test_simpletype.rb +99 -0
  412. data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
  413. data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
  414. data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +19 -0
  415. data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
  416. data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +55 -0
  417. data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
  418. data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +44 -0
  419. data/test/wsdl/soap/wsdl2ruby/expectedService.rb +51 -0
  420. data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
  421. data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +31 -0
  422. data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
  423. data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
  424. data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
  425. data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +96 -0
  426. data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +79 -0
  427. data/test/wsdl/soaptype/soaptype.wsdl +61 -0
  428. data/test/wsdl/soaptype/test_soaptype.rb +160 -0
  429. data/test/wsdl/test_emptycomplextype.rb +21 -0
  430. data/test/wsdl/test_fault.rb +50 -0
  431. data/test/wsdl/test_multiplefault.rb +39 -0
  432. data/test/xsd/codegen/test_classdef.rb +214 -0
  433. data/test/xsd/noencoding.xml +4 -0
  434. data/test/xsd/test_noencoding.rb +32 -0
  435. data/test/xsd/test_ns.rb +20 -0
  436. data/test/xsd/test_xmlschemaparser.rb +22 -0
  437. data/test/xsd/test_xsd.rb +1523 -0
  438. data/test/xsd/xmllang.xml +43 -0
  439. data/test/xsd/xmlschema.xml +12 -0
  440. metadata +539 -0
@@ -0,0 +1,1106 @@
1
+ File: clientPEAR_GroupB.log - Wiredumps for SOAP4R client / PEAR server.
2
+ Date: Sat Jul 23 21:14:03 JST 2005
3
+
4
+ ##########
5
+ # echoStructAsSimpleTypes
6
+
7
+ Result: Exception: response is not a SOAP envelope: <br />
8
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
9
+ <br />
10
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
11
+ (SOAP::ResponseFormatError)
12
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
13
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
14
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
15
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
16
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
17
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
18
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1676:in `doTestGroupB'
19
+ clientPEAR.rb:17
20
+
21
+ Wire dump:
22
+
23
+ = Request
24
+
25
+ ! CONNECTION ESTABLISHED
26
+ POST /soap_interop/server_round2.php HTTP/1.1
27
+ SOAPAction: "http://soapinterop.org/"
28
+ Content-Type: text/xml; charset=utf-8
29
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
30
+ Date: Sat Jul 23 21:14:04 JST 2005
31
+ Content-Length: 700
32
+ Host: www.caraveo.com
33
+
34
+ <?xml version="1.0" encoding="utf-8" ?>
35
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
36
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
37
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
38
+ <env:Body>
39
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
40
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
41
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
42
+ xsi:type="n2:SOAPStruct">
43
+ <varInt xsi:type="xsd:int">1</varInt>
44
+ <varString xsi:type="xsd:string">a</varString>
45
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
46
+ </inputStruct>
47
+ </n1:echoStructAsSimpleTypes>
48
+ </env:Body>
49
+ </env:Envelope>
50
+
51
+ = Response
52
+
53
+ HTTP/1.1 200 OK
54
+ Date: Sat, 23 Jul 2005 12:15:47 GMT
55
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
56
+ X-Powered-By: PHP/4.3.11
57
+ Transfer-Encoding: chunked
58
+ Content-Type: text/html
59
+
60
+ bb
61
+ <br />
62
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
63
+
64
+ 108
65
+ <br />
66
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
67
+
68
+ 0
69
+
70
+
71
+
72
+
73
+ ##########
74
+ # echoStructAsSimpleTypes (nil)
75
+
76
+ Result: Exception: response is not a SOAP envelope: <br />
77
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
78
+ <br />
79
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
80
+ (SOAP::ResponseFormatError)
81
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
82
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
83
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
84
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
85
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
86
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
87
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1687:in `doTestGroupB'
88
+ clientPEAR.rb:17
89
+
90
+ Wire dump:
91
+
92
+ = Request
93
+
94
+ POST /soap_interop/server_round2.php HTTP/1.1
95
+ SOAPAction: "http://soapinterop.org/"
96
+ Content-Type: text/xml; charset=utf-8
97
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
98
+ Date: Sat Jul 23 21:14:04 JST 2005
99
+ Content-Length: 677
100
+ Host: www.caraveo.com
101
+
102
+ <?xml version="1.0" encoding="utf-8" ?>
103
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
104
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
105
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
106
+ <env:Body>
107
+ <n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
108
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
109
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
110
+ xsi:type="n2:SOAPStruct">
111
+ <varInt xsi:nil="true"></varInt>
112
+ <varString xsi:nil="true"></varString>
113
+ <varFloat xsi:nil="true"></varFloat>
114
+ </inputStruct>
115
+ </n1:echoStructAsSimpleTypes>
116
+ </env:Body>
117
+ </env:Envelope>
118
+
119
+ = Response
120
+
121
+ HTTP/1.1 200 OK
122
+ Date: Sat, 23 Jul 2005 12:15:48 GMT
123
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
124
+ X-Powered-By: PHP/4.3.11
125
+ Transfer-Encoding: chunked
126
+ Content-Type: text/html
127
+
128
+ bb
129
+ <br />
130
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
131
+
132
+ 108
133
+ <br />
134
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
135
+
136
+ 0
137
+
138
+
139
+
140
+
141
+ ##########
142
+ # echoSimpleTypesAsStruct
143
+
144
+ Result: Exception: response is not a SOAP envelope: <br />
145
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
146
+ <br />
147
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
148
+ (SOAP::ResponseFormatError)
149
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
150
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
151
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
152
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
153
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
154
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
155
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1698:in `doTestGroupB'
156
+ clientPEAR.rb:17
157
+
158
+ Wire dump:
159
+
160
+ = Request
161
+
162
+ POST /soap_interop/server_round2.php HTTP/1.1
163
+ SOAPAction: "http://soapinterop.org/"
164
+ Content-Type: text/xml; charset=utf-8
165
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
166
+ Date: Sat Jul 23 21:14:05 JST 2005
167
+ Content-Length: 600
168
+ Host: www.caraveo.com
169
+
170
+ <?xml version="1.0" encoding="utf-8" ?>
171
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
172
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
173
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
174
+ <env:Body>
175
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
176
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
177
+ <inputString xsi:type="xsd:string">a</inputString>
178
+ <inputInteger xsi:type="xsd:int">1</inputInteger>
179
+ <inputFloat xsi:type="xsd:float">+1.1</inputFloat>
180
+ </n1:echoSimpleTypesAsStruct>
181
+ </env:Body>
182
+ </env:Envelope>
183
+
184
+ = Response
185
+
186
+ HTTP/1.1 200 OK
187
+ Date: Sat, 23 Jul 2005 12:15:48 GMT
188
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
189
+ X-Powered-By: PHP/4.3.11
190
+ Transfer-Encoding: chunked
191
+ Content-Type: text/html
192
+
193
+ 1c3
194
+ <br />
195
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
196
+ <br />
197
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
198
+
199
+ 0
200
+
201
+
202
+
203
+
204
+ ##########
205
+ # echoSimpleTypesAsStruct (nil)
206
+
207
+ Result: Exception: response is not a SOAP envelope: <br />
208
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
209
+ <br />
210
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
211
+ (SOAP::ResponseFormatError)
212
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
213
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
214
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
215
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
216
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
217
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
218
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1708:in `doTestGroupB'
219
+ clientPEAR.rb:17
220
+
221
+ Wire dump:
222
+
223
+ = Request
224
+
225
+ POST /soap_interop/server_round2.php HTTP/1.1
226
+ SOAPAction: "http://soapinterop.org/"
227
+ Content-Type: text/xml; charset=utf-8
228
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
229
+ Date: Sat Jul 23 21:14:05 JST 2005
230
+ Content-Length: 577
231
+ Host: www.caraveo.com
232
+
233
+ <?xml version="1.0" encoding="utf-8" ?>
234
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
235
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
236
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
237
+ <env:Body>
238
+ <n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
239
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
240
+ <inputString xsi:nil="true"></inputString>
241
+ <inputInteger xsi:nil="true"></inputInteger>
242
+ <inputFloat xsi:nil="true"></inputFloat>
243
+ </n1:echoSimpleTypesAsStruct>
244
+ </env:Body>
245
+ </env:Envelope>
246
+
247
+ = Response
248
+
249
+ HTTP/1.1 200 OK
250
+ Date: Sat, 23 Jul 2005 12:15:49 GMT
251
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
252
+ X-Powered-By: PHP/4.3.11
253
+ Transfer-Encoding: chunked
254
+ Content-Type: text/html
255
+
256
+ bb
257
+ <br />
258
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
259
+
260
+ 108
261
+ <br />
262
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
263
+
264
+ 0
265
+
266
+
267
+
268
+
269
+ ##########
270
+ # echo2DStringArray
271
+
272
+ Result: Exception: response is not a SOAP envelope: <br />
273
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
274
+ <br />
275
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
276
+ (SOAP::ResponseFormatError)
277
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
278
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
279
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
280
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
281
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
282
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
283
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1747:in `doTestGroupB'
284
+ clientPEAR.rb:17
285
+
286
+ Wire dump:
287
+
288
+ = Request
289
+
290
+ POST /soap_interop/server_round2.php HTTP/1.1
291
+ SOAPAction: "http://soapinterop.org/"
292
+ Content-Type: text/xml; charset=utf-8
293
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
294
+ Date: Sat Jul 23 21:14:06 JST 2005
295
+ Content-Length: 889
296
+ Host: www.caraveo.com
297
+
298
+ <?xml version="1.0" encoding="utf-8" ?>
299
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
300
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
301
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
302
+ <env:Body>
303
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
304
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
305
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
306
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
307
+ xsi:type="n2:ArrayOfString2D"
308
+ n3:arrayType="xsd:string[3,3]">
309
+ <item>r0c0</item>
310
+ <item>r1c0</item>
311
+ <item>r2c0</item>
312
+ <item>r0c1</item>
313
+ <item>r1c1</item>
314
+ <item>r2c1</item>
315
+ <item>r0c2</item>
316
+ <item>r1c2</item>
317
+ <item>r2c2</item>
318
+ </input2DStringArray>
319
+ </n1:echo2DStringArray>
320
+ </env:Body>
321
+ </env:Envelope>
322
+
323
+ = Response
324
+
325
+ HTTP/1.1 200 OK
326
+ Date: Sat, 23 Jul 2005 12:15:49 GMT
327
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
328
+ X-Powered-By: PHP/4.3.11
329
+ Transfer-Encoding: chunked
330
+ Content-Type: text/html
331
+
332
+ bb
333
+ <br />
334
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
335
+
336
+ 108
337
+ <br />
338
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
339
+
340
+ 0
341
+
342
+
343
+
344
+
345
+ ##########
346
+ # echo2DStringArray (anyType array)
347
+
348
+ Result: Exception: response is not a SOAP envelope: <br />
349
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
350
+ <br />
351
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
352
+ (SOAP::ResponseFormatError)
353
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
354
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
355
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
356
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
357
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
358
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
359
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1765:in `doTestGroupB'
360
+ clientPEAR.rb:17
361
+
362
+ Wire dump:
363
+
364
+ = Request
365
+
366
+ POST /soap_interop/server_round2.php HTTP/1.1
367
+ SOAPAction: "http://soapinterop.org/"
368
+ Content-Type: text/xml; charset=utf-8
369
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
370
+ Date: Sat Jul 23 21:14:06 JST 2005
371
+ Content-Length: 1088
372
+ Host: www.caraveo.com
373
+
374
+ <?xml version="1.0" encoding="utf-8" ?>
375
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
376
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
377
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
378
+ <env:Body>
379
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
380
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
381
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
382
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
383
+ xsi:type="n2:ArrayOfString2D"
384
+ n3:arrayType="xsd:anyType[3,3]">
385
+ <item xsi:type="xsd:string">r0c0</item>
386
+ <item xsi:type="xsd:string">r0c1</item>
387
+ <item xsi:type="xsd:string">r0c2</item>
388
+ <item xsi:type="xsd:string">r1c0</item>
389
+ <item xsi:type="xsd:string">r1c1</item>
390
+ <item xsi:type="xsd:string">r1c2</item>
391
+ <item xsi:type="xsd:string">r2c0</item>
392
+ <item xsi:type="xsd:string">r0c1</item>
393
+ <item xsi:type="xsd:string">r2c2</item>
394
+ </input2DStringArray>
395
+ </n1:echo2DStringArray>
396
+ </env:Body>
397
+ </env:Envelope>
398
+
399
+ = Response
400
+
401
+ HTTP/1.1 200 OK
402
+ Date: Sat, 23 Jul 2005 12:15:49 GMT
403
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
404
+ X-Powered-By: PHP/4.3.11
405
+ Transfer-Encoding: chunked
406
+ Content-Type: text/html
407
+
408
+ bb
409
+ <br />
410
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
411
+
412
+ 108
413
+ <br />
414
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
415
+
416
+ 0
417
+
418
+
419
+
420
+
421
+ ##########
422
+ # echo2DStringArray (multi-ref)
423
+
424
+ Result: Exception: response is not a SOAP envelope: <br />
425
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
426
+ <br />
427
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
428
+ (SOAP::ResponseFormatError)
429
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
430
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
431
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
432
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
433
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
434
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
435
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
436
+ clientPEAR.rb:17
437
+
438
+ Wire dump:
439
+
440
+ = Request
441
+
442
+ POST /soap_interop/server_round2.php HTTP/1.1
443
+ SOAPAction: "http://soapinterop.org/"
444
+ Content-Type: text/xml; charset=utf-8
445
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
446
+ Date: Sat Jul 23 21:14:06 JST 2005
447
+ Content-Length: 1063
448
+ Host: www.caraveo.com
449
+
450
+ <?xml version="1.0" encoding="utf-8" ?>
451
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
452
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
453
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
454
+ <env:Body>
455
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
456
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
457
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
458
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
459
+ xsi:type="n2:ArrayOfString2D"
460
+ n3:arrayType="xsd:string[3,3]">
461
+ <item>r0c0</item>
462
+ <item>r1c0</item>
463
+ <item href="#id-605998662"></item>
464
+ <item>r0c1</item>
465
+ <item>r1c1</item>
466
+ <item>r2c1</item>
467
+ <item href="#id-605998662"></item>
468
+ <item>r1c2</item>
469
+ <item>r2c2</item>
470
+ </input2DStringArray>
471
+ </n1:echo2DStringArray>
472
+ <item id="id-605998662"
473
+ xsi:type="xsd:string"
474
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
475
+ </env:Body>
476
+ </env:Envelope>
477
+
478
+ = Response
479
+
480
+ HTTP/1.1 200 OK
481
+ Date: Sat, 23 Jul 2005 12:15:50 GMT
482
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
483
+ X-Powered-By: PHP/4.3.11
484
+ Transfer-Encoding: chunked
485
+ Content-Type: text/html
486
+
487
+ bb
488
+ <br />
489
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
490
+
491
+ 108
492
+ <br />
493
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
494
+
495
+ 0
496
+
497
+
498
+
499
+
500
+ ##########
501
+ # echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
502
+
503
+ Result: Exception: response is not a SOAP envelope: <br />
504
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
505
+ <br />
506
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
507
+ (SOAP::ResponseFormatError)
508
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
509
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
510
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
511
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
512
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
513
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
514
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1852:in `doTestGroupB'
515
+ clientPEAR.rb:17
516
+
517
+ Wire dump:
518
+
519
+ = Request
520
+
521
+ POST /soap_interop/server_round2.php HTTP/1.1
522
+ SOAPAction: "http://soapinterop.org/"
523
+ Content-Type: text/xml; charset=utf-8
524
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
525
+ Date: Sat Jul 23 21:14:07 JST 2005
526
+ Content-Length: 1063
527
+ Host: www.caraveo.com
528
+
529
+ <?xml version="1.0" encoding="utf-8" ?>
530
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
531
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
532
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
533
+ <env:Body>
534
+ <n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
535
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
536
+ <input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
537
+ xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
538
+ xsi:type="n2:ArrayOfString2D"
539
+ n3:arrayType="xsd:string[3,3]">
540
+ <item>r0c0</item>
541
+ <item>r1c0</item>
542
+ <item href="#id-606018642"></item>
543
+ <item>r0c1</item>
544
+ <item>r1c1</item>
545
+ <item>r2c1</item>
546
+ <item href="#id-606018642"></item>
547
+ <item>r1c2</item>
548
+ <item>r2c2</item>
549
+ </input2DStringArray>
550
+ </n1:echo2DStringArray>
551
+ <item id="id-606018642"
552
+ xsi:type="xsd:string"
553
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
554
+ </env:Body>
555
+ </env:Envelope>
556
+
557
+ = Response
558
+
559
+ HTTP/1.1 200 OK
560
+ Date: Sat, 23 Jul 2005 12:15:50 GMT
561
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
562
+ X-Powered-By: PHP/4.3.11
563
+ Transfer-Encoding: chunked
564
+ Content-Type: text/html
565
+
566
+ bb
567
+ <br />
568
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
569
+
570
+ 108
571
+ <br />
572
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
573
+
574
+ 0
575
+
576
+
577
+
578
+
579
+ ##########
580
+ # echoNestedStruct
581
+
582
+ Result: Exception: response is not a SOAP envelope: <br />
583
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
584
+ <br />
585
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
586
+ (SOAP::ResponseFormatError)
587
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
588
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
589
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
590
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
591
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
592
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
593
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1882:in `doTestGroupB'
594
+ clientPEAR.rb:17
595
+
596
+ Wire dump:
597
+
598
+ = Request
599
+
600
+ POST /soap_interop/server_round2.php HTTP/1.1
601
+ SOAPAction: "http://soapinterop.org/"
602
+ Content-Type: text/xml; charset=utf-8
603
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
604
+ Date: Sat Jul 23 21:14:07 JST 2005
605
+ Content-Length: 920
606
+ Host: www.caraveo.com
607
+
608
+ <?xml version="1.0" encoding="utf-8" ?>
609
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
610
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
611
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
612
+ <env:Body>
613
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
614
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
615
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
616
+ xsi:type="n2:SOAPStructStruct">
617
+ <varInt xsi:type="xsd:int">1</varInt>
618
+ <varStruct xsi:type="n2:SOAPStruct">
619
+ <varInt xsi:type="xsd:int">2</varInt>
620
+ <varString xsi:type="xsd:string">b</varString>
621
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
622
+ </varStruct>
623
+ <varString xsi:type="xsd:string">a</varString>
624
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
625
+ </inputStruct>
626
+ </n1:echoNestedStruct>
627
+ </env:Body>
628
+ </env:Envelope>
629
+
630
+ = Response
631
+
632
+ HTTP/1.1 200 OK
633
+ Date: Sat, 23 Jul 2005 12:15:51 GMT
634
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
635
+ X-Powered-By: PHP/4.3.11
636
+ Transfer-Encoding: chunked
637
+ Content-Type: text/html
638
+
639
+ bb
640
+ <br />
641
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
642
+
643
+ 108
644
+ <br />
645
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
646
+
647
+ 0
648
+
649
+
650
+
651
+
652
+ ##########
653
+ # echoNestedStruct (nil)
654
+
655
+ Result: Exception: response is not a SOAP envelope: <br />
656
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
657
+ <br />
658
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
659
+ (SOAP::ResponseFormatError)
660
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
661
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
662
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
663
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
664
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
665
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
666
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1894:in `doTestGroupB'
667
+ clientPEAR.rb:17
668
+
669
+ Wire dump:
670
+
671
+ = Request
672
+
673
+ POST /soap_interop/server_round2.php HTTP/1.1
674
+ SOAPAction: "http://soapinterop.org/"
675
+ Content-Type: text/xml; charset=utf-8
676
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
677
+ Date: Sat Jul 23 21:14:08 JST 2005
678
+ Content-Length: 874
679
+ Host: www.caraveo.com
680
+
681
+ <?xml version="1.0" encoding="utf-8" ?>
682
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
683
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
684
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
685
+ <env:Body>
686
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
687
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
688
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
689
+ xsi:type="n2:SOAPStructStruct">
690
+ <varInt xsi:nil="true"></varInt>
691
+ <varStruct xsi:type="n2:SOAPStruct">
692
+ <varInt xsi:nil="true"></varInt>
693
+ <varString xsi:nil="true"></varString>
694
+ <varFloat xsi:nil="true"></varFloat>
695
+ </varStruct>
696
+ <varString xsi:nil="true"></varString>
697
+ <varFloat xsi:nil="true"></varFloat>
698
+ </inputStruct>
699
+ </n1:echoNestedStruct>
700
+ </env:Body>
701
+ </env:Envelope>
702
+
703
+ = Response
704
+
705
+ HTTP/1.1 200 OK
706
+ Date: Sat, 23 Jul 2005 12:15:51 GMT
707
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
708
+ X-Powered-By: PHP/4.3.11
709
+ Transfer-Encoding: chunked
710
+ Content-Type: text/html
711
+
712
+ bb
713
+ <br />
714
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
715
+
716
+ 108
717
+ <br />
718
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
719
+
720
+ 0
721
+
722
+
723
+
724
+
725
+ ##########
726
+ # echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
727
+
728
+ Result: Exception: response is not a SOAP envelope: <br />
729
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
730
+ <br />
731
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
732
+ (SOAP::ResponseFormatError)
733
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
734
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
735
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
736
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
737
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
738
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
739
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1907:in `doTestGroupB'
740
+ clientPEAR.rb:17
741
+
742
+ Wire dump:
743
+
744
+ = Request
745
+
746
+ POST /soap_interop/server_round2.php HTTP/1.1
747
+ SOAPAction: "http://soapinterop.org/"
748
+ Content-Type: text/xml; charset=utf-8
749
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
750
+ Date: Sat Jul 23 21:14:08 JST 2005
751
+ Content-Length: 1062
752
+ Host: www.caraveo.com
753
+
754
+ <?xml version="1.0" encoding="utf-8" ?>
755
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
756
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
757
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
758
+ <env:Body>
759
+ <n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
760
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
761
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
762
+ xsi:type="n2:SOAPStructStruct">
763
+ <varInt xsi:type="xsd:int">1</varInt>
764
+ <varStruct xsi:type="n2:SOAPStruct">
765
+ <varInt xsi:type="xsd:int">2</varInt>
766
+ <varString href="#id-606068642"></varString>
767
+ <varFloat xsi:type="xsd:float">+2.2</varFloat>
768
+ </varStruct>
769
+ <varString href="#id-606068642"></varString>
770
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
771
+ </inputStruct>
772
+ </n1:echoNestedStruct>
773
+ <varString id="id-606068642"
774
+ xsi:type="xsd:string"
775
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
776
+ </env:Body>
777
+ </env:Envelope>
778
+
779
+ = Response
780
+
781
+ HTTP/1.1 200 OK
782
+ Date: Sat, 23 Jul 2005 12:15:52 GMT
783
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
784
+ X-Powered-By: PHP/4.3.11
785
+ Transfer-Encoding: chunked
786
+ Content-Type: text/html
787
+
788
+ bb
789
+ <br />
790
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
791
+
792
+ 108
793
+ <br />
794
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
795
+
796
+ 0
797
+
798
+
799
+
800
+
801
+ ##########
802
+ # echoNestedArray
803
+
804
+ Result: Exception: response is not a SOAP envelope: <br />
805
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
806
+ <br />
807
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
808
+ (SOAP::ResponseFormatError)
809
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
810
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
811
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
812
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
813
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
814
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
815
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1917:in `doTestGroupB'
816
+ clientPEAR.rb:17
817
+
818
+ Wire dump:
819
+
820
+ = Request
821
+
822
+ POST /soap_interop/server_round2.php HTTP/1.1
823
+ SOAPAction: "http://soapinterop.org/"
824
+ Content-Type: text/xml; charset=utf-8
825
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
826
+ Date: Sat Jul 23 21:14:09 JST 2005
827
+ Content-Length: 931
828
+ Host: www.caraveo.com
829
+
830
+ <?xml version="1.0" encoding="utf-8" ?>
831
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
832
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
833
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
834
+ <env:Body>
835
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
836
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
837
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
838
+ xsi:type="n2:SOAPArrayStruct">
839
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
840
+ xsi:type="n3:Array"
841
+ n3:arrayType="xsd:string[3]">
842
+ <item>2</item>
843
+ <item>2.2</item>
844
+ <item>b</item>
845
+ </varArray>
846
+ <varInt xsi:type="xsd:int">1</varInt>
847
+ <varString xsi:type="xsd:string">a</varString>
848
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
849
+ </inputStruct>
850
+ </n1:echoNestedArray>
851
+ </env:Body>
852
+ </env:Envelope>
853
+
854
+ = Response
855
+
856
+ HTTP/1.1 200 OK
857
+ Date: Sat, 23 Jul 2005 12:15:52 GMT
858
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
859
+ X-Powered-By: PHP/4.3.11
860
+ Transfer-Encoding: chunked
861
+ Content-Type: text/html
862
+
863
+ bb
864
+ <br />
865
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
866
+
867
+ 108
868
+ <br />
869
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
870
+
871
+ 0
872
+
873
+
874
+
875
+
876
+ ##########
877
+ # echoNestedArray (anyType array)
878
+
879
+ Result: Exception: response is not a SOAP envelope: <br />
880
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
881
+ <br />
882
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
883
+ (SOAP::ResponseFormatError)
884
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
885
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
886
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
887
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
888
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
889
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
890
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
891
+ clientPEAR.rb:17
892
+
893
+ Wire dump:
894
+
895
+ = Request
896
+
897
+ POST /soap_interop/server_round2.php HTTP/1.1
898
+ SOAPAction: "http://soapinterop.org/"
899
+ Content-Type: text/xml; charset=utf-8
900
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
901
+ Date: Sat Jul 23 21:14:09 JST 2005
902
+ Content-Length: 998
903
+ Host: www.caraveo.com
904
+
905
+ <?xml version="1.0" encoding="utf-8" ?>
906
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
907
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
908
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
909
+ <env:Body>
910
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
911
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
912
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
913
+ xsi:type="n2:SOAPArrayStruct">
914
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
915
+ xsi:type="n3:Array"
916
+ n3:arrayType="xsd:anyType[3]">
917
+ <item xsi:type="xsd:string">2</item>
918
+ <item xsi:type="xsd:string">2.2</item>
919
+ <item xsi:type="xsd:string">b</item>
920
+ </varArray>
921
+ <varInt xsi:type="xsd:int">1</varInt>
922
+ <varString xsi:type="xsd:string">a</varString>
923
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
924
+ </inputStruct>
925
+ </n1:echoNestedArray>
926
+ </env:Body>
927
+ </env:Envelope>
928
+
929
+ = Response
930
+
931
+ HTTP/1.1 200 OK
932
+ Date: Sat, 23 Jul 2005 12:15:52 GMT
933
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
934
+ X-Powered-By: PHP/4.3.11
935
+ Transfer-Encoding: chunked
936
+ Content-Type: text/html
937
+
938
+ bb
939
+ <br />
940
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
941
+
942
+ 108
943
+ <br />
944
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
945
+
946
+ 0
947
+
948
+
949
+
950
+
951
+ ##########
952
+ # echoNestedArray (multi-ref)
953
+
954
+ Result: Exception: response is not a SOAP envelope: <br />
955
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
956
+ <br />
957
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
958
+ (SOAP::ResponseFormatError)
959
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
960
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
961
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
962
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
963
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
964
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
965
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1938:in `doTestGroupB'
966
+ clientPEAR.rb:17
967
+
968
+ Wire dump:
969
+
970
+ = Request
971
+
972
+ POST /soap_interop/server_round2.php HTTP/1.1
973
+ SOAPAction: "http://soapinterop.org/"
974
+ Content-Type: text/xml; charset=utf-8
975
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
976
+ Date: Sat Jul 23 21:14:09 JST 2005
977
+ Content-Length: 1083
978
+ Host: www.caraveo.com
979
+
980
+ <?xml version="1.0" encoding="utf-8" ?>
981
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
982
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
983
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
984
+ <env:Body>
985
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
986
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
987
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
988
+ xsi:type="n2:SOAPArrayStruct">
989
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
990
+ xsi:type="n3:Array"
991
+ n3:arrayType="xsd:string[3]">
992
+ <item>2</item>
993
+ <item href="#id-606117742"></item>
994
+ <item>b</item>
995
+ </varArray>
996
+ <varInt xsi:type="xsd:int">1</varInt>
997
+ <varString href="#id-606117742"></varString>
998
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
999
+ </inputStruct>
1000
+ </n1:echoNestedArray>
1001
+ <item id="id-606117742"
1002
+ xsi:type="xsd:string"
1003
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
1004
+ </env:Body>
1005
+ </env:Envelope>
1006
+
1007
+ = Response
1008
+
1009
+ HTTP/1.1 200 OK
1010
+ Date: Sat, 23 Jul 2005 12:15:53 GMT
1011
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
1012
+ X-Powered-By: PHP/4.3.11
1013
+ Transfer-Encoding: chunked
1014
+ Content-Type: text/html
1015
+
1016
+ bb
1017
+ <br />
1018
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
1019
+
1020
+ 108
1021
+ <br />
1022
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
1023
+
1024
+ 0
1025
+
1026
+
1027
+
1028
+
1029
+ ##########
1030
+ # echoNestedArray (multi-ref: varString == varArray[1])
1031
+
1032
+ Result: Exception: response is not a SOAP envelope: <br />
1033
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
1034
+ <br />
1035
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
1036
+ (SOAP::ResponseFormatError)
1037
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:235:in `unmarshal'
1038
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
1039
+ /usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
1040
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
1041
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
1042
+ /usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
1043
+ /home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1949:in `doTestGroupB'
1044
+ clientPEAR.rb:17
1045
+
1046
+ Wire dump:
1047
+
1048
+ = Request
1049
+
1050
+ POST /soap_interop/server_round2.php HTTP/1.1
1051
+ SOAPAction: "http://soapinterop.org/"
1052
+ Content-Type: text/xml; charset=utf-8
1053
+ User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
1054
+ Date: Sat Jul 23 21:14:10 JST 2005
1055
+ Content-Length: 1083
1056
+ Host: www.caraveo.com
1057
+
1058
+ <?xml version="1.0" encoding="utf-8" ?>
1059
+ <env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
1060
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
1061
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
1062
+ <env:Body>
1063
+ <n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
1064
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
1065
+ <inputStruct xmlns:n2="http://soapinterop.org/xsd"
1066
+ xsi:type="n2:SOAPArrayStruct">
1067
+ <varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
1068
+ xsi:type="n3:Array"
1069
+ n3:arrayType="xsd:string[3]">
1070
+ <item>2</item>
1071
+ <item href="#id-606135502"></item>
1072
+ <item>b</item>
1073
+ </varArray>
1074
+ <varInt xsi:type="xsd:int">1</varInt>
1075
+ <varString href="#id-606135502"></varString>
1076
+ <varFloat xsi:type="xsd:float">+1.1</varFloat>
1077
+ </inputStruct>
1078
+ </n1:echoNestedArray>
1079
+ <item id="id-606135502"
1080
+ xsi:type="xsd:string"
1081
+ env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
1082
+ </env:Body>
1083
+ </env:Envelope>
1084
+
1085
+ = Response
1086
+
1087
+ HTTP/1.1 200 OK
1088
+ Date: Sat, 23 Jul 2005 12:15:53 GMT
1089
+ Server: Apache/1.3.33 (Unix) mod_auth_passthrough/1.8 mod_log_bytes/1.2 mod_bwlimited/1.4 FrontPage/5.0.2.2635 mod_ssl/2.8.22 OpenSSL/0.9.7a PHP-CGI/0.1b
1090
+ X-Powered-By: PHP/4.3.11
1091
+ Transfer-Encoding: chunked
1092
+ Content-Type: text/html
1093
+
1094
+ bb
1095
+ <br />
1096
+ <b>Warning</b>: main(SOAP/Server.php): failed to open stream: No such file or directory in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
1097
+
1098
+ 108
1099
+ <br />
1100
+ <b>Fatal error</b>: main(): Failed opening required 'SOAP/Server.php' (include_path='.:/usr/lib/php:/usr/local/lib/php:/home/nativew/public_html/nativeweb/include') in <b>/home/caraveo/public_html/soap_interop/server_round2.php</b> on line <b>22</b><br />
1101
+
1102
+ 0
1103
+
1104
+
1105
+
1106
+