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,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$serverName = 'WASPforJava'
|
4
|
+
|
5
|
+
$serverBase = 'http://soap.systinet.net:6060/InteropService/'
|
6
|
+
$serverGroupB = 'http://soap.systinet.net:6060/InteropBService/'
|
7
|
+
$noEchoMap = true
|
8
|
+
|
9
|
+
require 'clientBase'
|
10
|
+
|
11
|
+
drvBase = SOAP::RPC::Driver.new($serverBase, InterfaceNS)
|
12
|
+
methodDefBase(drvBase)
|
13
|
+
|
14
|
+
drvGroupB = SOAP::RPC::Driver.new($serverGroupB, InterfaceNS)
|
15
|
+
methodDefGroupB(drvGroupB)
|
16
|
+
|
17
|
+
doTestBase(drvBase)
|
18
|
+
doTestGroupB(drvGroupB)
|
19
|
+
submitTestResult
|
@@ -0,0 +1,18 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
$serverName = 'WASPforC++'
|
4
|
+
|
5
|
+
$serverBase = 'http://soap.systinet.net:6070/InteropService/'
|
6
|
+
$serverGroupB = 'http://soap.systinet.net:6070/InteropBService/'
|
7
|
+
|
8
|
+
require 'clientBase'
|
9
|
+
|
10
|
+
drvBase = SOAP::RPC::Driver.new($serverBase, InterfaceNS)
|
11
|
+
methodDefBase(drvBase)
|
12
|
+
|
13
|
+
drvGroupB = SOAP::RPC::Driver.new($serverGroupB, InterfaceNS)
|
14
|
+
methodDefGroupB(drvGroupB)
|
15
|
+
|
16
|
+
doTestBase(drvBase)
|
17
|
+
doTestGroupB(drvGroupB)
|
18
|
+
submitTestResult
|
@@ -0,0 +1,4187 @@
|
|
1
|
+
File: clientWASPC_Base.log - Wiredumps for SOAP4R client / WASPforC++ server.
|
2
|
+
Date: Sat Jul 23 22:01:44 JST 2005
|
3
|
+
|
4
|
+
##########
|
5
|
+
# echoVoid
|
6
|
+
|
7
|
+
Result: OK
|
8
|
+
|
9
|
+
Wire dump:
|
10
|
+
|
11
|
+
= Request
|
12
|
+
|
13
|
+
! CONNECTION ESTABLISHED
|
14
|
+
POST /InteropService/ 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 22:01:45 JST 2005
|
19
|
+
Content-Length: 400
|
20
|
+
Host: soap.systinet.net:6070
|
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
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
37
|
+
Content-Type: text/xml; charset="UTF-8"
|
38
|
+
Connection: Keep-Alive
|
39
|
+
Content-Length: 407
|
40
|
+
|
41
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoVoidResponse xmlns:ns0="http://soapinterop.org/"/></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
42
|
+
|
43
|
+
|
44
|
+
##########
|
45
|
+
# echoString
|
46
|
+
|
47
|
+
Result: OK
|
48
|
+
|
49
|
+
Wire dump:
|
50
|
+
|
51
|
+
= Request
|
52
|
+
|
53
|
+
POST /InteropService/ HTTP/1.1
|
54
|
+
SOAPAction: "http://soapinterop.org/"
|
55
|
+
Content-Type: text/xml; charset=utf-8
|
56
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
57
|
+
Date: Sat Jul 23 22:01:48 JST 2005
|
58
|
+
Content-Length: 488
|
59
|
+
Host: soap.systinet.net:6070
|
60
|
+
|
61
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
62
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
63
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
64
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
65
|
+
<env:Body>
|
66
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
67
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
68
|
+
<inputString xsi:type="xsd:string">SOAP4R Interoperability Test</inputString>
|
69
|
+
</n1:echoString>
|
70
|
+
</env:Body>
|
71
|
+
</env:Envelope>
|
72
|
+
|
73
|
+
= Response
|
74
|
+
|
75
|
+
HTTP/1.1 200 OK
|
76
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
77
|
+
Content-Type: text/xml; charset="UTF-8"
|
78
|
+
Connection: Keep-Alive
|
79
|
+
Content-Length: 478
|
80
|
+
|
81
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return>SOAP4R Interoperability Test</return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
82
|
+
|
83
|
+
|
84
|
+
##########
|
85
|
+
# echoString (Entity reference)
|
86
|
+
|
87
|
+
Result: OK
|
88
|
+
|
89
|
+
Wire dump:
|
90
|
+
|
91
|
+
= Request
|
92
|
+
|
93
|
+
POST /InteropService/ HTTP/1.1
|
94
|
+
SOAPAction: "http://soapinterop.org/"
|
95
|
+
Content-Type: text/xml; charset=utf-8
|
96
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
97
|
+
Date: Sat Jul 23 22:01:49 JST 2005
|
98
|
+
Content-Length: 549
|
99
|
+
Host: soap.systinet.net:6070
|
100
|
+
|
101
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
102
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
103
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
104
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
105
|
+
<env:Body>
|
106
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
107
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
108
|
+
<inputString xsi:type="xsd:string"><>"& &lt;&gt;&quot;&amp; &amp&amp;><<<</inputString>
|
109
|
+
</n1:echoString>
|
110
|
+
</env:Body>
|
111
|
+
</env:Envelope>
|
112
|
+
|
113
|
+
= Response
|
114
|
+
|
115
|
+
HTTP/1.1 200 OK
|
116
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
117
|
+
Content-Type: text/xml; charset="UTF-8"
|
118
|
+
Connection: Keep-Alive
|
119
|
+
Content-Length: 539
|
120
|
+
|
121
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return><>"& &lt;&gt;&quot;&amp; &amp&amp;><<<</return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
122
|
+
|
123
|
+
|
124
|
+
##########
|
125
|
+
# echoString (Character reference)
|
126
|
+
|
127
|
+
Result: OK
|
128
|
+
|
129
|
+
Wire dump:
|
130
|
+
|
131
|
+
= Request
|
132
|
+
|
133
|
+
POST /InteropService/ HTTP/1.1
|
134
|
+
SOAPAction: "http://soapinterop.org/"
|
135
|
+
Content-Type: text/xml; charset=utf-8
|
136
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
137
|
+
Date: Sat Jul 23 22:01:50 JST 2005
|
138
|
+
Content-Length: 487
|
139
|
+
Host: soap.systinet.net:6070
|
140
|
+
|
141
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
142
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
143
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
144
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
145
|
+
<env:Body>
|
146
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
147
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
148
|
+
<inputString xsi:type="xsd:string">    </inputString>
|
149
|
+
</n1:echoString>
|
150
|
+
</env:Body>
|
151
|
+
</env:Envelope>
|
152
|
+
|
153
|
+
= Response
|
154
|
+
|
155
|
+
HTTP/1.1 200 OK
|
156
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
157
|
+
Content-Type: text/xml; charset="UTF-8"
|
158
|
+
Connection: Keep-Alive
|
159
|
+
Content-Length: 458
|
160
|
+
|
161
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return> </return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
162
|
+
|
163
|
+
|
164
|
+
##########
|
165
|
+
# echoString (Leading and trailing whitespace)
|
166
|
+
|
167
|
+
Result: OK
|
168
|
+
|
169
|
+
Wire dump:
|
170
|
+
|
171
|
+
= Request
|
172
|
+
|
173
|
+
POST /InteropService/ HTTP/1.1
|
174
|
+
SOAPAction: "http://soapinterop.org/"
|
175
|
+
Content-Type: text/xml; charset=utf-8
|
176
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
177
|
+
Date: Sat Jul 23 22:01:51 JST 2005
|
178
|
+
Content-Length: 494
|
179
|
+
Host: soap.systinet.net:6070
|
180
|
+
|
181
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
182
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
183
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
184
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
185
|
+
<env:Body>
|
186
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
187
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
188
|
+
<inputString xsi:type="xsd:string"> SOAP4R
|
189
|
+
Interoperability
|
190
|
+
Test </inputString>
|
191
|
+
</n1:echoString>
|
192
|
+
</env:Body>
|
193
|
+
</env:Envelope>
|
194
|
+
|
195
|
+
= Response
|
196
|
+
|
197
|
+
HTTP/1.1 200 OK
|
198
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
199
|
+
Content-Type: text/xml; charset="UTF-8"
|
200
|
+
Connection: Keep-Alive
|
201
|
+
Content-Length: 484
|
202
|
+
|
203
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return> SOAP4R
|
204
|
+
Interoperability
|
205
|
+
Test </return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
206
|
+
|
207
|
+
|
208
|
+
##########
|
209
|
+
# echoString (EUC encoded)
|
210
|
+
|
211
|
+
Result: OK
|
212
|
+
|
213
|
+
Wire dump:
|
214
|
+
|
215
|
+
= Request
|
216
|
+
|
217
|
+
POST /InteropService/ HTTP/1.1
|
218
|
+
SOAPAction: "http://soapinterop.org/"
|
219
|
+
Content-Type: text/xml; charset=utf-8
|
220
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
221
|
+
Date: Sat Jul 23 22:01:52 JST 2005
|
222
|
+
Content-Length: 501
|
223
|
+
Host: soap.systinet.net:6070
|
224
|
+
|
225
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
226
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
227
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
228
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
229
|
+
<env:Body>
|
230
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
231
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
232
|
+
<inputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</inputString>
|
233
|
+
</n1:echoString>
|
234
|
+
</env:Body>
|
235
|
+
</env:Envelope>
|
236
|
+
|
237
|
+
= Response
|
238
|
+
|
239
|
+
HTTP/1.1 200 OK
|
240
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
241
|
+
Content-Type: text/xml; charset="UTF-8"
|
242
|
+
Connection: Keep-Alive
|
243
|
+
Content-Length: 491
|
244
|
+
|
245
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return>Hello (日本語Japanese) こんにちは</return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
246
|
+
|
247
|
+
|
248
|
+
##########
|
249
|
+
# echoString (EUC encoded) again
|
250
|
+
|
251
|
+
Result: OK
|
252
|
+
|
253
|
+
Wire dump:
|
254
|
+
|
255
|
+
= Request
|
256
|
+
|
257
|
+
POST /InteropService/ HTTP/1.1
|
258
|
+
SOAPAction: "http://soapinterop.org/"
|
259
|
+
Content-Type: text/xml; charset=utf-8
|
260
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
261
|
+
Date: Sat Jul 23 22:01:53 JST 2005
|
262
|
+
Content-Length: 501
|
263
|
+
Host: soap.systinet.net:6070
|
264
|
+
|
265
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
266
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
267
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
268
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
269
|
+
<env:Body>
|
270
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
271
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
272
|
+
<inputString xsi:type="xsd:string">Hello (日本語Japanese) こんにちは</inputString>
|
273
|
+
</n1:echoString>
|
274
|
+
</env:Body>
|
275
|
+
</env:Envelope>
|
276
|
+
|
277
|
+
= Response
|
278
|
+
|
279
|
+
HTTP/1.1 200 OK
|
280
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
281
|
+
Content-Type: text/xml; charset="UTF-8"
|
282
|
+
Connection: Keep-Alive
|
283
|
+
Content-Length: 491
|
284
|
+
|
285
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return>Hello (日本語Japanese) こんにちは</return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
286
|
+
|
287
|
+
|
288
|
+
##########
|
289
|
+
# echoString (empty)
|
290
|
+
|
291
|
+
Result: Expected = "" // Actual = #<SOAP::Mapping::Object:0x..fdbe8c372>
|
292
|
+
|
293
|
+
Wire dump:
|
294
|
+
|
295
|
+
= Request
|
296
|
+
|
297
|
+
POST /InteropService/ HTTP/1.1
|
298
|
+
SOAPAction: "http://soapinterop.org/"
|
299
|
+
Content-Type: text/xml; charset=utf-8
|
300
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
301
|
+
Date: Sat Jul 23 22:01:54 JST 2005
|
302
|
+
Content-Length: 460
|
303
|
+
Host: soap.systinet.net:6070
|
304
|
+
|
305
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
306
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
307
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
308
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
309
|
+
<env:Body>
|
310
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
311
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
312
|
+
<inputString xsi:type="xsd:string"></inputString>
|
313
|
+
</n1:echoString>
|
314
|
+
</env:Body>
|
315
|
+
</env:Envelope>
|
316
|
+
|
317
|
+
= Response
|
318
|
+
|
319
|
+
HTTP/1.1 200 OK
|
320
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
321
|
+
Content-Type: text/xml; charset="UTF-8"
|
322
|
+
Connection: Keep-Alive
|
323
|
+
Content-Length: 450
|
324
|
+
|
325
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return></return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
326
|
+
|
327
|
+
|
328
|
+
##########
|
329
|
+
# echoString (space)
|
330
|
+
|
331
|
+
Result: Expected = " " // Actual = #<SOAP::Mapping::Object:0x..fdbe89ba4>
|
332
|
+
|
333
|
+
Wire dump:
|
334
|
+
|
335
|
+
= Request
|
336
|
+
|
337
|
+
POST /InteropService/ HTTP/1.1
|
338
|
+
SOAPAction: "http://soapinterop.org/"
|
339
|
+
Content-Type: text/xml; charset=utf-8
|
340
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
341
|
+
Date: Sat Jul 23 22:01:55 JST 2005
|
342
|
+
Content-Length: 461
|
343
|
+
Host: soap.systinet.net:6070
|
344
|
+
|
345
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
346
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
347
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
348
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
349
|
+
<env:Body>
|
350
|
+
<n1:echoString xmlns:n1="http://soapinterop.org/"
|
351
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
352
|
+
<inputString xsi:type="xsd:string"> </inputString>
|
353
|
+
</n1:echoString>
|
354
|
+
</env:Body>
|
355
|
+
</env:Envelope>
|
356
|
+
|
357
|
+
= Response
|
358
|
+
|
359
|
+
HTTP/1.1 200 OK
|
360
|
+
Server: Systinet Server for C++ 5.5 (SSC-5.5-20041208-1445-i686-pc-linux-gnu) - Linux i686 2.4.20-37.9.legacy #1 Mon Sep 27 19:40:23 EDT 2004)
|
361
|
+
Content-Type: text/xml; charset="UTF-8"
|
362
|
+
Connection: Keep-Alive
|
363
|
+
Content-Length: 451
|
364
|
+
|
365
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SE="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><ns0:echoStringResponse xmlns:ns0="http://soapinterop.org/"><return> </return></ns0:echoStringResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
366
|
+
|
367
|
+
|
368
|
+
##########
|
369
|
+
# echoString (whitespaces:\r \n \t \r \n \t)
|
370
|
+
|
371
|
+
Result: Expected = "\r \n \t \r \n \t" // Actual = #<SOAP::Mapping::Object:0x..fdbe873b8>
|
372
|
+
|
373
|
+
Wire dump:
|
374
|
+
|
375
|
+
= Request
|
376
|
+
|
377
|
+
POST /InteropService/ 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 22:01:57 JST 2005
|
382
|
+
Content-Length: 479
|
383
|
+
Host: soap.systinet.net:6070
|
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">
|
393
|
+

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