soap4r 1.5.5.20061022
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/wsdl2ruby.rb +131 -0
- data/bin/xsd2ruby.rb +82 -0
- data/lib/soap/XMLSchemaDatatypes.rb +9 -0
- data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
- data/lib/soap/attachment.rb +108 -0
- data/lib/soap/baseData.rb +992 -0
- data/lib/soap/cgistub.rb +9 -0
- data/lib/soap/charset.rb +9 -0
- data/lib/soap/compat.rb +182 -0
- data/lib/soap/driver.rb +9 -0
- data/lib/soap/element.rb +266 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
- data/lib/soap/encodingstyle/handler.rb +109 -0
- data/lib/soap/encodingstyle/literalHandler.rb +241 -0
- data/lib/soap/encodingstyle/soapHandler.rb +598 -0
- data/lib/soap/generator.rb +264 -0
- data/lib/soap/header/handler.rb +60 -0
- data/lib/soap/header/handlerset.rb +70 -0
- data/lib/soap/header/simplehandler.rb +44 -0
- data/lib/soap/httpconfigloader.rb +119 -0
- data/lib/soap/mapping.rb +12 -0
- data/lib/soap/mapping/encodedregistry.rb +531 -0
- data/lib/soap/mapping/factory.rb +372 -0
- data/lib/soap/mapping/literalregistry.rb +321 -0
- data/lib/soap/mapping/mapping.rb +561 -0
- data/lib/soap/mapping/registry.rb +258 -0
- data/lib/soap/mapping/rubytypeFactory.rb +475 -0
- data/lib/soap/mapping/typeMap.rb +82 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +253 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +246 -0
- data/lib/soap/mappingRegistry.rb +9 -0
- data/lib/soap/marshal.rb +59 -0
- data/lib/soap/mimemessage.rb +241 -0
- data/lib/soap/namespace.rb +9 -0
- data/lib/soap/netHttpClient.rb +204 -0
- data/lib/soap/parser.rb +251 -0
- data/lib/soap/processor.rb +66 -0
- data/lib/soap/property.rb +333 -0
- data/lib/soap/proxy.rb +14 -0
- data/lib/soap/qname.rb +9 -0
- data/lib/soap/rpc/cgistub.rb +214 -0
- data/lib/soap/rpc/driver.rb +245 -0
- data/lib/soap/rpc/element.rb +330 -0
- data/lib/soap/rpc/httpserver.rb +143 -0
- data/lib/soap/rpc/proxy.rb +563 -0
- data/lib/soap/rpc/router.rb +602 -0
- data/lib/soap/rpc/rpc.rb +25 -0
- data/lib/soap/rpc/soaplet.rb +162 -0
- data/lib/soap/rpc/standaloneServer.rb +43 -0
- data/lib/soap/rpcRouter.rb +9 -0
- data/lib/soap/rpcUtils.rb +9 -0
- data/lib/soap/server.rb +9 -0
- data/lib/soap/soap.rb +150 -0
- data/lib/soap/standaloneServer.rb +9 -0
- data/lib/soap/streamHandler.rb +258 -0
- data/lib/soap/wsdlDriver.rb +580 -0
- data/lib/wsdl/binding.rb +65 -0
- data/lib/wsdl/data.rb +64 -0
- data/lib/wsdl/definitions.rb +250 -0
- data/lib/wsdl/documentation.rb +32 -0
- data/lib/wsdl/import.rb +80 -0
- data/lib/wsdl/importer.rb +38 -0
- data/lib/wsdl/info.rb +39 -0
- data/lib/wsdl/message.rb +54 -0
- data/lib/wsdl/operation.rb +175 -0
- data/lib/wsdl/operationBinding.rb +116 -0
- data/lib/wsdl/param.rb +85 -0
- data/lib/wsdl/parser.rb +163 -0
- data/lib/wsdl/part.rb +52 -0
- data/lib/wsdl/port.rb +84 -0
- data/lib/wsdl/portType.rb +75 -0
- data/lib/wsdl/service.rb +61 -0
- data/lib/wsdl/soap/address.rb +40 -0
- data/lib/wsdl/soap/binding.rb +49 -0
- data/lib/wsdl/soap/body.rb +56 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +88 -0
- data/lib/wsdl/soap/classDefCreator.rb +340 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +131 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +93 -0
- data/lib/wsdl/soap/complexType.rb +166 -0
- data/lib/wsdl/soap/data.rb +42 -0
- data/lib/wsdl/soap/definitions.rb +151 -0
- data/lib/wsdl/soap/driverCreator.rb +110 -0
- data/lib/wsdl/soap/element.rb +28 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +117 -0
- data/lib/wsdl/soap/fault.rb +56 -0
- data/lib/wsdl/soap/header.rb +86 -0
- data/lib/wsdl/soap/headerfault.rb +56 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +188 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +53 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +233 -0
- data/lib/wsdl/soap/methodDefCreator.rb +253 -0
- data/lib/wsdl/soap/operation.rb +122 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +78 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +98 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +196 -0
- data/lib/wsdl/types.rb +44 -0
- data/lib/wsdl/wsdl.rb +23 -0
- data/lib/wsdl/xmlSchema/all.rb +24 -0
- data/lib/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/wsdl/xmlSchema/any.rb +56 -0
- data/lib/wsdl/xmlSchema/attribute.rb +123 -0
- data/lib/wsdl/xmlSchema/choice.rb +55 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +88 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +104 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +92 -0
- data/lib/wsdl/xmlSchema/complexType.rb +152 -0
- data/lib/wsdl/xmlSchema/content.rb +74 -0
- data/lib/wsdl/xmlSchema/data.rb +90 -0
- data/lib/wsdl/xmlSchema/element.rb +158 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/wsdl/xmlSchema/import.rb +65 -0
- data/lib/wsdl/xmlSchema/importer.rb +87 -0
- data/lib/wsdl/xmlSchema/include.rb +54 -0
- data/lib/wsdl/xmlSchema/length.rb +35 -0
- data/lib/wsdl/xmlSchema/list.rb +48 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +35 -0
- data/lib/wsdl/xmlSchema/minlength.rb +35 -0
- data/lib/wsdl/xmlSchema/parser.rb +166 -0
- data/lib/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/wsdl/xmlSchema/schema.rb +144 -0
- data/lib/wsdl/xmlSchema/sequence.rb +51 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +54 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +91 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +80 -0
- data/lib/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +107 -0
- data/lib/xsd/charset.rb +187 -0
- data/lib/xsd/codegen.rb +12 -0
- data/lib/xsd/codegen/classdef.rb +203 -0
- data/lib/xsd/codegen/commentdef.rb +34 -0
- data/lib/xsd/codegen/gensupport.rb +168 -0
- data/lib/xsd/codegen/methoddef.rb +70 -0
- data/lib/xsd/codegen/moduledef.rb +191 -0
- data/lib/xsd/datatypes.rb +1282 -0
- data/lib/xsd/datatypes1999.rb +20 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +42 -0
- data/lib/xsd/namedelements.rb +124 -0
- data/lib/xsd/ns.rb +146 -0
- data/lib/xsd/qname.rb +78 -0
- data/lib/xsd/xmlparser.rb +61 -0
- data/lib/xsd/xmlparser/parser.rb +96 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
- data/lib/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +147 -0
- data/test/16runner.rb +68 -0
- data/test/interopR2/README.txt +2 -0
- data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
- data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
- data/test/interopR2/base.rb +288 -0
- data/test/interopR2/client.NetRemoting.rb +17 -0
- data/test/interopR2/client.NetRemoting.rb.result +3410 -0
- data/test/interopR2/client.NetRemoting_Base.log +6279 -0
- data/test/interopR2/client.NetRemoting_GroupB.log +1188 -0
- data/test/interopR2/client.rb +1228 -0
- data/test/interopR2/client4S4C.rb +15 -0
- data/test/interopR2/client4S4C2.rb +14 -0
- data/test/interopR2/client4S4C2_Base.log +4955 -0
- data/test/interopR2/client4S4C2_GroupB.log +1000 -0
- data/test/interopR2/client4S4C_Base.log +4635 -0
- data/test/interopR2/client4S4C_GroupB.log +900 -0
- data/test/interopR2/clientASP.NET.rb +17 -0
- data/test/interopR2/clientASP.NET_Base.log +5468 -0
- data/test/interopR2/clientASP.NET_GroupB.log +977 -0
- data/test/interopR2/clientApacheAxis.rb +16 -0
- data/test/interopR2/clientApacheAxis_Base.log +3171 -0
- data/test/interopR2/clientApacheAxis_GroupB.log +498 -0
- data/test/interopR2/clientApacheSOAP.rb +17 -0
- data/test/interopR2/clientApacheSOAP_Base.log +3171 -0
- data/test/interopR2/clientBEAWebLogic.rb +17 -0
- data/test/interopR2/clientBEAWebLogic_Base.log +3171 -0
- data/test/interopR2/clientBEAWebLogic_GroupB.log +498 -0
- data/test/interopR2/clientBase.rb +1970 -0
- data/test/interopR2/clientCapeConnect.rb +18 -0
- data/test/interopR2/clientCapeConnect_Base.log +2126 -0
- data/test/interopR2/clientDelphi.rb +19 -0
- data/test/interopR2/clientDelphi_Base.log +0 -0
- data/test/interopR2/clientEasySoap.rb +14 -0
- data/test/interopR2/clientEasySoap_Base.log +6187 -0
- data/test/interopR2/clientEasySoap_GroupB.log +1076 -0
- data/test/interopR2/clientFrontier.rb +25 -0
- data/test/interopR2/clientFrontier_Base.log +5188 -0
- data/test/interopR2/clientGLUE.rb +32 -0
- data/test/interopR2/clientHP.rb +13 -0
- data/test/interopR2/clientHP_Base.log +3171 -0
- data/test/interopR2/clientHP_GroupB.log +498 -0
- data/test/interopR2/clientJAX-RPC.rb +19 -0
- data/test/interopR2/clientJSOAP.rb +14 -0
- data/test/interopR2/clientJSOAP_Base.log +4465 -0
- data/test/interopR2/clientJSOAP_GroupB.log +824 -0
- data/test/interopR2/clientKafkaXSLT.rb +15 -0
- data/test/interopR2/clientKafkaXSLT_Base.log +10299 -0
- data/test/interopR2/clientKafkaXSLT_GroupB.log +1739 -0
- data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +4805 -0
- data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +871 -0
- data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +5076 -0
- data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +908 -0
- data/test/interopR2/clientNuSOAP.rb +19 -0
- data/test/interopR2/clientNuSOAP_Base.log +5076 -0
- data/test/interopR2/clientNuSOAP_GroupB.log +958 -0
- data/test/interopR2/clientNuWave.rb +15 -0
- data/test/interopR2/clientNuWave_Base.log +2019 -0
- data/test/interopR2/clientOpenLink.rb +15 -0
- data/test/interopR2/clientOpenLink_Base.log +6171 -0
- data/test/interopR2/clientOpenLink_GroupB.log +1094 -0
- data/test/interopR2/clientOracle.rb +15 -0
- data/test/interopR2/clientOracle_Base.log +5594 -0
- data/test/interopR2/clientPEAR.rb +18 -0
- data/test/interopR2/clientPEAR_Base.log +6261 -0
- data/test/interopR2/clientPEAR_GroupB.log +1106 -0
- data/test/interopR2/clientPhalanx.rb +18 -0
- data/test/interopR2/clientPhalanx_Base.log +41036 -0
- data/test/interopR2/clientPhalanx_GroupB.log +6519 -0
- data/test/interopR2/clientSIMACE.rb +18 -0
- data/test/interopR2/clientSIMACE_Base.log +6171 -0
- data/test/interopR2/clientSIMACE_GroupB.log +1093 -0
- data/test/interopR2/clientSOAP4R.rb +18 -0
- data/test/interopR2/clientSOAP4R.rb.result +3409 -0
- data/test/interopR2/clientSOAP4R_Base.log +6366 -0
- data/test/interopR2/clientSOAP4R_GroupB.log +1112 -0
- data/test/interopR2/clientSOAP__Lite.rb +14 -0
- data/test/interopR2/clientSQLData.rb +18 -0
- data/test/interopR2/clientSQLData_Base.log +4857 -0
- data/test/interopR2/clientSQLData_GroupB.log +770 -0
- data/test/interopR2/clientSilverStream.rb +17 -0
- data/test/interopR2/clientSilverStream_Base.log +3171 -0
- data/test/interopR2/clientSpray2001.rb +17 -0
- data/test/interopR2/clientSpray2001_Base.log +8187 -0
- data/test/interopR2/clientSpray2001_GroupB.log +1408 -0
- data/test/interopR2/clientSun.rb +19 -0
- data/test/interopR2/clientSun_Base.log +4641 -0
- data/test/interopR2/clientSun_GroupB.log +856 -0
- data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
- data/test/interopR2/clientVWOpentalkSoap_Base.log +5402 -0
- data/test/interopR2/clientVWOpentalkSoap_GroupB.log +972 -0
- data/test/interopR2/clientWASP.rb +19 -0
- data/test/interopR2/clientWASPC.rb +18 -0
- data/test/interopR2/clientWASPC_Base.log +4187 -0
- data/test/interopR2/clientWASPC_GroupB.log +763 -0
- data/test/interopR2/clientWASP_Base.log +5414 -0
- data/test/interopR2/clientWASP_GroupB.log +970 -0
- data/test/interopR2/clientWebMethods.rb +15 -0
- data/test/interopR2/clientWebMethods_Base.log +3075 -0
- data/test/interopR2/clientWebMethods_GroupB.log +483 -0
- data/test/interopR2/clientWhiteMesa.rb +28 -0
- data/test/interopR2/clientWhiteMesa_Base.log +4359 -0
- data/test/interopR2/clientWhiteMesa_GroupB.log +808 -0
- data/test/interopR2/clientWingfoot.rb +15 -0
- data/test/interopR2/clientWingfoot_Base.log +4445 -0
- data/test/interopR2/clientWingfoot_GroupB.log +848 -0
- data/test/interopR2/clientXMLBus.rb +19 -0
- data/test/interopR2/clientXMLBus_Base.log +3075 -0
- data/test/interopR2/clientXMLBus_GroupB.log +483 -0
- data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
- data/test/interopR2/clientXSOAP.rb +14 -0
- data/test/interopR2/clientXSOAP_Base.log +4445 -0
- data/test/interopR2/clientZSI.rb +19 -0
- data/test/interopR2/clienteSOAP.rb +18 -0
- data/test/interopR2/clienteSOAP_Base.log +8728 -0
- data/test/interopR2/clientgSOAP.rb +18 -0
- data/test/interopR2/clientgSOAP_Base.log +4689 -0
- data/test/interopR2/clientgSOAP_GroupB.log +1014 -0
- data/test/interopR2/clientkSOAP.rb +17 -0
- data/test/interopR2/clientkSOAP_Base.log +5625 -0
- data/test/interopR2/iSimonReg.rb +112 -0
- data/test/interopR2/interopResultBase.rb +114 -0
- data/test/interopR2/interopService.rb +247 -0
- data/test/interopR2/result_client.NetRemoting.txt +4593 -0
- data/test/interopR2/rwikiInteropService.rb +105 -0
- data/test/interopR2/server.cgi +270 -0
- data/test/interopR2/server.rb +274 -0
- data/test/interopR2/simonReg.rb +123 -0
- data/test/interopR2/test.sh +49 -0
- data/test/interopR4/client.rb +112 -0
- data/test/runner.rb +9 -0
- data/test/sm11/classDef.rb +156 -0
- data/test/sm11/client.rb +542 -0
- data/test/sm11/driver.rb +183 -0
- data/test/sm11/servant.rb +1067 -0
- data/test/sm11/server.rb +25 -0
- data/test/soap/asp.net/hello.wsdl +96 -0
- data/test/soap/asp.net/test_aspdotnet.rb +112 -0
- data/test/soap/calc/calc.rb +17 -0
- data/test/soap/calc/calc2.rb +29 -0
- data/test/soap/calc/server.cgi +13 -0
- data/test/soap/calc/server.rb +17 -0
- data/test/soap/calc/server2.rb +20 -0
- data/test/soap/calc/test_calc.rb +49 -0
- data/test/soap/calc/test_calc2.rb +53 -0
- data/test/soap/calc/test_calc_cgi.rb +69 -0
- data/test/soap/fault/test_customfault.rb +58 -0
- data/test/soap/header/server.cgi +119 -0
- data/test/soap/header/test_authheader.rb +240 -0
- data/test/soap/header/test_authheader_cgi.rb +121 -0
- data/test/soap/header/test_simplehandler.rb +116 -0
- data/test/soap/helloworld/hw_s.rb +16 -0
- data/test/soap/helloworld/test_helloworld.rb +41 -0
- data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
- data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
- data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
- data/test/soap/literalArrayMapping/test_definedarray.rb +36 -0
- data/test/soap/marshal/marshaltestlib.rb +494 -0
- data/test/soap/marshal/test_digraph.rb +56 -0
- data/test/soap/marshal/test_marshal.rb +26 -0
- data/test/soap/marshal/test_struct.rb +47 -0
- data/test/soap/ssl/README +1 -0
- data/test/soap/ssl/ca.cert +23 -0
- data/test/soap/ssl/client.cert +19 -0
- data/test/soap/ssl/client.key +15 -0
- data/test/soap/ssl/server.cert +19 -0
- data/test/soap/ssl/server.key +15 -0
- data/test/soap/ssl/sslsvr.rb +57 -0
- data/test/soap/ssl/subca.cert +21 -0
- data/test/soap/ssl/test_ssl.rb +245 -0
- data/test/soap/struct/test_struct.rb +77 -0
- data/test/soap/styleuse/client.rb +20 -0
- data/test/soap/styleuse/server.rb +86 -0
- data/test/soap/swa/test_file.rb +73 -0
- data/test/soap/test_basetype.rb +976 -0
- data/test/soap/test_custommap.rb +108 -0
- data/test/soap/test_empty.rb +79 -0
- data/test/soap/test_envelopenamespace.rb +92 -0
- data/test/soap/test_httpconfigloader.rb +39 -0
- data/test/soap/test_mapping.rb +59 -0
- data/test/soap/test_no_indent.rb +86 -0
- data/test/soap/test_property.rb +424 -0
- data/test/soap/test_response_as_xml.rb +95 -0
- data/test/soap/test_soapelement.rb +120 -0
- data/test/soap/test_streamhandler.rb +262 -0
- data/test/soap/test_styleuse.rb +333 -0
- data/test/soap/wsdlDriver/README.txt +2 -0
- data/test/soap/wsdlDriver/calc.wsdl +126 -0
- data/test/soap/wsdlDriver/document.wsdl +54 -0
- data/test/soap/wsdlDriver/echo_version.rb +29 -0
- data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
- data/test/soap/wsdlDriver/test_calc.rb +100 -0
- data/test/soap/wsdlDriver/test_document.rb +78 -0
- data/test/soap/wsdlDriver/test_simpletype.rb +87 -0
- data/test/wsdl/abstract/abstract.wsdl +97 -0
- data/test/wsdl/abstract/test_abstract.rb +130 -0
- data/test/wsdl/any/any.wsdl +51 -0
- data/test/wsdl/any/expectedDriver.rb +46 -0
- data/test/wsdl/any/expectedEcho.rb +18 -0
- data/test/wsdl/any/expectedService.rb +42 -0
- data/test/wsdl/any/test_any.rb +193 -0
- data/test/wsdl/axisArray/axisArray.wsdl +60 -0
- data/test/wsdl/axisArray/itemList.rb +14 -0
- data/test/wsdl/axisArray/test_axisarray.rb +69 -0
- data/test/wsdl/choice/choice.wsdl +91 -0
- data/test/wsdl/choice/test_choice.rb +134 -0
- data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
- data/test/wsdl/complexcontent/test_echo.rb +101 -0
- data/test/wsdl/datetime/DatetimeService.rb +44 -0
- data/test/wsdl/datetime/datetime.rb +0 -0
- data/test/wsdl/datetime/datetime.wsdl +45 -0
- data/test/wsdl/datetime/datetimeServant.rb +21 -0
- data/test/wsdl/datetime/test_datetime.rb +82 -0
- data/test/wsdl/document/array/double.wsdl +72 -0
- data/test/wsdl/document/array/test_array.rb +117 -0
- data/test/wsdl/document/document.wsdl +74 -0
- data/test/wsdl/document/number.wsdl +54 -0
- data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
- data/test/wsdl/document/test_nosoapaction.rb +109 -0
- data/test/wsdl/document/test_number.rb +99 -0
- data/test/wsdl/document/test_rpc.rb +211 -0
- data/test/wsdl/emptycomplextype.wsdl +31 -0
- data/test/wsdl/list/list.wsdl +93 -0
- data/test/wsdl/list/test_list.rb +134 -0
- data/test/wsdl/map/map.wsdl +92 -0
- data/test/wsdl/map/map.xml +43 -0
- data/test/wsdl/map/test_map.rb +99 -0
- data/test/wsdl/marshal/person.wsdl +21 -0
- data/test/wsdl/marshal/person_org.rb +18 -0
- data/test/wsdl/marshal/test_wsdlmarshal.rb +79 -0
- data/test/wsdl/multiplefault.wsdl +68 -0
- data/test/wsdl/overload/overload.wsdl +80 -0
- data/test/wsdl/overload/test_overload.rb +118 -0
- data/test/wsdl/qualified/lp.wsdl +47 -0
- data/test/wsdl/qualified/lp.xsd +26 -0
- data/test/wsdl/qualified/np.wsdl +51 -0
- data/test/wsdl/qualified/test_qualified.rb +145 -0
- data/test/wsdl/qualified/test_unqualified.rb +159 -0
- data/test/wsdl/raa/RAA.rb +120 -0
- data/test/wsdl/raa/RAAServant.rb +107 -0
- data/test/wsdl/raa/RAAService.rb +120 -0
- data/test/wsdl/raa/README.txt +8 -0
- data/test/wsdl/raa/raa.wsdl +264 -0
- data/test/wsdl/raa/server.rb +103 -0
- data/test/wsdl/raa/test_raa.rb +91 -0
- data/test/wsdl/ref/expectedProduct.rb +158 -0
- data/test/wsdl/ref/product.wsdl +147 -0
- data/test/wsdl/ref/test_ref.rb +289 -0
- data/test/wsdl/rpc/rpc.wsdl +83 -0
- data/test/wsdl/rpc/test-rpc-lit.wsdl +364 -0
- data/test/wsdl/rpc/test_rpc.rb +173 -0
- data/test/wsdl/rpc/test_rpc_lit.rb +407 -0
- data/test/wsdl/simplecontent/simplecontent.wsdl +83 -0
- data/test/wsdl/simplecontent/test_simplecontent.rb +116 -0
- data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedDriver.rb +55 -0
- data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +19 -0
- data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
- data/test/wsdl/simpletype/rpc/expectedService.rb +51 -0
- data/test/wsdl/simpletype/rpc/rpc.wsdl +80 -0
- data/test/wsdl/simpletype/rpc/test_rpc.rb +62 -0
- data/test/wsdl/simpletype/simpletype.wsdl +95 -0
- data/test/wsdl/simpletype/test_simpletype.rb +99 -0
- data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
- data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +19 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +55 -0
- data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +44 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.rb +51 -0
- data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
- data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +96 -0
- data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +79 -0
- data/test/wsdl/soaptype/soaptype.wsdl +61 -0
- data/test/wsdl/soaptype/test_soaptype.rb +160 -0
- data/test/wsdl/test_emptycomplextype.rb +21 -0
- data/test/wsdl/test_fault.rb +50 -0
- data/test/wsdl/test_multiplefault.rb +39 -0
- data/test/xsd/codegen/test_classdef.rb +214 -0
- data/test/xsd/noencoding.xml +4 -0
- data/test/xsd/test_noencoding.rb +32 -0
- data/test/xsd/test_ns.rb +20 -0
- data/test/xsd/test_xmlschemaparser.rb +22 -0
- data/test/xsd/test_xsd.rb +1523 -0
- data/test/xsd/xmllang.xml +43 -0
- data/test/xsd/xmlschema.xml +12 -0
- metadata +539 -0
@@ -0,0 +1,1739 @@
|
|
1
|
+
File: clientKafkaXSLT_GroupB.log - Wiredumps for SOAP4R client / KafkaXSLTSOAP server.
|
2
|
+
Date: Sat Jul 23 21:02:33 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
|
+
clientKafkaXSLT.rb:14
|
17
|
+
|
18
|
+
! CONNECTION CLOSED
|
19
|
+
Wire dump:
|
20
|
+
|
21
|
+
= Request
|
22
|
+
|
23
|
+
! CONNECTION ESTABLISHED
|
24
|
+
POST /services/interop.asmx HTTP/1.1
|
25
|
+
SOAPAction: "http://soapinterop.org/"
|
26
|
+
Content-Type: text/xml; charset=utf-8
|
27
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
28
|
+
Date: Sat Jul 23 21:02:34 JST 2005
|
29
|
+
Content-Length: 700
|
30
|
+
Host: www.thoughtpost.com
|
31
|
+
|
32
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
33
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
34
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
35
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
36
|
+
<env:Body>
|
37
|
+
<n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
38
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
39
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
40
|
+
xsi:type="n2:SOAPStruct">
|
41
|
+
<varString xsi:type="xsd:string">a</varString>
|
42
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
43
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
44
|
+
</inputStruct>
|
45
|
+
</n1:echoStructAsSimpleTypes>
|
46
|
+
</env:Body>
|
47
|
+
</env:Envelope>
|
48
|
+
|
49
|
+
= Response
|
50
|
+
|
51
|
+
HTTP/1.1 404 Not Found
|
52
|
+
Date: Sat, 23 Jul 2005 12:08:07 GMT
|
53
|
+
Server: Microsoft-IIS/6.0
|
54
|
+
Set-Cookie: server=1
|
55
|
+
X-AspNet-Version: 1.1.4322
|
56
|
+
Cache-Control: private
|
57
|
+
Content-Type: text/html; charset=utf-8
|
58
|
+
Content-Length: 3385
|
59
|
+
|
60
|
+
<html>
|
61
|
+
<head>
|
62
|
+
<title>The resource cannot be found.</title>
|
63
|
+
<style>
|
64
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
65
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
66
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
67
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
68
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
69
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
70
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
71
|
+
.version {color: gray;}
|
72
|
+
.error {margin-bottom: 10px;}
|
73
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
74
|
+
</style>
|
75
|
+
</head>
|
76
|
+
|
77
|
+
<body bgcolor="white">
|
78
|
+
|
79
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
80
|
+
|
81
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
82
|
+
|
83
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
84
|
+
|
85
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
86
|
+
<br><br>
|
87
|
+
|
88
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
89
|
+
|
90
|
+
<hr width=100% size=1 color=silver>
|
91
|
+
|
92
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
93
|
+
|
94
|
+
</font>
|
95
|
+
|
96
|
+
</body>
|
97
|
+
</html>
|
98
|
+
<!--
|
99
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
100
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
101
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
102
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
103
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
104
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
105
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
106
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
107
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
108
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
109
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
110
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
111
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
112
|
+
--><!--
|
113
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
114
|
+
|
115
|
+
|
116
|
+
##########
|
117
|
+
# echoStructAsSimpleTypes (nil)
|
118
|
+
|
119
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
120
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
121
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
122
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
123
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
124
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
125
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoStructAsSimpleTypes'
|
126
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoStructAsSimpleTypes'
|
127
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1687:in `doTestGroupB'
|
128
|
+
clientKafkaXSLT.rb:14
|
129
|
+
|
130
|
+
Wire dump:
|
131
|
+
|
132
|
+
= Request
|
133
|
+
|
134
|
+
POST /services/interop.asmx HTTP/1.1
|
135
|
+
SOAPAction: "http://soapinterop.org/"
|
136
|
+
Content-Type: text/xml; charset=utf-8
|
137
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
138
|
+
Date: Sat Jul 23 21:02:34 JST 2005
|
139
|
+
Content-Length: 677
|
140
|
+
Host: www.thoughtpost.com
|
141
|
+
|
142
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
143
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
144
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
145
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
146
|
+
<env:Body>
|
147
|
+
<n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
148
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
149
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
150
|
+
xsi:type="n2:SOAPStruct">
|
151
|
+
<varString xsi:nil="true"></varString>
|
152
|
+
<varFloat xsi:nil="true"></varFloat>
|
153
|
+
<varInt xsi:nil="true"></varInt>
|
154
|
+
</inputStruct>
|
155
|
+
</n1:echoStructAsSimpleTypes>
|
156
|
+
</env:Body>
|
157
|
+
</env:Envelope>
|
158
|
+
|
159
|
+
= Response
|
160
|
+
|
161
|
+
HTTP/1.1 404 Not Found
|
162
|
+
Date: Sat, 23 Jul 2005 12:08:08 GMT
|
163
|
+
Server: Microsoft-IIS/6.0
|
164
|
+
Set-Cookie: server=1
|
165
|
+
X-AspNet-Version: 1.1.4322
|
166
|
+
Cache-Control: private
|
167
|
+
Content-Type: text/html; charset=utf-8
|
168
|
+
Content-Length: 3385
|
169
|
+
|
170
|
+
<html>
|
171
|
+
<head>
|
172
|
+
<title>The resource cannot be found.</title>
|
173
|
+
<style>
|
174
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
175
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
176
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
177
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
178
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
179
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
180
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
181
|
+
.version {color: gray;}
|
182
|
+
.error {margin-bottom: 10px;}
|
183
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
184
|
+
</style>
|
185
|
+
</head>
|
186
|
+
|
187
|
+
<body bgcolor="white">
|
188
|
+
|
189
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
190
|
+
|
191
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
192
|
+
|
193
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
194
|
+
|
195
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
196
|
+
<br><br>
|
197
|
+
|
198
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
199
|
+
|
200
|
+
<hr width=100% size=1 color=silver>
|
201
|
+
|
202
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
203
|
+
|
204
|
+
</font>
|
205
|
+
|
206
|
+
</body>
|
207
|
+
</html>
|
208
|
+
<!--
|
209
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
210
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
211
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
212
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
213
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
214
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
215
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
216
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
217
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
218
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
219
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
220
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
221
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
222
|
+
--><!--
|
223
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
224
|
+
|
225
|
+
|
226
|
+
##########
|
227
|
+
# echoSimpleTypesAsStruct
|
228
|
+
|
229
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
230
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
231
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
232
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
233
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
234
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
235
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
|
236
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
|
237
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1698:in `doTestGroupB'
|
238
|
+
clientKafkaXSLT.rb:14
|
239
|
+
|
240
|
+
Wire dump:
|
241
|
+
|
242
|
+
= Request
|
243
|
+
|
244
|
+
POST /services/interop.asmx HTTP/1.1
|
245
|
+
SOAPAction: "http://soapinterop.org/"
|
246
|
+
Content-Type: text/xml; charset=utf-8
|
247
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
248
|
+
Date: Sat Jul 23 21:02:35 JST 2005
|
249
|
+
Content-Length: 600
|
250
|
+
Host: www.thoughtpost.com
|
251
|
+
|
252
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
253
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
254
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
255
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
256
|
+
<env:Body>
|
257
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
258
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
259
|
+
<inputString xsi:type="xsd:string">a</inputString>
|
260
|
+
<inputInteger xsi:type="xsd:int">1</inputInteger>
|
261
|
+
<inputFloat xsi:type="xsd:float">+1.1</inputFloat>
|
262
|
+
</n1:echoSimpleTypesAsStruct>
|
263
|
+
</env:Body>
|
264
|
+
</env:Envelope>
|
265
|
+
|
266
|
+
= Response
|
267
|
+
|
268
|
+
HTTP/1.1 404 Not Found
|
269
|
+
Date: Sat, 23 Jul 2005 12:08:08 GMT
|
270
|
+
Server: Microsoft-IIS/6.0
|
271
|
+
Set-Cookie: server=1
|
272
|
+
X-AspNet-Version: 1.1.4322
|
273
|
+
Cache-Control: private
|
274
|
+
Content-Type: text/html; charset=utf-8
|
275
|
+
Content-Length: 3385
|
276
|
+
|
277
|
+
<html>
|
278
|
+
<head>
|
279
|
+
<title>The resource cannot be found.</title>
|
280
|
+
<style>
|
281
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
282
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
283
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
284
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
285
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
286
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
287
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
288
|
+
.version {color: gray;}
|
289
|
+
.error {margin-bottom: 10px;}
|
290
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
291
|
+
</style>
|
292
|
+
</head>
|
293
|
+
|
294
|
+
<body bgcolor="white">
|
295
|
+
|
296
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
297
|
+
|
298
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
299
|
+
|
300
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
301
|
+
|
302
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
303
|
+
<br><br>
|
304
|
+
|
305
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
306
|
+
|
307
|
+
<hr width=100% size=1 color=silver>
|
308
|
+
|
309
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
310
|
+
|
311
|
+
</font>
|
312
|
+
|
313
|
+
</body>
|
314
|
+
</html>
|
315
|
+
<!--
|
316
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
317
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
318
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
319
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
320
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
321
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
322
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
323
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
324
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
325
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
326
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
327
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
328
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
329
|
+
--><!--
|
330
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
331
|
+
|
332
|
+
|
333
|
+
##########
|
334
|
+
# echoSimpleTypesAsStruct (nil)
|
335
|
+
|
336
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
337
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
338
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
339
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
340
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
341
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
342
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoSimpleTypesAsStruct'
|
343
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoSimpleTypesAsStruct'
|
344
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1708:in `doTestGroupB'
|
345
|
+
clientKafkaXSLT.rb:14
|
346
|
+
|
347
|
+
Wire dump:
|
348
|
+
|
349
|
+
= Request
|
350
|
+
|
351
|
+
POST /services/interop.asmx HTTP/1.1
|
352
|
+
SOAPAction: "http://soapinterop.org/"
|
353
|
+
Content-Type: text/xml; charset=utf-8
|
354
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
355
|
+
Date: Sat Jul 23 21:02:36 JST 2005
|
356
|
+
Content-Length: 577
|
357
|
+
Host: www.thoughtpost.com
|
358
|
+
|
359
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
360
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
361
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
362
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
363
|
+
<env:Body>
|
364
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
365
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
366
|
+
<inputString xsi:nil="true"></inputString>
|
367
|
+
<inputInteger xsi:nil="true"></inputInteger>
|
368
|
+
<inputFloat xsi:nil="true"></inputFloat>
|
369
|
+
</n1:echoSimpleTypesAsStruct>
|
370
|
+
</env:Body>
|
371
|
+
</env:Envelope>
|
372
|
+
|
373
|
+
= Response
|
374
|
+
|
375
|
+
HTTP/1.1 404 Not Found
|
376
|
+
Date: Sat, 23 Jul 2005 12:08:09 GMT
|
377
|
+
Server: Microsoft-IIS/6.0
|
378
|
+
Set-Cookie: server=1
|
379
|
+
X-AspNet-Version: 1.1.4322
|
380
|
+
Cache-Control: private
|
381
|
+
Content-Type: text/html; charset=utf-8
|
382
|
+
Content-Length: 3385
|
383
|
+
|
384
|
+
<html>
|
385
|
+
<head>
|
386
|
+
<title>The resource cannot be found.</title>
|
387
|
+
<style>
|
388
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
389
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
390
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
391
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
392
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
393
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
394
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
395
|
+
.version {color: gray;}
|
396
|
+
.error {margin-bottom: 10px;}
|
397
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
398
|
+
</style>
|
399
|
+
</head>
|
400
|
+
|
401
|
+
<body bgcolor="white">
|
402
|
+
|
403
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
404
|
+
|
405
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
406
|
+
|
407
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
408
|
+
|
409
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
410
|
+
<br><br>
|
411
|
+
|
412
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
413
|
+
|
414
|
+
<hr width=100% size=1 color=silver>
|
415
|
+
|
416
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
417
|
+
|
418
|
+
</font>
|
419
|
+
|
420
|
+
</body>
|
421
|
+
</html>
|
422
|
+
<!--
|
423
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
424
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
425
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
426
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
427
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
428
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
429
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
430
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
431
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
432
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
433
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
434
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
435
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
436
|
+
--><!--
|
437
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
438
|
+
|
439
|
+
|
440
|
+
##########
|
441
|
+
# echo2DStringArray
|
442
|
+
|
443
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
444
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
445
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
446
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
447
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
448
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
449
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
|
450
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
|
451
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1747:in `doTestGroupB'
|
452
|
+
clientKafkaXSLT.rb:14
|
453
|
+
|
454
|
+
Wire dump:
|
455
|
+
|
456
|
+
= Request
|
457
|
+
|
458
|
+
POST /services/interop.asmx HTTP/1.1
|
459
|
+
SOAPAction: "http://soapinterop.org/"
|
460
|
+
Content-Type: text/xml; charset=utf-8
|
461
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
462
|
+
Date: Sat Jul 23 21:02:36 JST 2005
|
463
|
+
Content-Length: 889
|
464
|
+
Host: www.thoughtpost.com
|
465
|
+
|
466
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
467
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
468
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
469
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
470
|
+
<env:Body>
|
471
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
472
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
473
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
474
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
475
|
+
xsi:type="n2:ArrayOfString2D"
|
476
|
+
n3:arrayType="xsd:string[3,3]">
|
477
|
+
<item>r0c0</item>
|
478
|
+
<item>r1c0</item>
|
479
|
+
<item>r2c0</item>
|
480
|
+
<item>r0c1</item>
|
481
|
+
<item>r1c1</item>
|
482
|
+
<item>r2c1</item>
|
483
|
+
<item>r0c2</item>
|
484
|
+
<item>r1c2</item>
|
485
|
+
<item>r2c2</item>
|
486
|
+
</input2DStringArray>
|
487
|
+
</n1:echo2DStringArray>
|
488
|
+
</env:Body>
|
489
|
+
</env:Envelope>
|
490
|
+
|
491
|
+
= Response
|
492
|
+
|
493
|
+
HTTP/1.1 404 Not Found
|
494
|
+
Date: Sat, 23 Jul 2005 12:08:09 GMT
|
495
|
+
Server: Microsoft-IIS/6.0
|
496
|
+
Set-Cookie: server=1
|
497
|
+
X-AspNet-Version: 1.1.4322
|
498
|
+
Cache-Control: private
|
499
|
+
Content-Type: text/html; charset=utf-8
|
500
|
+
Content-Length: 3385
|
501
|
+
|
502
|
+
<html>
|
503
|
+
<head>
|
504
|
+
<title>The resource cannot be found.</title>
|
505
|
+
<style>
|
506
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
507
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
508
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
509
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
510
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
511
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
512
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
513
|
+
.version {color: gray;}
|
514
|
+
.error {margin-bottom: 10px;}
|
515
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
516
|
+
</style>
|
517
|
+
</head>
|
518
|
+
|
519
|
+
<body bgcolor="white">
|
520
|
+
|
521
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
522
|
+
|
523
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
524
|
+
|
525
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
526
|
+
|
527
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
528
|
+
<br><br>
|
529
|
+
|
530
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
531
|
+
|
532
|
+
<hr width=100% size=1 color=silver>
|
533
|
+
|
534
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
535
|
+
|
536
|
+
</font>
|
537
|
+
|
538
|
+
</body>
|
539
|
+
</html>
|
540
|
+
<!--
|
541
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
542
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
543
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
544
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
545
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
546
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
547
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
548
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
549
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
550
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
551
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
552
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
553
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
554
|
+
--><!--
|
555
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
556
|
+
|
557
|
+
|
558
|
+
##########
|
559
|
+
# echo2DStringArray (anyType array)
|
560
|
+
|
561
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
562
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
563
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
564
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
565
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
566
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
567
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
|
568
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
|
569
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1765:in `doTestGroupB'
|
570
|
+
clientKafkaXSLT.rb:14
|
571
|
+
|
572
|
+
Wire dump:
|
573
|
+
|
574
|
+
= Request
|
575
|
+
|
576
|
+
POST /services/interop.asmx HTTP/1.1
|
577
|
+
SOAPAction: "http://soapinterop.org/"
|
578
|
+
Content-Type: text/xml; charset=utf-8
|
579
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
580
|
+
Date: Sat Jul 23 21:02:37 JST 2005
|
581
|
+
Content-Length: 1088
|
582
|
+
Host: www.thoughtpost.com
|
583
|
+
|
584
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
585
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
586
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
587
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
588
|
+
<env:Body>
|
589
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
590
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
591
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
592
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
593
|
+
xsi:type="n2:ArrayOfString2D"
|
594
|
+
n3:arrayType="xsd:anyType[3,3]">
|
595
|
+
<item xsi:type="xsd:string">r0c0</item>
|
596
|
+
<item xsi:type="xsd:string">r0c1</item>
|
597
|
+
<item xsi:type="xsd:string">r0c2</item>
|
598
|
+
<item xsi:type="xsd:string">r1c0</item>
|
599
|
+
<item xsi:type="xsd:string">r1c1</item>
|
600
|
+
<item xsi:type="xsd:string">r1c2</item>
|
601
|
+
<item xsi:type="xsd:string">r2c0</item>
|
602
|
+
<item xsi:type="xsd:string">r0c1</item>
|
603
|
+
<item xsi:type="xsd:string">r2c2</item>
|
604
|
+
</input2DStringArray>
|
605
|
+
</n1:echo2DStringArray>
|
606
|
+
</env:Body>
|
607
|
+
</env:Envelope>
|
608
|
+
|
609
|
+
= Response
|
610
|
+
|
611
|
+
HTTP/1.1 404 Not Found
|
612
|
+
Date: Sat, 23 Jul 2005 12:08:10 GMT
|
613
|
+
Server: Microsoft-IIS/6.0
|
614
|
+
Set-Cookie: server=1
|
615
|
+
X-AspNet-Version: 1.1.4322
|
616
|
+
Cache-Control: private
|
617
|
+
Content-Type: text/html; charset=utf-8
|
618
|
+
Content-Length: 3385
|
619
|
+
|
620
|
+
<html>
|
621
|
+
<head>
|
622
|
+
<title>The resource cannot be found.</title>
|
623
|
+
<style>
|
624
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
625
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
626
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
627
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
628
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
629
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
630
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
631
|
+
.version {color: gray;}
|
632
|
+
.error {margin-bottom: 10px;}
|
633
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
634
|
+
</style>
|
635
|
+
</head>
|
636
|
+
|
637
|
+
<body bgcolor="white">
|
638
|
+
|
639
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
640
|
+
|
641
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
642
|
+
|
643
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
644
|
+
|
645
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
646
|
+
<br><br>
|
647
|
+
|
648
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
649
|
+
|
650
|
+
<hr width=100% size=1 color=silver>
|
651
|
+
|
652
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
653
|
+
|
654
|
+
</font>
|
655
|
+
|
656
|
+
</body>
|
657
|
+
</html>
|
658
|
+
<!--
|
659
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
660
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
661
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
662
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
663
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
664
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
665
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
666
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
667
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
668
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
669
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
670
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
671
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
672
|
+
--><!--
|
673
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
674
|
+
|
675
|
+
|
676
|
+
##########
|
677
|
+
# echo2DStringArray (multi-ref)
|
678
|
+
|
679
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
680
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
681
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
682
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
683
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
684
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
685
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
|
686
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
|
687
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1828:in `doTestGroupB'
|
688
|
+
clientKafkaXSLT.rb:14
|
689
|
+
|
690
|
+
Wire dump:
|
691
|
+
|
692
|
+
= Request
|
693
|
+
|
694
|
+
POST /services/interop.asmx HTTP/1.1
|
695
|
+
SOAPAction: "http://soapinterop.org/"
|
696
|
+
Content-Type: text/xml; charset=utf-8
|
697
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
698
|
+
Date: Sat Jul 23 21:02:37 JST 2005
|
699
|
+
Content-Length: 1063
|
700
|
+
Host: www.thoughtpost.com
|
701
|
+
|
702
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
703
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
704
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
705
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
706
|
+
<env:Body>
|
707
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
708
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
709
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
710
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
711
|
+
xsi:type="n2:ArrayOfString2D"
|
712
|
+
n3:arrayType="xsd:string[3,3]">
|
713
|
+
<item>r0c0</item>
|
714
|
+
<item>r1c0</item>
|
715
|
+
<item href="#id-605614638"></item>
|
716
|
+
<item>r0c1</item>
|
717
|
+
<item>r1c1</item>
|
718
|
+
<item>r2c1</item>
|
719
|
+
<item href="#id-605614638"></item>
|
720
|
+
<item>r1c2</item>
|
721
|
+
<item>r2c2</item>
|
722
|
+
</input2DStringArray>
|
723
|
+
</n1:echo2DStringArray>
|
724
|
+
<item id="id-605614638"
|
725
|
+
xsi:type="xsd:string"
|
726
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
727
|
+
</env:Body>
|
728
|
+
</env:Envelope>
|
729
|
+
|
730
|
+
= Response
|
731
|
+
|
732
|
+
HTTP/1.1 404 Not Found
|
733
|
+
Date: Sat, 23 Jul 2005 12:08:10 GMT
|
734
|
+
Server: Microsoft-IIS/6.0
|
735
|
+
Set-Cookie: server=1
|
736
|
+
X-AspNet-Version: 1.1.4322
|
737
|
+
Cache-Control: private
|
738
|
+
Content-Type: text/html; charset=utf-8
|
739
|
+
Content-Length: 3385
|
740
|
+
|
741
|
+
<html>
|
742
|
+
<head>
|
743
|
+
<title>The resource cannot be found.</title>
|
744
|
+
<style>
|
745
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
746
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
747
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
748
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
749
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
750
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
751
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
752
|
+
.version {color: gray;}
|
753
|
+
.error {margin-bottom: 10px;}
|
754
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
755
|
+
</style>
|
756
|
+
</head>
|
757
|
+
|
758
|
+
<body bgcolor="white">
|
759
|
+
|
760
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
761
|
+
|
762
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
763
|
+
|
764
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
765
|
+
|
766
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
767
|
+
<br><br>
|
768
|
+
|
769
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
770
|
+
|
771
|
+
<hr width=100% size=1 color=silver>
|
772
|
+
|
773
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
774
|
+
|
775
|
+
</font>
|
776
|
+
|
777
|
+
</body>
|
778
|
+
</html>
|
779
|
+
<!--
|
780
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
781
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
782
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
783
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
784
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
785
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
786
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
787
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
788
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
789
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
790
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
791
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
792
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
793
|
+
--><!--
|
794
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
795
|
+
|
796
|
+
|
797
|
+
##########
|
798
|
+
# echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
|
799
|
+
|
800
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
801
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
802
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
803
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
804
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
805
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
806
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echo2DStringArray'
|
807
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echo2DStringArray'
|
808
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1852:in `doTestGroupB'
|
809
|
+
clientKafkaXSLT.rb:14
|
810
|
+
|
811
|
+
Wire dump:
|
812
|
+
|
813
|
+
= Request
|
814
|
+
|
815
|
+
POST /services/interop.asmx HTTP/1.1
|
816
|
+
SOAPAction: "http://soapinterop.org/"
|
817
|
+
Content-Type: text/xml; charset=utf-8
|
818
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
819
|
+
Date: Sat Jul 23 21:02:38 JST 2005
|
820
|
+
Content-Length: 1063
|
821
|
+
Host: www.thoughtpost.com
|
822
|
+
|
823
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
824
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
825
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
826
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
827
|
+
<env:Body>
|
828
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
829
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
830
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
831
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
832
|
+
xsi:type="n2:ArrayOfString2D"
|
833
|
+
n3:arrayType="xsd:string[3,3]">
|
834
|
+
<item>r0c0</item>
|
835
|
+
<item>r1c0</item>
|
836
|
+
<item href="#id-605636668"></item>
|
837
|
+
<item>r0c1</item>
|
838
|
+
<item>r1c1</item>
|
839
|
+
<item>r2c1</item>
|
840
|
+
<item href="#id-605636668"></item>
|
841
|
+
<item>r1c2</item>
|
842
|
+
<item>r2c2</item>
|
843
|
+
</input2DStringArray>
|
844
|
+
</n1:echo2DStringArray>
|
845
|
+
<item id="id-605636668"
|
846
|
+
xsi:type="xsd:string"
|
847
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
848
|
+
</env:Body>
|
849
|
+
</env:Envelope>
|
850
|
+
|
851
|
+
= Response
|
852
|
+
|
853
|
+
HTTP/1.1 404 Not Found
|
854
|
+
Date: Sat, 23 Jul 2005 12:08:11 GMT
|
855
|
+
Server: Microsoft-IIS/6.0
|
856
|
+
Set-Cookie: server=1
|
857
|
+
X-AspNet-Version: 1.1.4322
|
858
|
+
Cache-Control: private
|
859
|
+
Content-Type: text/html; charset=utf-8
|
860
|
+
Content-Length: 3385
|
861
|
+
|
862
|
+
<html>
|
863
|
+
<head>
|
864
|
+
<title>The resource cannot be found.</title>
|
865
|
+
<style>
|
866
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
867
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
868
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
869
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
870
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
871
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
872
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
873
|
+
.version {color: gray;}
|
874
|
+
.error {margin-bottom: 10px;}
|
875
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
876
|
+
</style>
|
877
|
+
</head>
|
878
|
+
|
879
|
+
<body bgcolor="white">
|
880
|
+
|
881
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
882
|
+
|
883
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
884
|
+
|
885
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
886
|
+
|
887
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
888
|
+
<br><br>
|
889
|
+
|
890
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
891
|
+
|
892
|
+
<hr width=100% size=1 color=silver>
|
893
|
+
|
894
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
895
|
+
|
896
|
+
</font>
|
897
|
+
|
898
|
+
</body>
|
899
|
+
</html>
|
900
|
+
<!--
|
901
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
902
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
903
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
904
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
905
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
906
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
907
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
908
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
909
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
910
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
911
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
912
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
913
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
914
|
+
--><!--
|
915
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
916
|
+
|
917
|
+
|
918
|
+
##########
|
919
|
+
# echoNestedStruct
|
920
|
+
|
921
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
922
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
923
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
924
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
925
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
926
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
927
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
|
928
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
|
929
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1882:in `doTestGroupB'
|
930
|
+
clientKafkaXSLT.rb:14
|
931
|
+
|
932
|
+
Wire dump:
|
933
|
+
|
934
|
+
= Request
|
935
|
+
|
936
|
+
POST /services/interop.asmx HTTP/1.1
|
937
|
+
SOAPAction: "http://soapinterop.org/"
|
938
|
+
Content-Type: text/xml; charset=utf-8
|
939
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
940
|
+
Date: Sat Jul 23 21:02:38 JST 2005
|
941
|
+
Content-Length: 920
|
942
|
+
Host: www.thoughtpost.com
|
943
|
+
|
944
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
945
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
946
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
947
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
948
|
+
<env:Body>
|
949
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
950
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
951
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
952
|
+
xsi:type="n2:SOAPStructStruct">
|
953
|
+
<varString xsi:type="xsd:string">a</varString>
|
954
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
955
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
956
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
957
|
+
<varString xsi:type="xsd:string">b</varString>
|
958
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
959
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
960
|
+
</varStruct>
|
961
|
+
</inputStruct>
|
962
|
+
</n1:echoNestedStruct>
|
963
|
+
</env:Body>
|
964
|
+
</env:Envelope>
|
965
|
+
|
966
|
+
= Response
|
967
|
+
|
968
|
+
HTTP/1.1 404 Not Found
|
969
|
+
Date: Sat, 23 Jul 2005 12:08:11 GMT
|
970
|
+
Server: Microsoft-IIS/6.0
|
971
|
+
Set-Cookie: server=1
|
972
|
+
X-AspNet-Version: 1.1.4322
|
973
|
+
Cache-Control: private
|
974
|
+
Content-Type: text/html; charset=utf-8
|
975
|
+
Content-Length: 3385
|
976
|
+
|
977
|
+
<html>
|
978
|
+
<head>
|
979
|
+
<title>The resource cannot be found.</title>
|
980
|
+
<style>
|
981
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
982
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
983
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
984
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
985
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
986
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
987
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
988
|
+
.version {color: gray;}
|
989
|
+
.error {margin-bottom: 10px;}
|
990
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
991
|
+
</style>
|
992
|
+
</head>
|
993
|
+
|
994
|
+
<body bgcolor="white">
|
995
|
+
|
996
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
997
|
+
|
998
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
999
|
+
|
1000
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1001
|
+
|
1002
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1003
|
+
<br><br>
|
1004
|
+
|
1005
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1006
|
+
|
1007
|
+
<hr width=100% size=1 color=silver>
|
1008
|
+
|
1009
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1010
|
+
|
1011
|
+
</font>
|
1012
|
+
|
1013
|
+
</body>
|
1014
|
+
</html>
|
1015
|
+
<!--
|
1016
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1017
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1018
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1019
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1020
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1021
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1022
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1023
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1024
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1025
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1026
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1027
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1028
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1029
|
+
--><!--
|
1030
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1031
|
+
|
1032
|
+
|
1033
|
+
##########
|
1034
|
+
# echoNestedStruct (nil)
|
1035
|
+
|
1036
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
1037
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
1038
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
1039
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
1040
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
1041
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
1042
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
|
1043
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
|
1044
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1894:in `doTestGroupB'
|
1045
|
+
clientKafkaXSLT.rb:14
|
1046
|
+
|
1047
|
+
Wire dump:
|
1048
|
+
|
1049
|
+
= Request
|
1050
|
+
|
1051
|
+
POST /services/interop.asmx HTTP/1.1
|
1052
|
+
SOAPAction: "http://soapinterop.org/"
|
1053
|
+
Content-Type: text/xml; charset=utf-8
|
1054
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
1055
|
+
Date: Sat Jul 23 21:02:39 JST 2005
|
1056
|
+
Content-Length: 874
|
1057
|
+
Host: www.thoughtpost.com
|
1058
|
+
|
1059
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
1060
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1061
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
1062
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
1063
|
+
<env:Body>
|
1064
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
1065
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
1066
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
1067
|
+
xsi:type="n2:SOAPStructStruct">
|
1068
|
+
<varString xsi:nil="true"></varString>
|
1069
|
+
<varFloat xsi:nil="true"></varFloat>
|
1070
|
+
<varInt xsi:nil="true"></varInt>
|
1071
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
1072
|
+
<varString xsi:nil="true"></varString>
|
1073
|
+
<varFloat xsi:nil="true"></varFloat>
|
1074
|
+
<varInt xsi:nil="true"></varInt>
|
1075
|
+
</varStruct>
|
1076
|
+
</inputStruct>
|
1077
|
+
</n1:echoNestedStruct>
|
1078
|
+
</env:Body>
|
1079
|
+
</env:Envelope>
|
1080
|
+
|
1081
|
+
= Response
|
1082
|
+
|
1083
|
+
HTTP/1.1 404 Not Found
|
1084
|
+
Date: Sat, 23 Jul 2005 12:08:12 GMT
|
1085
|
+
Server: Microsoft-IIS/6.0
|
1086
|
+
Set-Cookie: server=1
|
1087
|
+
X-AspNet-Version: 1.1.4322
|
1088
|
+
Cache-Control: private
|
1089
|
+
Content-Type: text/html; charset=utf-8
|
1090
|
+
Content-Length: 3385
|
1091
|
+
|
1092
|
+
<html>
|
1093
|
+
<head>
|
1094
|
+
<title>The resource cannot be found.</title>
|
1095
|
+
<style>
|
1096
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
1097
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
1098
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
1099
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
1100
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
1101
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
1102
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
1103
|
+
.version {color: gray;}
|
1104
|
+
.error {margin-bottom: 10px;}
|
1105
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
1106
|
+
</style>
|
1107
|
+
</head>
|
1108
|
+
|
1109
|
+
<body bgcolor="white">
|
1110
|
+
|
1111
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
1112
|
+
|
1113
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
1114
|
+
|
1115
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1116
|
+
|
1117
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1118
|
+
<br><br>
|
1119
|
+
|
1120
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1121
|
+
|
1122
|
+
<hr width=100% size=1 color=silver>
|
1123
|
+
|
1124
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1125
|
+
|
1126
|
+
</font>
|
1127
|
+
|
1128
|
+
</body>
|
1129
|
+
</html>
|
1130
|
+
<!--
|
1131
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1132
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1133
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1134
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1135
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1136
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1137
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1138
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1139
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1140
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1141
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1142
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1143
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1144
|
+
--><!--
|
1145
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1146
|
+
|
1147
|
+
|
1148
|
+
##########
|
1149
|
+
# echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
|
1150
|
+
|
1151
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
1152
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
1153
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
1154
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
1155
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
1156
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
1157
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedStruct'
|
1158
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedStruct'
|
1159
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1907:in `doTestGroupB'
|
1160
|
+
clientKafkaXSLT.rb:14
|
1161
|
+
|
1162
|
+
Wire dump:
|
1163
|
+
|
1164
|
+
= Request
|
1165
|
+
|
1166
|
+
POST /services/interop.asmx HTTP/1.1
|
1167
|
+
SOAPAction: "http://soapinterop.org/"
|
1168
|
+
Content-Type: text/xml; charset=utf-8
|
1169
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
1170
|
+
Date: Sat Jul 23 21:02:39 JST 2005
|
1171
|
+
Content-Length: 1062
|
1172
|
+
Host: www.thoughtpost.com
|
1173
|
+
|
1174
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
1175
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1176
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
1177
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
1178
|
+
<env:Body>
|
1179
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
1180
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
1181
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
1182
|
+
xsi:type="n2:SOAPStructStruct">
|
1183
|
+
<varString href="#id-605669668"></varString>
|
1184
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
1185
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
1186
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
1187
|
+
<varString href="#id-605669668"></varString>
|
1188
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
1189
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
1190
|
+
</varStruct>
|
1191
|
+
</inputStruct>
|
1192
|
+
</n1:echoNestedStruct>
|
1193
|
+
<varString id="id-605669668"
|
1194
|
+
xsi:type="xsd:string"
|
1195
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
1196
|
+
</env:Body>
|
1197
|
+
</env:Envelope>
|
1198
|
+
|
1199
|
+
= Response
|
1200
|
+
|
1201
|
+
HTTP/1.1 404 Not Found
|
1202
|
+
Date: Sat, 23 Jul 2005 12:08:12 GMT
|
1203
|
+
Server: Microsoft-IIS/6.0
|
1204
|
+
Set-Cookie: server=1
|
1205
|
+
X-AspNet-Version: 1.1.4322
|
1206
|
+
Cache-Control: private
|
1207
|
+
Content-Type: text/html; charset=utf-8
|
1208
|
+
Content-Length: 3385
|
1209
|
+
|
1210
|
+
<html>
|
1211
|
+
<head>
|
1212
|
+
<title>The resource cannot be found.</title>
|
1213
|
+
<style>
|
1214
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
1215
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
1216
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
1217
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
1218
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
1219
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
1220
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
1221
|
+
.version {color: gray;}
|
1222
|
+
.error {margin-bottom: 10px;}
|
1223
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
1224
|
+
</style>
|
1225
|
+
</head>
|
1226
|
+
|
1227
|
+
<body bgcolor="white">
|
1228
|
+
|
1229
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
1230
|
+
|
1231
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
1232
|
+
|
1233
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1234
|
+
|
1235
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1236
|
+
<br><br>
|
1237
|
+
|
1238
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1239
|
+
|
1240
|
+
<hr width=100% size=1 color=silver>
|
1241
|
+
|
1242
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1243
|
+
|
1244
|
+
</font>
|
1245
|
+
|
1246
|
+
</body>
|
1247
|
+
</html>
|
1248
|
+
<!--
|
1249
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1250
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1251
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1252
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1253
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1254
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1255
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1256
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1257
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1258
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1259
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1260
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1261
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1262
|
+
--><!--
|
1263
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1264
|
+
|
1265
|
+
|
1266
|
+
##########
|
1267
|
+
# echoNestedArray
|
1268
|
+
|
1269
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
1270
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
1271
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
1272
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
1273
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
1274
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
1275
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
1276
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
1277
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1917:in `doTestGroupB'
|
1278
|
+
clientKafkaXSLT.rb:14
|
1279
|
+
|
1280
|
+
Wire dump:
|
1281
|
+
|
1282
|
+
= Request
|
1283
|
+
|
1284
|
+
POST /services/interop.asmx HTTP/1.1
|
1285
|
+
SOAPAction: "http://soapinterop.org/"
|
1286
|
+
Content-Type: text/xml; charset=utf-8
|
1287
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
1288
|
+
Date: Sat Jul 23 21:02:40 JST 2005
|
1289
|
+
Content-Length: 931
|
1290
|
+
Host: www.thoughtpost.com
|
1291
|
+
|
1292
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
1293
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1294
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
1295
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
1296
|
+
<env:Body>
|
1297
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
1298
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
1299
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
1300
|
+
xsi:type="n2:SOAPArrayStruct">
|
1301
|
+
<varString xsi:type="xsd:string">a</varString>
|
1302
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
1303
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
1304
|
+
xsi:type="n3:Array"
|
1305
|
+
n3:arrayType="xsd:string[3]">
|
1306
|
+
<item>2</item>
|
1307
|
+
<item>2.2</item>
|
1308
|
+
<item>b</item>
|
1309
|
+
</varArray>
|
1310
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
1311
|
+
</inputStruct>
|
1312
|
+
</n1:echoNestedArray>
|
1313
|
+
</env:Body>
|
1314
|
+
</env:Envelope>
|
1315
|
+
|
1316
|
+
= Response
|
1317
|
+
|
1318
|
+
HTTP/1.1 404 Not Found
|
1319
|
+
Date: Sat, 23 Jul 2005 12:08:13 GMT
|
1320
|
+
Server: Microsoft-IIS/6.0
|
1321
|
+
Set-Cookie: server=1
|
1322
|
+
X-AspNet-Version: 1.1.4322
|
1323
|
+
Cache-Control: private
|
1324
|
+
Content-Type: text/html; charset=utf-8
|
1325
|
+
Content-Length: 3385
|
1326
|
+
|
1327
|
+
<html>
|
1328
|
+
<head>
|
1329
|
+
<title>The resource cannot be found.</title>
|
1330
|
+
<style>
|
1331
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
1332
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
1333
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
1334
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
1335
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
1336
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
1337
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
1338
|
+
.version {color: gray;}
|
1339
|
+
.error {margin-bottom: 10px;}
|
1340
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
1341
|
+
</style>
|
1342
|
+
</head>
|
1343
|
+
|
1344
|
+
<body bgcolor="white">
|
1345
|
+
|
1346
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
1347
|
+
|
1348
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
1349
|
+
|
1350
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1351
|
+
|
1352
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1353
|
+
<br><br>
|
1354
|
+
|
1355
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1356
|
+
|
1357
|
+
<hr width=100% size=1 color=silver>
|
1358
|
+
|
1359
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1360
|
+
|
1361
|
+
</font>
|
1362
|
+
|
1363
|
+
</body>
|
1364
|
+
</html>
|
1365
|
+
<!--
|
1366
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1367
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1368
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1369
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1370
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1371
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1372
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1373
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1374
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1375
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1376
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1377
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1378
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1379
|
+
--><!--
|
1380
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1381
|
+
|
1382
|
+
|
1383
|
+
##########
|
1384
|
+
# echoNestedArray (anyType array)
|
1385
|
+
|
1386
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
1387
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
1388
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
1389
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
1390
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
1391
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
1392
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
1393
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
1394
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1927:in `doTestGroupB'
|
1395
|
+
clientKafkaXSLT.rb:14
|
1396
|
+
|
1397
|
+
Wire dump:
|
1398
|
+
|
1399
|
+
= Request
|
1400
|
+
|
1401
|
+
POST /services/interop.asmx HTTP/1.1
|
1402
|
+
SOAPAction: "http://soapinterop.org/"
|
1403
|
+
Content-Type: text/xml; charset=utf-8
|
1404
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
1405
|
+
Date: Sat Jul 23 21:02:40 JST 2005
|
1406
|
+
Content-Length: 998
|
1407
|
+
Host: www.thoughtpost.com
|
1408
|
+
|
1409
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
1410
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1411
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
1412
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
1413
|
+
<env:Body>
|
1414
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
1415
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
1416
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
1417
|
+
xsi:type="n2:SOAPArrayStruct">
|
1418
|
+
<varString xsi:type="xsd:string">a</varString>
|
1419
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
1420
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
1421
|
+
xsi:type="n3:Array"
|
1422
|
+
n3:arrayType="xsd:anyType[3]">
|
1423
|
+
<item xsi:type="xsd:string">2</item>
|
1424
|
+
<item xsi:type="xsd:string">2.2</item>
|
1425
|
+
<item xsi:type="xsd:string">b</item>
|
1426
|
+
</varArray>
|
1427
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
1428
|
+
</inputStruct>
|
1429
|
+
</n1:echoNestedArray>
|
1430
|
+
</env:Body>
|
1431
|
+
</env:Envelope>
|
1432
|
+
|
1433
|
+
= Response
|
1434
|
+
|
1435
|
+
HTTP/1.1 404 Not Found
|
1436
|
+
Date: Sat, 23 Jul 2005 12:08:14 GMT
|
1437
|
+
Server: Microsoft-IIS/6.0
|
1438
|
+
Set-Cookie: server=1
|
1439
|
+
X-AspNet-Version: 1.1.4322
|
1440
|
+
Cache-Control: private
|
1441
|
+
Content-Type: text/html; charset=utf-8
|
1442
|
+
Content-Length: 3385
|
1443
|
+
|
1444
|
+
<html>
|
1445
|
+
<head>
|
1446
|
+
<title>The resource cannot be found.</title>
|
1447
|
+
<style>
|
1448
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
1449
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
1450
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
1451
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
1452
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
1453
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
1454
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
1455
|
+
.version {color: gray;}
|
1456
|
+
.error {margin-bottom: 10px;}
|
1457
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
1458
|
+
</style>
|
1459
|
+
</head>
|
1460
|
+
|
1461
|
+
<body bgcolor="white">
|
1462
|
+
|
1463
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
1464
|
+
|
1465
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
1466
|
+
|
1467
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1468
|
+
|
1469
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1470
|
+
<br><br>
|
1471
|
+
|
1472
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1473
|
+
|
1474
|
+
<hr width=100% size=1 color=silver>
|
1475
|
+
|
1476
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1477
|
+
|
1478
|
+
</font>
|
1479
|
+
|
1480
|
+
</body>
|
1481
|
+
</html>
|
1482
|
+
<!--
|
1483
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1484
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1485
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1486
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1487
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1488
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1489
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1490
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1491
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1492
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1493
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1494
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1495
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1496
|
+
--><!--
|
1497
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1498
|
+
|
1499
|
+
|
1500
|
+
##########
|
1501
|
+
# echoNestedArray (multi-ref)
|
1502
|
+
|
1503
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
1504
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
1505
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
1506
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
1507
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
1508
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
1509
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
1510
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
1511
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1938:in `doTestGroupB'
|
1512
|
+
clientKafkaXSLT.rb:14
|
1513
|
+
|
1514
|
+
Wire dump:
|
1515
|
+
|
1516
|
+
= Request
|
1517
|
+
|
1518
|
+
POST /services/interop.asmx HTTP/1.1
|
1519
|
+
SOAPAction: "http://soapinterop.org/"
|
1520
|
+
Content-Type: text/xml; charset=utf-8
|
1521
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
1522
|
+
Date: Sat Jul 23 21:02:41 JST 2005
|
1523
|
+
Content-Length: 1093
|
1524
|
+
Host: www.thoughtpost.com
|
1525
|
+
|
1526
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
1527
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1528
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
1529
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
1530
|
+
<env:Body>
|
1531
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
1532
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
1533
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
1534
|
+
xsi:type="n2:SOAPArrayStruct">
|
1535
|
+
<varString href="#id-605703178"></varString>
|
1536
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
1537
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
1538
|
+
xsi:type="n3:Array"
|
1539
|
+
n3:arrayType="xsd:string[3]">
|
1540
|
+
<item>2</item>
|
1541
|
+
<item href="#id-605703178"></item>
|
1542
|
+
<item>b</item>
|
1543
|
+
</varArray>
|
1544
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
1545
|
+
</inputStruct>
|
1546
|
+
</n1:echoNestedArray>
|
1547
|
+
<varString id="id-605703178"
|
1548
|
+
xsi:type="xsd:string"
|
1549
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
1550
|
+
</env:Body>
|
1551
|
+
</env:Envelope>
|
1552
|
+
|
1553
|
+
= Response
|
1554
|
+
|
1555
|
+
HTTP/1.1 404 Not Found
|
1556
|
+
Date: Sat, 23 Jul 2005 12:08:14 GMT
|
1557
|
+
Server: Microsoft-IIS/6.0
|
1558
|
+
Set-Cookie: server=1
|
1559
|
+
X-AspNet-Version: 1.1.4322
|
1560
|
+
Cache-Control: private
|
1561
|
+
Content-Type: text/html; charset=utf-8
|
1562
|
+
Content-Length: 3385
|
1563
|
+
|
1564
|
+
<html>
|
1565
|
+
<head>
|
1566
|
+
<title>The resource cannot be found.</title>
|
1567
|
+
<style>
|
1568
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
1569
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
1570
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
1571
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
1572
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
1573
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
1574
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
1575
|
+
.version {color: gray;}
|
1576
|
+
.error {margin-bottom: 10px;}
|
1577
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
1578
|
+
</style>
|
1579
|
+
</head>
|
1580
|
+
|
1581
|
+
<body bgcolor="white">
|
1582
|
+
|
1583
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
1584
|
+
|
1585
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
1586
|
+
|
1587
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1588
|
+
|
1589
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1590
|
+
<br><br>
|
1591
|
+
|
1592
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1593
|
+
|
1594
|
+
<hr width=100% size=1 color=silver>
|
1595
|
+
|
1596
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1597
|
+
|
1598
|
+
</font>
|
1599
|
+
|
1600
|
+
</body>
|
1601
|
+
</html>
|
1602
|
+
<!--
|
1603
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1604
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1605
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1606
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1607
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1608
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1609
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1610
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1611
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1612
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1613
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1614
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1615
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1616
|
+
--><!--
|
1617
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1618
|
+
|
1619
|
+
|
1620
|
+
##########
|
1621
|
+
# echoNestedArray (multi-ref: varString == varArray[1])
|
1622
|
+
|
1623
|
+
Result: Exception: 404: Not Found (SOAP::HTTPStreamError)
|
1624
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:183:in `send_post'
|
1625
|
+
/usr/local/lib/ruby/1.9/soap/streamHandler.rb:106:in `send'
|
1626
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:165:in `route'
|
1627
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
1628
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
1629
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
1630
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
1631
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1949:in `doTestGroupB'
|
1632
|
+
clientKafkaXSLT.rb:14
|
1633
|
+
|
1634
|
+
Wire dump:
|
1635
|
+
|
1636
|
+
= Request
|
1637
|
+
|
1638
|
+
POST /services/interop.asmx HTTP/1.1
|
1639
|
+
SOAPAction: "http://soapinterop.org/"
|
1640
|
+
Content-Type: text/xml; charset=utf-8
|
1641
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
1642
|
+
Date: Sat Jul 23 21:02:41 JST 2005
|
1643
|
+
Content-Length: 1093
|
1644
|
+
Host: www.thoughtpost.com
|
1645
|
+
|
1646
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
1647
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
1648
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
1649
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
1650
|
+
<env:Body>
|
1651
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
1652
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
1653
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
1654
|
+
xsi:type="n2:SOAPArrayStruct">
|
1655
|
+
<varString href="#id-605714688"></varString>
|
1656
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
1657
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
1658
|
+
xsi:type="n3:Array"
|
1659
|
+
n3:arrayType="xsd:string[3]">
|
1660
|
+
<item>2</item>
|
1661
|
+
<item href="#id-605714688"></item>
|
1662
|
+
<item>b</item>
|
1663
|
+
</varArray>
|
1664
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
1665
|
+
</inputStruct>
|
1666
|
+
</n1:echoNestedArray>
|
1667
|
+
<varString id="id-605714688"
|
1668
|
+
xsi:type="xsd:string"
|
1669
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
1670
|
+
</env:Body>
|
1671
|
+
</env:Envelope>
|
1672
|
+
|
1673
|
+
= Response
|
1674
|
+
|
1675
|
+
HTTP/1.1 404 Not Found
|
1676
|
+
Date: Sat, 23 Jul 2005 12:08:15 GMT
|
1677
|
+
Server: Microsoft-IIS/6.0
|
1678
|
+
Set-Cookie: server=1
|
1679
|
+
X-AspNet-Version: 1.1.4322
|
1680
|
+
Cache-Control: private
|
1681
|
+
Content-Type: text/html; charset=utf-8
|
1682
|
+
Content-Length: 3385
|
1683
|
+
|
1684
|
+
<html>
|
1685
|
+
<head>
|
1686
|
+
<title>The resource cannot be found.</title>
|
1687
|
+
<style>
|
1688
|
+
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
|
1689
|
+
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
|
1690
|
+
b {font-family:"Verdana";font-weight:bold;color:black;margin-top: -5px}
|
1691
|
+
H1 { font-family:"Verdana";font-weight:normal;font-size:18pt;color:red }
|
1692
|
+
H2 { font-family:"Verdana";font-weight:normal;font-size:14pt;color:maroon }
|
1693
|
+
pre {font-family:"Lucida Console";font-size: .9em}
|
1694
|
+
.marker {font-weight: bold; color: black;text-decoration: none;}
|
1695
|
+
.version {color: gray;}
|
1696
|
+
.error {margin-bottom: 10px;}
|
1697
|
+
.expandable { text-decoration:underline; font-weight:bold; color:navy; cursor:hand; }
|
1698
|
+
</style>
|
1699
|
+
</head>
|
1700
|
+
|
1701
|
+
<body bgcolor="white">
|
1702
|
+
|
1703
|
+
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
|
1704
|
+
|
1705
|
+
<h2> <i>The resource cannot be found.</i> </h2></span>
|
1706
|
+
|
1707
|
+
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
|
1708
|
+
|
1709
|
+
<b> Description: </b>HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly.
|
1710
|
+
<br><br>
|
1711
|
+
|
1712
|
+
<b> Requested Url: </b>/services/interop.asmx<br><br>
|
1713
|
+
|
1714
|
+
<hr width=100% size=1 color=silver>
|
1715
|
+
|
1716
|
+
<b>Version Information:</b> Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
|
1717
|
+
|
1718
|
+
</font>
|
1719
|
+
|
1720
|
+
</body>
|
1721
|
+
</html>
|
1722
|
+
<!--
|
1723
|
+
[FileNotFoundException]: Could not find file "\\premfs2\sites\premium7\thoughtpost\webroot\services\interop.asmx".
|
1724
|
+
at System.IO.__Error.WinIOError(Int32 errorCode, String str)
|
1725
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
|
1726
|
+
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
|
1727
|
+
at System.Web.Compilation.SourceCompiler.GetCachedEntry()
|
1728
|
+
at System.Web.UI.SimpleWebHandlerParser.GetCompiledTypeFromCache()
|
1729
|
+
at System.Web.UI.WebServiceParser.GetCompiledType(String inputFile, HttpContext context)
|
1730
|
+
at System.Web.Services.Protocols.WebServiceHandlerFactory.GetHandler(HttpContext context, String verb, String url, String filePath)
|
1731
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1732
|
+
[HttpException]: Exception of type System.Web.HttpException was thrown.
|
1733
|
+
at System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, String path, String pathTranslated, Boolean useAppConfig)
|
1734
|
+
at System.Web.MapHandlerExecutionStep.System.Web.HttpApplication+IExecutionStep.Execute()
|
1735
|
+
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
|
1736
|
+
--><!--
|
1737
|
+
This error page might contain sensitive information because ASP.NET is configured to show verbose error messages using <customErrors mode="Off"/>. Consider using <customErrors mode="On"/> or <customErrors mode="RemoteOnly"/> in production environments.-->
|
1738
|
+
|
1739
|
+
|