soap4r 1.5.5.20061022
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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,4635 @@
|
|
1
|
+
File: client4S4C_Base.log - Wiredumps for SOAP4R client / 4S4C server.
|
2
|
+
Date: Sat Jul 23 19:22:42 JST 2005
|
3
|
+
|
4
|
+
##########
|
5
|
+
# echoVoid
|
6
|
+
|
7
|
+
Result: OK
|
8
|
+
|
9
|
+
Wire dump:
|
10
|
+
|
11
|
+
= Request
|
12
|
+
|
13
|
+
! CONNECTION ESTABLISHED
|
14
|
+
POST /ilab/soap.asp HTTP/1.1
|
15
|
+
SOAPAction: "http://soapinterop.org/"
|
16
|
+
Content-Type: text/xml; charset=utf-8
|
17
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
18
|
+
Date: Sat Jul 23 19:22:44 JST 2005
|
19
|
+
Content-Length: 400
|
20
|
+
Host: soap.4s4c.com
|
21
|
+
|
22
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
23
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
24
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
25
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
26
|
+
<env:Body>
|
27
|
+
<n1:echoVoid xmlns:n1="http://soapinterop.org/"
|
28
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
29
|
+
</n1:echoVoid>
|
30
|
+
</env:Body>
|
31
|
+
</env:Envelope>
|
32
|
+
|
33
|
+
= Response
|
34
|
+
|
35
|
+
HTTP/1.1 200 OK
|
36
|
+
Date: Sat, 23 Jul 2005 10:26:24 GMT
|
37
|
+
Server: Microsoft-IIS/6.0
|
38
|
+
X-Powered-By: ASP.NET
|
39
|
+
Content-Length: 452
|
40
|
+
Content-Type: text/xml; charset=UTF-8
|
41
|
+
Expires: Sat, 23 Jul 2005 10:26:25 GMT
|
42
|
+
Cache-control: private
|
43
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
44
|
+
|
45
|
+
<?xml version="1.0"?>
|
46
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoVoidResponse xmlns:m="http://soapinterop.org/"></m:echoVoidResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
47
|
+
|
48
|
+
|
49
|
+
##########
|
50
|
+
# echoString
|
51
|
+
|
52
|
+
Result: OK
|
53
|
+
|
54
|
+
Wire dump:
|
55
|
+
|
56
|
+
= Request
|
57
|
+
|
58
|
+
POST /ilab/soap.asp HTTP/1.1
|
59
|
+
SOAPAction: "http://soapinterop.org/"
|
60
|
+
Content-Type: text/xml; charset=utf-8
|
61
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
62
|
+
Date: Sat Jul 23 19:22:48 JST 2005
|
63
|
+
Content-Length: 488
|
64
|
+
Host: soap.4s4c.com
|
65
|
+
|
66
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
67
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
68
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
69
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
70
|
+
<env:Body>
|
71
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
72
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
73
|
+
<inputString xsi:type="xsd:string">SOAP4R Interoperability Test</inputString>
|
74
|
+
</n1:echoString>
|
75
|
+
</env:Body>
|
76
|
+
</env:Envelope>
|
77
|
+
|
78
|
+
= Response
|
79
|
+
|
80
|
+
HTTP/1.1 200 OK
|
81
|
+
Date: Sat, 23 Jul 2005 10:26:28 GMT
|
82
|
+
Server: Microsoft-IIS/6.0
|
83
|
+
X-Powered-By: ASP.NET
|
84
|
+
Content-Length: 535
|
85
|
+
Content-Type: text/xml; charset=UTF-8
|
86
|
+
Expires: Sat, 23 Jul 2005 10:26:28 GMT
|
87
|
+
Cache-control: private
|
88
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
89
|
+
|
90
|
+
<?xml version="1.0"?>
|
91
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string">SOAP4R Interoperability Test</outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
92
|
+
|
93
|
+
|
94
|
+
##########
|
95
|
+
# echoString (Entity reference)
|
96
|
+
|
97
|
+
Result: OK
|
98
|
+
|
99
|
+
Wire dump:
|
100
|
+
|
101
|
+
= Request
|
102
|
+
|
103
|
+
POST /ilab/soap.asp HTTP/1.1
|
104
|
+
SOAPAction: "http://soapinterop.org/"
|
105
|
+
Content-Type: text/xml; charset=utf-8
|
106
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
107
|
+
Date: Sat Jul 23 19:22:50 JST 2005
|
108
|
+
Content-Length: 549
|
109
|
+
Host: soap.4s4c.com
|
110
|
+
|
111
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
112
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
113
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
114
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
115
|
+
<env:Body>
|
116
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
117
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
118
|
+
<inputString xsi:type="xsd:string"><>"& &lt;&gt;&quot;&amp; &amp&amp;><<<</inputString>
|
119
|
+
</n1:echoString>
|
120
|
+
</env:Body>
|
121
|
+
</env:Envelope>
|
122
|
+
|
123
|
+
= Response
|
124
|
+
|
125
|
+
HTTP/1.1 200 OK
|
126
|
+
Date: Sat, 23 Jul 2005 10:26:30 GMT
|
127
|
+
Server: Microsoft-IIS/6.0
|
128
|
+
X-Powered-By: ASP.NET
|
129
|
+
Content-Length: 585
|
130
|
+
Content-Type: text/xml; charset=UTF-8
|
131
|
+
Expires: Sat, 23 Jul 2005 10:26:30 GMT
|
132
|
+
Cache-control: private
|
133
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
134
|
+
|
135
|
+
<?xml version="1.0"?>
|
136
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string"><>"& &lt;&gt;&quot;&amp; &amp&amp;><<<</outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
137
|
+
|
138
|
+
|
139
|
+
##########
|
140
|
+
# echoString (Character reference)
|
141
|
+
|
142
|
+
Result: OK
|
143
|
+
|
144
|
+
Wire dump:
|
145
|
+
|
146
|
+
= Request
|
147
|
+
|
148
|
+
POST /ilab/soap.asp HTTP/1.1
|
149
|
+
SOAPAction: "http://soapinterop.org/"
|
150
|
+
Content-Type: text/xml; charset=utf-8
|
151
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
152
|
+
Date: Sat Jul 23 19:22:50 JST 2005
|
153
|
+
Content-Length: 487
|
154
|
+
Host: soap.4s4c.com
|
155
|
+
|
156
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
157
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
158
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
159
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
160
|
+
<env:Body>
|
161
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
162
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
163
|
+
<inputString xsi:type="xsd:string">    </inputString>
|
164
|
+
</n1:echoString>
|
165
|
+
</env:Body>
|
166
|
+
</env:Envelope>
|
167
|
+
|
168
|
+
= Response
|
169
|
+
|
170
|
+
HTTP/1.1 200 OK
|
171
|
+
Date: Sat, 23 Jul 2005 10:26:30 GMT
|
172
|
+
Server: Microsoft-IIS/6.0
|
173
|
+
X-Powered-By: ASP.NET
|
174
|
+
Content-Length: 515
|
175
|
+
Content-Type: text/xml; charset=UTF-8
|
176
|
+
Expires: Sat, 23 Jul 2005 10:26:31 GMT
|
177
|
+
Cache-control: private
|
178
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
179
|
+
|
180
|
+
<?xml version="1.0"?>
|
181
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string"> </outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
182
|
+
|
183
|
+
|
184
|
+
##########
|
185
|
+
# echoString (Leading and trailing whitespace)
|
186
|
+
|
187
|
+
Result: OK
|
188
|
+
|
189
|
+
Wire dump:
|
190
|
+
|
191
|
+
= Request
|
192
|
+
|
193
|
+
POST /ilab/soap.asp HTTP/1.1
|
194
|
+
SOAPAction: "http://soapinterop.org/"
|
195
|
+
Content-Type: text/xml; charset=utf-8
|
196
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
197
|
+
Date: Sat Jul 23 19:22:51 JST 2005
|
198
|
+
Content-Length: 494
|
199
|
+
Host: soap.4s4c.com
|
200
|
+
|
201
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
202
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
203
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
204
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
205
|
+
<env:Body>
|
206
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
207
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
208
|
+
<inputString xsi:type="xsd:string"> SOAP4R
|
209
|
+
Interoperability
|
210
|
+
Test </inputString>
|
211
|
+
</n1:echoString>
|
212
|
+
</env:Body>
|
213
|
+
</env:Envelope>
|
214
|
+
|
215
|
+
= Response
|
216
|
+
|
217
|
+
HTTP/1.1 200 OK
|
218
|
+
Date: Sat, 23 Jul 2005 10:26:31 GMT
|
219
|
+
Server: Microsoft-IIS/6.0
|
220
|
+
X-Powered-By: ASP.NET
|
221
|
+
Content-Length: 541
|
222
|
+
Content-Type: text/xml; charset=UTF-8
|
223
|
+
Expires: Sat, 23 Jul 2005 10:26:31 GMT
|
224
|
+
Cache-control: private
|
225
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
226
|
+
|
227
|
+
<?xml version="1.0"?>
|
228
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string"> SOAP4R
|
229
|
+
Interoperability
|
230
|
+
Test </outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
231
|
+
|
232
|
+
|
233
|
+
##########
|
234
|
+
# echoString (EUC encoded)
|
235
|
+
|
236
|
+
Result: OK
|
237
|
+
|
238
|
+
Wire dump:
|
239
|
+
|
240
|
+
= Request
|
241
|
+
|
242
|
+
POST /ilab/soap.asp HTTP/1.1
|
243
|
+
SOAPAction: "http://soapinterop.org/"
|
244
|
+
Content-Type: text/xml; charset=utf-8
|
245
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
246
|
+
Date: Sat Jul 23 19:22:51 JST 2005
|
247
|
+
Content-Length: 501
|
248
|
+
Host: soap.4s4c.com
|
249
|
+
|
250
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
251
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
252
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
253
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
254
|
+
<env:Body>
|
255
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
256
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
257
|
+
<inputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</inputString>
|
258
|
+
</n1:echoString>
|
259
|
+
</env:Body>
|
260
|
+
</env:Envelope>
|
261
|
+
|
262
|
+
= Response
|
263
|
+
|
264
|
+
HTTP/1.1 200 OK
|
265
|
+
Date: Sat, 23 Jul 2005 10:26:32 GMT
|
266
|
+
Server: Microsoft-IIS/6.0
|
267
|
+
X-Powered-By: ASP.NET
|
268
|
+
Content-Length: 548
|
269
|
+
Content-Type: text/xml; charset=UTF-8
|
270
|
+
Expires: Sat, 23 Jul 2005 10:26:32 GMT
|
271
|
+
Cache-control: private
|
272
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
273
|
+
|
274
|
+
<?xml version="1.0"?>
|
275
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
276
|
+
|
277
|
+
|
278
|
+
##########
|
279
|
+
# echoString (EUC encoded) again
|
280
|
+
|
281
|
+
Result: OK
|
282
|
+
|
283
|
+
Wire dump:
|
284
|
+
|
285
|
+
= Request
|
286
|
+
|
287
|
+
POST /ilab/soap.asp HTTP/1.1
|
288
|
+
SOAPAction: "http://soapinterop.org/"
|
289
|
+
Content-Type: text/xml; charset=utf-8
|
290
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
291
|
+
Date: Sat Jul 23 19:22:52 JST 2005
|
292
|
+
Content-Length: 501
|
293
|
+
Host: soap.4s4c.com
|
294
|
+
|
295
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
296
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
297
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
298
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
299
|
+
<env:Body>
|
300
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
301
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
302
|
+
<inputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</inputString>
|
303
|
+
</n1:echoString>
|
304
|
+
</env:Body>
|
305
|
+
</env:Envelope>
|
306
|
+
|
307
|
+
= Response
|
308
|
+
|
309
|
+
HTTP/1.1 200 OK
|
310
|
+
Date: Sat, 23 Jul 2005 10:26:32 GMT
|
311
|
+
Server: Microsoft-IIS/6.0
|
312
|
+
X-Powered-By: ASP.NET
|
313
|
+
Content-Length: 548
|
314
|
+
Content-Type: text/xml; charset=UTF-8
|
315
|
+
Expires: Sat, 23 Jul 2005 10:26:32 GMT
|
316
|
+
Cache-control: private
|
317
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
318
|
+
|
319
|
+
<?xml version="1.0"?>
|
320
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
321
|
+
|
322
|
+
|
323
|
+
##########
|
324
|
+
# echoString (empty)
|
325
|
+
|
326
|
+
Result: OK
|
327
|
+
|
328
|
+
Wire dump:
|
329
|
+
|
330
|
+
= Request
|
331
|
+
|
332
|
+
POST /ilab/soap.asp HTTP/1.1
|
333
|
+
SOAPAction: "http://soapinterop.org/"
|
334
|
+
Content-Type: text/xml; charset=utf-8
|
335
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
336
|
+
Date: Sat Jul 23 19:22:52 JST 2005
|
337
|
+
Content-Length: 460
|
338
|
+
Host: soap.4s4c.com
|
339
|
+
|
340
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
341
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
342
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
343
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
344
|
+
<env:Body>
|
345
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
346
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
347
|
+
<inputString xsi:type="xsd:string"></inputString>
|
348
|
+
</n1:echoString>
|
349
|
+
</env:Body>
|
350
|
+
</env:Envelope>
|
351
|
+
|
352
|
+
= Response
|
353
|
+
|
354
|
+
HTTP/1.1 200 OK
|
355
|
+
Date: Sat, 23 Jul 2005 10:26:33 GMT
|
356
|
+
Server: Microsoft-IIS/6.0
|
357
|
+
X-Powered-By: ASP.NET
|
358
|
+
Content-Length: 507
|
359
|
+
Content-Type: text/xml; charset=UTF-8
|
360
|
+
Expires: Sat, 23 Jul 2005 10:26:33 GMT
|
361
|
+
Cache-control: private
|
362
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
363
|
+
|
364
|
+
<?xml version="1.0"?>
|
365
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string"></outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
366
|
+
|
367
|
+
|
368
|
+
##########
|
369
|
+
# echoString (space)
|
370
|
+
|
371
|
+
Result: OK
|
372
|
+
|
373
|
+
Wire dump:
|
374
|
+
|
375
|
+
= Request
|
376
|
+
|
377
|
+
POST /ilab/soap.asp HTTP/1.1
|
378
|
+
SOAPAction: "http://soapinterop.org/"
|
379
|
+
Content-Type: text/xml; charset=utf-8
|
380
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
381
|
+
Date: Sat Jul 23 19:22:53 JST 2005
|
382
|
+
Content-Length: 461
|
383
|
+
Host: soap.4s4c.com
|
384
|
+
|
385
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
386
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
387
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
388
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
389
|
+
<env:Body>
|
390
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
391
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
392
|
+
<inputString xsi:type="xsd:string"> </inputString>
|
393
|
+
</n1:echoString>
|
394
|
+
</env:Body>
|
395
|
+
</env:Envelope>
|
396
|
+
|
397
|
+
= Response
|
398
|
+
|
399
|
+
HTTP/1.1 200 OK
|
400
|
+
Date: Sat, 23 Jul 2005 10:26:33 GMT
|
401
|
+
Server: Microsoft-IIS/6.0
|
402
|
+
X-Powered-By: ASP.NET
|
403
|
+
Content-Length: 508
|
404
|
+
Content-Type: text/xml; charset=UTF-8
|
405
|
+
Expires: Sat, 23 Jul 2005 10:26:34 GMT
|
406
|
+
Cache-control: private
|
407
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
408
|
+
|
409
|
+
<?xml version="1.0"?>
|
410
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><m:echoStringResponse xmlns:m="http://soapinterop.org/"><outputString xsi:type="xsd:string"> </outputString></m:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
411
|
+
|
412
|
+
|
413
|
+
##########
|
414
|
+
# echoString (whitespaces:\r \n \t \r \n \t)
|
415
|
+
|
416
|
+
Result: OK
|
417
|
+
|
418
|
+
Wire dump:
|
419
|
+
|
420
|
+
= Request
|
421
|
+
|
422
|
+
POST /ilab/soap.asp HTTP/1.1
|
423
|
+
SOAPAction: "http://soapinterop.org/"
|
424
|
+
Content-Type: text/xml; charset=utf-8
|
425
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
426
|
+
Date: Sat Jul 23 19:22:53 JST 2005
|
427
|
+
Content-Length: 479
|
428
|
+
Host: soap.4s4c.com
|
429
|
+
|
430
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
431
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
432
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
433
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
434
|
+
<env:Body>
|
435
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
436
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
437
|
+
<inputString xsi:type="xsd:string">
|
438
|
+

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