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,908 @@
|
|
1
|
+
File: clientMSSOAPToolkit3.0_GroupB.log - Wiredumps for SOAP4R client / MicrosoftSoapToolkit3.0 server.
|
2
|
+
Date: Sat Jul 23 21:08:50 JST 2005
|
3
|
+
|
4
|
+
##########
|
5
|
+
# echoStructAsSimpleTypes
|
6
|
+
|
7
|
+
Result: OK
|
8
|
+
|
9
|
+
Wire dump:
|
10
|
+
|
11
|
+
= Request
|
12
|
+
|
13
|
+
! CONNECTION ESTABLISHED
|
14
|
+
POST /stkV3/InteropBtyped.wsdl 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 21:08:50 JST 2005
|
19
|
+
Content-Length: 700
|
20
|
+
Host: mssoapinterop.org
|
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:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
28
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
29
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
30
|
+
xsi:type="n2:SOAPStruct">
|
31
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
32
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
33
|
+
<varString xsi:type="xsd:string">a</varString>
|
34
|
+
</inputStruct>
|
35
|
+
</n1:echoStructAsSimpleTypes>
|
36
|
+
</env:Body>
|
37
|
+
</env:Envelope>
|
38
|
+
|
39
|
+
= Response
|
40
|
+
|
41
|
+
HTTP/1.1 100 Continue
|
42
|
+
Server: Microsoft-IIS/5.0
|
43
|
+
Date: Sat, 23 Jul 2005 12:57:33 GMT
|
44
|
+
X-Powered-By: ASP.NET
|
45
|
+
|
46
|
+
HTTP/1.1 200 OK
|
47
|
+
Server: Microsoft-IIS/5.0
|
48
|
+
Date: Sat, 23 Jul 2005 12:57:33 GMT
|
49
|
+
X-Powered-By: ASP.NET
|
50
|
+
Content-Type: text/xml; charset="UTF-8"
|
51
|
+
Content-Length: 741
|
52
|
+
Expires: -1;
|
53
|
+
|
54
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoStructAsSimpleTypesResponse xmlns:SOAPSDK4="http://soapinterop.org/"><outputString SOAPSDK2:type="SOAPSDK1:string">a</outputString><outputInteger SOAPSDK2:type="SOAPSDK1:int">1</outputInteger><outputFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</outputFloat></SOAPSDK4:echoStructAsSimpleTypesResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
55
|
+
|
56
|
+
|
57
|
+
##########
|
58
|
+
# echoStructAsSimpleTypes (nil)
|
59
|
+
|
60
|
+
Result: Exception: SoapMapper:The schema definition with a targetnamespace of for SoapMapper varFloat could not be found HRESULT=0x80004005: Unspecified error
|
61
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type varFloat in namespace . HRESULT=0x80004005: Unspecified error
|
62
|
+
- Generic Custom Type Mapper:Element varFloat could not be loaded while loading type SOAPStruct HRESULT=0x80004005: Unspecified error
|
63
|
+
(SOAP::FaultError)
|
64
|
+
#<SOAP::Mapping::Object:0xb7c6dc8c>
|
65
|
+
|
66
|
+
Wire dump:
|
67
|
+
|
68
|
+
= Request
|
69
|
+
|
70
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
71
|
+
SOAPAction: "http://soapinterop.org/"
|
72
|
+
Content-Type: text/xml; charset=utf-8
|
73
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
74
|
+
Date: Sat Jul 23 21:08:51 JST 2005
|
75
|
+
Content-Length: 677
|
76
|
+
Host: mssoapinterop.org
|
77
|
+
|
78
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
79
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
80
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
81
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
82
|
+
<env:Body>
|
83
|
+
<n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
84
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
85
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
86
|
+
xsi:type="n2:SOAPStruct">
|
87
|
+
<varFloat xsi:nil="true"></varFloat>
|
88
|
+
<varInt xsi:nil="true"></varInt>
|
89
|
+
<varString xsi:nil="true"></varString>
|
90
|
+
</inputStruct>
|
91
|
+
</n1:echoStructAsSimpleTypes>
|
92
|
+
</env:Body>
|
93
|
+
</env:Envelope>
|
94
|
+
|
95
|
+
= Response
|
96
|
+
|
97
|
+
HTTP/1.1 100 Continue
|
98
|
+
Server: Microsoft-IIS/5.0
|
99
|
+
Date: Sat, 23 Jul 2005 12:57:33 GMT
|
100
|
+
X-Powered-By: ASP.NET
|
101
|
+
|
102
|
+
HTTP/1.1 500 Internal Server Error
|
103
|
+
Server: Microsoft-IIS/5.0
|
104
|
+
Date: Sat, 23 Jul 2005 12:57:33 GMT
|
105
|
+
X-Powered-By: ASP.NET
|
106
|
+
Content-Type: text/xml; charset="UTF-8"
|
107
|
+
Content-Length: 2655
|
108
|
+
Expires: -1;
|
109
|
+
|
110
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>SoapMapper:The schema definition with a targetnamespace of for SoapMapper varFloat could not be found HRESULT=0x80004005: Unspecified error
|
111
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type varFloat in namespace . HRESULT=0x80004005: Unspecified error
|
112
|
+
- Generic Custom Type Mapper:Element varFloat could not be loaded while loading type SOAPStruct HRESULT=0x80004005: Unspecified error
|
113
|
+
</faultstring><faultactor>http://soapinterop.org/</faultactor><detail><mserror:errorInfo xmlns:mserror="http://schemas.microsoft.com/soap-toolkit/faultdetail/error/"><mserror:returnCode>-2147467259 : Unspecified error
|
114
|
+
</mserror:returnCode><mserror:serverErrorInfo><mserror:description>SoapMapper:The schema definition with a targetnamespace of for SoapMapper varFloat could not be found HRESULT=0x80004005: Unspecified error
|
115
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type varFloat in namespace . HRESULT=0x80004005: Unspecified error
|
116
|
+
- Generic Custom Type Mapper:Element varFloat could not be loaded while loading type SOAPStruct HRESULT=0x80004005: Unspecified error
|
117
|
+
</mserror:description><mserror:source>SoapMapper</mserror:source></mserror:serverErrorInfo><mserror:callStack><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Restoring data into SoapMapper SOAPStruct failed</mserror:description><mserror:returnCode>-2147467259 : Unspecified error
|
118
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>WSDLReader</mserror:component><mserror:description>None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem</mserror:description><mserror:returnCode>-2147024809 : The parameter is incorrect.
|
119
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>Server</mserror:component><mserror:description>One of the parameters supplied is invalid.</mserror:description><mserror:returnCode>-2147024809 : The parameter is incorrect.
|
120
|
+
</mserror:returnCode></mserror:callElement></mserror:callStack></mserror:errorInfo></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
121
|
+
|
122
|
+
|
123
|
+
##########
|
124
|
+
# echoSimpleTypesAsStruct
|
125
|
+
|
126
|
+
Result: OK
|
127
|
+
|
128
|
+
Wire dump:
|
129
|
+
|
130
|
+
= Request
|
131
|
+
|
132
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
133
|
+
SOAPAction: "http://soapinterop.org/"
|
134
|
+
Content-Type: text/xml; charset=utf-8
|
135
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
136
|
+
Date: Sat Jul 23 21:08:52 JST 2005
|
137
|
+
Content-Length: 600
|
138
|
+
Host: mssoapinterop.org
|
139
|
+
|
140
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
141
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
142
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
143
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
144
|
+
<env:Body>
|
145
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
146
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
147
|
+
<inputString xsi:type="xsd:string">a</inputString>
|
148
|
+
<inputInteger xsi:type="xsd:int">1</inputInteger>
|
149
|
+
<inputFloat xsi:type="xsd:float">+1.1</inputFloat>
|
150
|
+
</n1:echoSimpleTypesAsStruct>
|
151
|
+
</env:Body>
|
152
|
+
</env:Envelope>
|
153
|
+
|
154
|
+
= Response
|
155
|
+
|
156
|
+
HTTP/1.1 100 Continue
|
157
|
+
Server: Microsoft-IIS/5.0
|
158
|
+
Date: Sat, 23 Jul 2005 12:57:34 GMT
|
159
|
+
X-Powered-By: ASP.NET
|
160
|
+
|
161
|
+
HTTP/1.1 200 OK
|
162
|
+
Server: Microsoft-IIS/5.0
|
163
|
+
Date: Sat, 23 Jul 2005 12:57:34 GMT
|
164
|
+
X-Powered-By: ASP.NET
|
165
|
+
Content-Type: text/xml; charset="UTF-8"
|
166
|
+
Content-Length: 886
|
167
|
+
Expires: -1;
|
168
|
+
|
169
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoSimpleTypesAsStructResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoSimpleTypesAsStructResponse><SOAPSDK5:SOAPStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPStruct"><varString SOAPSDK2:type="SOAPSDK1:string">a</varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat></SOAPSDK5:SOAPStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
170
|
+
|
171
|
+
|
172
|
+
##########
|
173
|
+
# echoSimpleTypesAsStruct (nil)
|
174
|
+
|
175
|
+
Result: Exception: SoapMapper:The schema definition with a targetnamespace of for SoapMapper inputString could not be found (SOAP::FaultError)
|
176
|
+
#<SOAP::Mapping::Object:0xb7c50254>
|
177
|
+
|
178
|
+
Wire dump:
|
179
|
+
|
180
|
+
= Request
|
181
|
+
|
182
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
183
|
+
SOAPAction: "http://soapinterop.org/"
|
184
|
+
Content-Type: text/xml; charset=utf-8
|
185
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
186
|
+
Date: Sat Jul 23 21:08:52 JST 2005
|
187
|
+
Content-Length: 577
|
188
|
+
Host: mssoapinterop.org
|
189
|
+
|
190
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
191
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
192
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
193
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
194
|
+
<env:Body>
|
195
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
196
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
197
|
+
<inputString xsi:nil="true"></inputString>
|
198
|
+
<inputInteger xsi:nil="true"></inputInteger>
|
199
|
+
<inputFloat xsi:nil="true"></inputFloat>
|
200
|
+
</n1:echoSimpleTypesAsStruct>
|
201
|
+
</env:Body>
|
202
|
+
</env:Envelope>
|
203
|
+
|
204
|
+
= Response
|
205
|
+
|
206
|
+
HTTP/1.1 100 Continue
|
207
|
+
Server: Microsoft-IIS/5.0
|
208
|
+
Date: Sat, 23 Jul 2005 12:57:34 GMT
|
209
|
+
X-Powered-By: ASP.NET
|
210
|
+
|
211
|
+
HTTP/1.1 500 Internal Server Error
|
212
|
+
Server: Microsoft-IIS/5.0
|
213
|
+
Date: Sat, 23 Jul 2005 12:57:34 GMT
|
214
|
+
X-Powered-By: ASP.NET
|
215
|
+
Content-Type: text/xml; charset="UTF-8"
|
216
|
+
Content-Length: 3220
|
217
|
+
Expires: -1;
|
218
|
+
|
219
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>SoapMapper:The schema definition with a targetnamespace of for SoapMapper inputString could not be found</faultstring><faultactor>http://soapinterop.org/</faultactor><detail><mserror:errorInfo xmlns:mserror="http://schemas.microsoft.com/soap-toolkit/faultdetail/error/"><mserror:returnCode>-2147467259 : Unspecified error
|
220
|
+
</mserror:returnCode><mserror:serverErrorInfo><mserror:description>SoapMapper:The schema definition with a targetnamespace of for SoapMapper inputString could not be found HRESULT=0x80004005: Unspecified error
|
221
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type inputString in namespace . HRESULT=0x80004005: Unspecified error
|
222
|
+
- SoapMapper:Restoring data into SoapMapper anyType failed HRESULT=0x80004005: Unspecified error
|
223
|
+
- WSDLReader:None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem HRESULT=0x80070057: The parameter is incorrect.
|
224
|
+
- Server:One of the parameters supplied is invalid. HRESULT=0x80070057: The parameter is incorrect.
|
225
|
+
</mserror:description><mserror:source>SoapMapper</mserror:source></mserror:serverErrorInfo><mserror:callStack><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>The schema definition with a targetnamespace of for SoapMapper inputString could not be found</mserror:description><mserror:returnCode>-2147467259 : Unspecified error
|
226
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Can't create mapper inside 'anyType' of type inputString in namespace .</mserror:description><mserror:returnCode>-2147467259 : Unspecified error
|
227
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Restoring data into SoapMapper anyType failed</mserror:description><mserror:returnCode>-2147467259 : Unspecified error
|
228
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>WSDLReader</mserror:component><mserror:description>None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem</mserror:description><mserror:returnCode>-2147024809 : The parameter is incorrect.
|
229
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>Server</mserror:component><mserror:description>One of the parameters supplied is invalid.</mserror:description><mserror:returnCode>-2147024809 : The parameter is incorrect.
|
230
|
+
</mserror:returnCode></mserror:callElement></mserror:callStack></mserror:errorInfo></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
231
|
+
|
232
|
+
|
233
|
+
##########
|
234
|
+
# echo2DStringArray
|
235
|
+
|
236
|
+
Result: OK
|
237
|
+
|
238
|
+
Wire dump:
|
239
|
+
|
240
|
+
= Request
|
241
|
+
|
242
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
243
|
+
SOAPAction: "http://soapinterop.org/"
|
244
|
+
Content-Type: text/xml; charset=utf-8
|
245
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
246
|
+
Date: Sat Jul 23 21:08:53 JST 2005
|
247
|
+
Content-Length: 889
|
248
|
+
Host: mssoapinterop.org
|
249
|
+
|
250
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
251
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
252
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
253
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
254
|
+
<env:Body>
|
255
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
256
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
257
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
258
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
259
|
+
xsi:type="n2:ArrayOfString2D"
|
260
|
+
n3:arrayType="xsd:string[3,3]">
|
261
|
+
<item>r0c0</item>
|
262
|
+
<item>r1c0</item>
|
263
|
+
<item>r2c0</item>
|
264
|
+
<item>r0c1</item>
|
265
|
+
<item>r1c1</item>
|
266
|
+
<item>r2c1</item>
|
267
|
+
<item>r0c2</item>
|
268
|
+
<item>r1c2</item>
|
269
|
+
<item>r2c2</item>
|
270
|
+
</input2DStringArray>
|
271
|
+
</n1:echo2DStringArray>
|
272
|
+
</env:Body>
|
273
|
+
</env:Envelope>
|
274
|
+
|
275
|
+
= Response
|
276
|
+
|
277
|
+
HTTP/1.1 100 Continue
|
278
|
+
Server: Microsoft-IIS/5.0
|
279
|
+
Date: Sat, 23 Jul 2005 12:57:35 GMT
|
280
|
+
X-Powered-By: ASP.NET
|
281
|
+
|
282
|
+
HTTP/1.1 200 OK
|
283
|
+
Server: Microsoft-IIS/5.0
|
284
|
+
Date: Sat, 23 Jul 2005 12:57:35 GMT
|
285
|
+
X-Powered-By: ASP.NET
|
286
|
+
Content-Type: text/xml; charset="UTF-8"
|
287
|
+
Content-Length: 997
|
288
|
+
Expires: -1;
|
289
|
+
|
290
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echo2DStringArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return SOAPSDK3:arrayType="SOAPSDK1:string[3,3]" SOAPSDK3:offset="[0,0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>r2c0</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r2c1</SOAPSDK3:string><SOAPSDK3:string>r0c2</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK4:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
291
|
+
|
292
|
+
|
293
|
+
##########
|
294
|
+
# echo2DStringArray (anyType array)
|
295
|
+
|
296
|
+
Result: OK
|
297
|
+
|
298
|
+
Wire dump:
|
299
|
+
|
300
|
+
= Request
|
301
|
+
|
302
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
303
|
+
SOAPAction: "http://soapinterop.org/"
|
304
|
+
Content-Type: text/xml; charset=utf-8
|
305
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
306
|
+
Date: Sat Jul 23 21:08:53 JST 2005
|
307
|
+
Content-Length: 1088
|
308
|
+
Host: mssoapinterop.org
|
309
|
+
|
310
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
311
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
312
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
313
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
314
|
+
<env:Body>
|
315
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
316
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
317
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
318
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
319
|
+
xsi:type="n2:ArrayOfString2D"
|
320
|
+
n3:arrayType="xsd:anyType[3,3]">
|
321
|
+
<item xsi:type="xsd:string">r0c0</item>
|
322
|
+
<item xsi:type="xsd:string">r0c1</item>
|
323
|
+
<item xsi:type="xsd:string">r0c2</item>
|
324
|
+
<item xsi:type="xsd:string">r1c0</item>
|
325
|
+
<item xsi:type="xsd:string">r1c1</item>
|
326
|
+
<item xsi:type="xsd:string">r1c2</item>
|
327
|
+
<item xsi:type="xsd:string">r2c0</item>
|
328
|
+
<item xsi:type="xsd:string">r0c1</item>
|
329
|
+
<item xsi:type="xsd:string">r2c2</item>
|
330
|
+
</input2DStringArray>
|
331
|
+
</n1:echo2DStringArray>
|
332
|
+
</env:Body>
|
333
|
+
</env:Envelope>
|
334
|
+
|
335
|
+
= Response
|
336
|
+
|
337
|
+
HTTP/1.1 100 Continue
|
338
|
+
Server: Microsoft-IIS/5.0
|
339
|
+
Date: Sat, 23 Jul 2005 12:57:35 GMT
|
340
|
+
X-Powered-By: ASP.NET
|
341
|
+
|
342
|
+
HTTP/1.1 200 OK
|
343
|
+
Server: Microsoft-IIS/5.0
|
344
|
+
Date: Sat, 23 Jul 2005 12:57:35 GMT
|
345
|
+
X-Powered-By: ASP.NET
|
346
|
+
Content-Type: text/xml; charset="UTF-8"
|
347
|
+
Content-Length: 997
|
348
|
+
Expires: -1;
|
349
|
+
|
350
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echo2DStringArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return SOAPSDK3:arrayType="SOAPSDK1:string[3,3]" SOAPSDK3:offset="[0,0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r0c2</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c0</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK4:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
351
|
+
|
352
|
+
|
353
|
+
##########
|
354
|
+
# echo2DStringArray (multi-ref)
|
355
|
+
|
356
|
+
Result: OK
|
357
|
+
|
358
|
+
Wire dump:
|
359
|
+
|
360
|
+
= Request
|
361
|
+
|
362
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
363
|
+
SOAPAction: "http://soapinterop.org/"
|
364
|
+
Content-Type: text/xml; charset=utf-8
|
365
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
366
|
+
Date: Sat Jul 23 21:08:54 JST 2005
|
367
|
+
Content-Length: 1063
|
368
|
+
Host: mssoapinterop.org
|
369
|
+
|
370
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
371
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
372
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
373
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
374
|
+
<env:Body>
|
375
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
376
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
377
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
378
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
379
|
+
xsi:type="n2:ArrayOfString2D"
|
380
|
+
n3:arrayType="xsd:string[3,3]">
|
381
|
+
<item>r0c0</item>
|
382
|
+
<item>r1c0</item>
|
383
|
+
<item href="#id-605997050"></item>
|
384
|
+
<item>r0c1</item>
|
385
|
+
<item>r1c1</item>
|
386
|
+
<item>r2c1</item>
|
387
|
+
<item href="#id-605997050"></item>
|
388
|
+
<item>r1c2</item>
|
389
|
+
<item>r2c2</item>
|
390
|
+
</input2DStringArray>
|
391
|
+
</n1:echo2DStringArray>
|
392
|
+
<item id="id-605997050"
|
393
|
+
xsi:type="xsd:string"
|
394
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
395
|
+
</env:Body>
|
396
|
+
</env:Envelope>
|
397
|
+
|
398
|
+
= Response
|
399
|
+
|
400
|
+
HTTP/1.1 100 Continue
|
401
|
+
Server: Microsoft-IIS/5.0
|
402
|
+
Date: Sat, 23 Jul 2005 12:57:36 GMT
|
403
|
+
X-Powered-By: ASP.NET
|
404
|
+
|
405
|
+
HTTP/1.1 200 OK
|
406
|
+
Server: Microsoft-IIS/5.0
|
407
|
+
Date: Sat, 23 Jul 2005 12:57:36 GMT
|
408
|
+
X-Powered-By: ASP.NET
|
409
|
+
Content-Type: text/xml; charset="UTF-8"
|
410
|
+
Content-Length: 997
|
411
|
+
Expires: -1;
|
412
|
+
|
413
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echo2DStringArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return SOAPSDK3:arrayType="SOAPSDK1:string[3,3]" SOAPSDK3:offset="[0,0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r2c1</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK4:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
414
|
+
|
415
|
+
|
416
|
+
##########
|
417
|
+
# echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
|
418
|
+
|
419
|
+
Result: Expected = "String#-606056990" // Actual = "String#-606055250"
|
420
|
+
|
421
|
+
Wire dump:
|
422
|
+
|
423
|
+
= Request
|
424
|
+
|
425
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
426
|
+
SOAPAction: "http://soapinterop.org/"
|
427
|
+
Content-Type: text/xml; charset=utf-8
|
428
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
429
|
+
Date: Sat Jul 23 21:08:55 JST 2005
|
430
|
+
Content-Length: 1063
|
431
|
+
Host: mssoapinterop.org
|
432
|
+
|
433
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
434
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
435
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
436
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
437
|
+
<env:Body>
|
438
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
439
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
440
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
441
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
442
|
+
xsi:type="n2:ArrayOfString2D"
|
443
|
+
n3:arrayType="xsd:string[3,3]">
|
444
|
+
<item>r0c0</item>
|
445
|
+
<item>r1c0</item>
|
446
|
+
<item href="#id-606032200"></item>
|
447
|
+
<item>r0c1</item>
|
448
|
+
<item>r1c1</item>
|
449
|
+
<item>r2c1</item>
|
450
|
+
<item href="#id-606032200"></item>
|
451
|
+
<item>r1c2</item>
|
452
|
+
<item>r2c2</item>
|
453
|
+
</input2DStringArray>
|
454
|
+
</n1:echo2DStringArray>
|
455
|
+
<item id="id-606032200"
|
456
|
+
xsi:type="xsd:string"
|
457
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
458
|
+
</env:Body>
|
459
|
+
</env:Envelope>
|
460
|
+
|
461
|
+
= Response
|
462
|
+
|
463
|
+
HTTP/1.1 100 Continue
|
464
|
+
Server: Microsoft-IIS/5.0
|
465
|
+
Date: Sat, 23 Jul 2005 12:57:36 GMT
|
466
|
+
X-Powered-By: ASP.NET
|
467
|
+
|
468
|
+
HTTP/1.1 200 OK
|
469
|
+
Server: Microsoft-IIS/5.0
|
470
|
+
Date: Sat, 23 Jul 2005 12:57:36 GMT
|
471
|
+
X-Powered-By: ASP.NET
|
472
|
+
Content-Type: text/xml; charset="UTF-8"
|
473
|
+
Content-Length: 997
|
474
|
+
Expires: -1;
|
475
|
+
|
476
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echo2DStringArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return SOAPSDK3:arrayType="SOAPSDK1:string[3,3]" SOAPSDK3:offset="[0,0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>r0c0</SOAPSDK3:string><SOAPSDK3:string>r1c0</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r0c1</SOAPSDK3:string><SOAPSDK3:string>r1c1</SOAPSDK3:string><SOAPSDK3:string>r2c1</SOAPSDK3:string><SOAPSDK3:string>item</SOAPSDK3:string><SOAPSDK3:string>r1c2</SOAPSDK3:string><SOAPSDK3:string>r2c2</SOAPSDK3:string></return></SOAPSDK4:echo2DStringArrayResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
477
|
+
|
478
|
+
|
479
|
+
##########
|
480
|
+
# echoNestedStruct
|
481
|
+
|
482
|
+
Result: OK
|
483
|
+
|
484
|
+
Wire dump:
|
485
|
+
|
486
|
+
= Request
|
487
|
+
|
488
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
489
|
+
SOAPAction: "http://soapinterop.org/"
|
490
|
+
Content-Type: text/xml; charset=utf-8
|
491
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
492
|
+
Date: Sat Jul 23 21:08:55 JST 2005
|
493
|
+
Content-Length: 920
|
494
|
+
Host: mssoapinterop.org
|
495
|
+
|
496
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
497
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
498
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
499
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
500
|
+
<env:Body>
|
501
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
502
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
503
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
504
|
+
xsi:type="n2:SOAPStructStruct">
|
505
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
506
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
507
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
508
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
509
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
510
|
+
<varString xsi:type="xsd:string">b</varString>
|
511
|
+
</varStruct>
|
512
|
+
<varString xsi:type="xsd:string">a</varString>
|
513
|
+
</inputStruct>
|
514
|
+
</n1:echoNestedStruct>
|
515
|
+
</env:Body>
|
516
|
+
</env:Envelope>
|
517
|
+
|
518
|
+
= Response
|
519
|
+
|
520
|
+
HTTP/1.1 100 Continue
|
521
|
+
Server: Microsoft-IIS/5.0
|
522
|
+
Date: Sat, 23 Jul 2005 12:57:38 GMT
|
523
|
+
X-Powered-By: ASP.NET
|
524
|
+
|
525
|
+
HTTP/1.1 200 OK
|
526
|
+
Server: Microsoft-IIS/5.0
|
527
|
+
Date: Sat, 23 Jul 2005 12:57:38 GMT
|
528
|
+
X-Powered-By: ASP.NET
|
529
|
+
Content-Type: text/xml; charset="UTF-8"
|
530
|
+
Content-Length: 1235
|
531
|
+
Expires: -1;
|
532
|
+
|
533
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoNestedStructResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoNestedStructResponse><SOAPSDK5:SOAPStructStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPStructStruct"><varString SOAPSDK2:type="SOAPSDK1:string">a</varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat><varStruct href="#id2"/></SOAPSDK5:SOAPStructStruct><SOAPSDK6:SOAPStruct xmlns:SOAPSDK6="http://soapinterop.org/xsd" id="id2" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK6:SOAPStruct"><varString SOAPSDK2:type="SOAPSDK1:string">b</varString><varInt SOAPSDK2:type="SOAPSDK1:int">2</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">2.20000004768372</varFloat></SOAPSDK6:SOAPStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
534
|
+
|
535
|
+
|
536
|
+
##########
|
537
|
+
# echoNestedStruct (nil)
|
538
|
+
|
539
|
+
Result: Exception: SoapMapper:The schema definition with a targetnamespace of for SoapMapper varFloat could not be found HRESULT=0x80004005: Unspecified error
|
540
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type varFloat in namespace . HRESULT=0x80004005: Unspecified error
|
541
|
+
- Generic Custom Type Mapper:Element varFloat could not be loaded while loading type SOAPStructStruct HRESULT=0x80004005: Unspecified error
|
542
|
+
(SOAP::FaultError)
|
543
|
+
#<SOAP::Mapping::Object:0xb7d78d84>
|
544
|
+
|
545
|
+
Wire dump:
|
546
|
+
|
547
|
+
= Request
|
548
|
+
|
549
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
550
|
+
SOAPAction: "http://soapinterop.org/"
|
551
|
+
Content-Type: text/xml; charset=utf-8
|
552
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
553
|
+
Date: Sat Jul 23 21:08:56 JST 2005
|
554
|
+
Content-Length: 874
|
555
|
+
Host: mssoapinterop.org
|
556
|
+
|
557
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
558
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
559
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
560
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
561
|
+
<env:Body>
|
562
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
563
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
564
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
565
|
+
xsi:type="n2:SOAPStructStruct">
|
566
|
+
<varFloat xsi:nil="true"></varFloat>
|
567
|
+
<varInt xsi:nil="true"></varInt>
|
568
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
569
|
+
<varFloat xsi:nil="true"></varFloat>
|
570
|
+
<varInt xsi:nil="true"></varInt>
|
571
|
+
<varString xsi:nil="true"></varString>
|
572
|
+
</varStruct>
|
573
|
+
<varString xsi:nil="true"></varString>
|
574
|
+
</inputStruct>
|
575
|
+
</n1:echoNestedStruct>
|
576
|
+
</env:Body>
|
577
|
+
</env:Envelope>
|
578
|
+
|
579
|
+
= Response
|
580
|
+
|
581
|
+
HTTP/1.1 100 Continue
|
582
|
+
Server: Microsoft-IIS/5.0
|
583
|
+
Date: Sat, 23 Jul 2005 12:57:38 GMT
|
584
|
+
X-Powered-By: ASP.NET
|
585
|
+
|
586
|
+
HTTP/1.1 500 Internal Server Error
|
587
|
+
Server: Microsoft-IIS/5.0
|
588
|
+
Date: Sat, 23 Jul 2005 12:57:38 GMT
|
589
|
+
X-Powered-By: ASP.NET
|
590
|
+
Content-Type: text/xml; charset="UTF-8"
|
591
|
+
Content-Length: 2673
|
592
|
+
Expires: -1;
|
593
|
+
|
594
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>SoapMapper:The schema definition with a targetnamespace of for SoapMapper varFloat could not be found HRESULT=0x80004005: Unspecified error
|
595
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type varFloat in namespace . HRESULT=0x80004005: Unspecified error
|
596
|
+
- Generic Custom Type Mapper:Element varFloat could not be loaded while loading type SOAPStructStruct HRESULT=0x80004005: Unspecified error
|
597
|
+
</faultstring><faultactor>http://soapinterop.org/</faultactor><detail><mserror:errorInfo xmlns:mserror="http://schemas.microsoft.com/soap-toolkit/faultdetail/error/"><mserror:returnCode>-2147467259 : Unspecified error
|
598
|
+
</mserror:returnCode><mserror:serverErrorInfo><mserror:description>SoapMapper:The schema definition with a targetnamespace of for SoapMapper varFloat could not be found HRESULT=0x80004005: Unspecified error
|
599
|
+
- SoapMapper:Can't create mapper inside 'anyType' of type varFloat in namespace . HRESULT=0x80004005: Unspecified error
|
600
|
+
- Generic Custom Type Mapper:Element varFloat could not be loaded while loading type SOAPStructStruct HRESULT=0x80004005: Unspecified error
|
601
|
+
</mserror:description><mserror:source>SoapMapper</mserror:source></mserror:serverErrorInfo><mserror:callStack><mserror:callElement><mserror:component>SoapMapper</mserror:component><mserror:description>Restoring data into SoapMapper SOAPStructStruct failed</mserror:description><mserror:returnCode>-2147467259 : Unspecified error
|
602
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>WSDLReader</mserror:component><mserror:description>None of the matching operations for soapAction http://soapinterop.org/ could successfully load the incoming request. Potential typemapper problem</mserror:description><mserror:returnCode>-2147024809 : The parameter is incorrect.
|
603
|
+
</mserror:returnCode></mserror:callElement><mserror:callElement><mserror:component>Server</mserror:component><mserror:description>One of the parameters supplied is invalid.</mserror:description><mserror:returnCode>-2147024809 : The parameter is incorrect.
|
604
|
+
</mserror:returnCode></mserror:callElement></mserror:callStack></mserror:errorInfo></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
605
|
+
|
606
|
+
|
607
|
+
##########
|
608
|
+
# echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
|
609
|
+
|
610
|
+
Result: Expected = "String#-605545560" // Actual = "String#-605548140"
|
611
|
+
|
612
|
+
Wire dump:
|
613
|
+
|
614
|
+
= Request
|
615
|
+
|
616
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
617
|
+
SOAPAction: "http://soapinterop.org/"
|
618
|
+
Content-Type: text/xml; charset=utf-8
|
619
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
620
|
+
Date: Sat Jul 23 21:08:56 JST 2005
|
621
|
+
Content-Length: 1062
|
622
|
+
Host: mssoapinterop.org
|
623
|
+
|
624
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
625
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
626
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
627
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
628
|
+
<env:Body>
|
629
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
630
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
631
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
632
|
+
xsi:type="n2:SOAPStructStruct">
|
633
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
634
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
635
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
636
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
637
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
638
|
+
<varString href="#id-605046106"></varString>
|
639
|
+
</varStruct>
|
640
|
+
<varString href="#id-605046106"></varString>
|
641
|
+
</inputStruct>
|
642
|
+
</n1:echoNestedStruct>
|
643
|
+
<varString id="id-605046106"
|
644
|
+
xsi:type="xsd:string"
|
645
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
646
|
+
</env:Body>
|
647
|
+
</env:Envelope>
|
648
|
+
|
649
|
+
= Response
|
650
|
+
|
651
|
+
HTTP/1.1 100 Continue
|
652
|
+
Server: Microsoft-IIS/5.0
|
653
|
+
Date: Sat, 23 Jul 2005 12:57:39 GMT
|
654
|
+
X-Powered-By: ASP.NET
|
655
|
+
|
656
|
+
HTTP/1.1 200 OK
|
657
|
+
Server: Microsoft-IIS/5.0
|
658
|
+
Date: Sat, 23 Jul 2005 12:57:39 GMT
|
659
|
+
X-Powered-By: ASP.NET
|
660
|
+
Content-Type: text/xml; charset="UTF-8"
|
661
|
+
Content-Length: 1233
|
662
|
+
Expires: -1;
|
663
|
+
|
664
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoNestedStructResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoNestedStructResponse><SOAPSDK5:SOAPStructStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPStructStruct"><varString SOAPSDK2:type="SOAPSDK1:string"></varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat><varStruct href="#id2"/></SOAPSDK5:SOAPStructStruct><SOAPSDK6:SOAPStruct xmlns:SOAPSDK6="http://soapinterop.org/xsd" id="id2" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK6:SOAPStruct"><varString SOAPSDK2:type="SOAPSDK1:string"></varString><varInt SOAPSDK2:type="SOAPSDK1:int">2</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">2.20000004768372</varFloat></SOAPSDK6:SOAPStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
665
|
+
|
666
|
+
|
667
|
+
##########
|
668
|
+
# echoNestedArray
|
669
|
+
|
670
|
+
Result: OK
|
671
|
+
|
672
|
+
Wire dump:
|
673
|
+
|
674
|
+
= Request
|
675
|
+
|
676
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
677
|
+
SOAPAction: "http://soapinterop.org/"
|
678
|
+
Content-Type: text/xml; charset=utf-8
|
679
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
680
|
+
Date: Sat Jul 23 21:08:57 JST 2005
|
681
|
+
Content-Length: 931
|
682
|
+
Host: mssoapinterop.org
|
683
|
+
|
684
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
685
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
686
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
687
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
688
|
+
<env:Body>
|
689
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
690
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
691
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
692
|
+
xsi:type="n2:SOAPArrayStruct">
|
693
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
694
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
695
|
+
xsi:type="n3:Array"
|
696
|
+
n3:arrayType="xsd:string[3]">
|
697
|
+
<item>2</item>
|
698
|
+
<item>2.2</item>
|
699
|
+
<item>b</item>
|
700
|
+
</varArray>
|
701
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
702
|
+
<varString xsi:type="xsd:string">a</varString>
|
703
|
+
</inputStruct>
|
704
|
+
</n1:echoNestedArray>
|
705
|
+
</env:Body>
|
706
|
+
</env:Envelope>
|
707
|
+
|
708
|
+
= Response
|
709
|
+
|
710
|
+
HTTP/1.1 100 Continue
|
711
|
+
Server: Microsoft-IIS/5.0
|
712
|
+
Date: Sat, 23 Jul 2005 12:57:39 GMT
|
713
|
+
X-Powered-By: ASP.NET
|
714
|
+
|
715
|
+
HTTP/1.1 200 OK
|
716
|
+
Server: Microsoft-IIS/5.0
|
717
|
+
Date: Sat, 23 Jul 2005 12:57:39 GMT
|
718
|
+
X-Powered-By: ASP.NET
|
719
|
+
Content-Type: text/xml; charset="UTF-8"
|
720
|
+
Content-Length: 1109
|
721
|
+
Expires: -1;
|
722
|
+
|
723
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoNestedArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoNestedArrayResponse><SOAPSDK5:SOAPArrayStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPArrayStruct"><varString SOAPSDK2:type="SOAPSDK1:string">a</varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat><varArray SOAPSDK3:arrayType="SOAPSDK1:string[3]" SOAPSDK3:offset="[0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>2</SOAPSDK3:string><SOAPSDK3:string>2.2</SOAPSDK3:string><SOAPSDK3:string>b</SOAPSDK3:string></varArray></SOAPSDK5:SOAPArrayStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
724
|
+
|
725
|
+
|
726
|
+
##########
|
727
|
+
# echoNestedArray (anyType array)
|
728
|
+
|
729
|
+
Result: OK
|
730
|
+
|
731
|
+
Wire dump:
|
732
|
+
|
733
|
+
= Request
|
734
|
+
|
735
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
736
|
+
SOAPAction: "http://soapinterop.org/"
|
737
|
+
Content-Type: text/xml; charset=utf-8
|
738
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
739
|
+
Date: Sat Jul 23 21:08:58 JST 2005
|
740
|
+
Content-Length: 998
|
741
|
+
Host: mssoapinterop.org
|
742
|
+
|
743
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
744
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
745
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
746
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
747
|
+
<env:Body>
|
748
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
749
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
750
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
751
|
+
xsi:type="n2:SOAPArrayStruct">
|
752
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
753
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
754
|
+
xsi:type="n3:Array"
|
755
|
+
n3:arrayType="xsd:anyType[3]">
|
756
|
+
<item xsi:type="xsd:string">2</item>
|
757
|
+
<item xsi:type="xsd:string">2.2</item>
|
758
|
+
<item xsi:type="xsd:string">b</item>
|
759
|
+
</varArray>
|
760
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
761
|
+
<varString xsi:type="xsd:string">a</varString>
|
762
|
+
</inputStruct>
|
763
|
+
</n1:echoNestedArray>
|
764
|
+
</env:Body>
|
765
|
+
</env:Envelope>
|
766
|
+
|
767
|
+
= Response
|
768
|
+
|
769
|
+
HTTP/1.1 100 Continue
|
770
|
+
Server: Microsoft-IIS/5.0
|
771
|
+
Date: Sat, 23 Jul 2005 12:57:40 GMT
|
772
|
+
X-Powered-By: ASP.NET
|
773
|
+
|
774
|
+
HTTP/1.1 200 OK
|
775
|
+
Server: Microsoft-IIS/5.0
|
776
|
+
Date: Sat, 23 Jul 2005 12:57:40 GMT
|
777
|
+
X-Powered-By: ASP.NET
|
778
|
+
Content-Type: text/xml; charset="UTF-8"
|
779
|
+
Content-Length: 1109
|
780
|
+
Expires: -1;
|
781
|
+
|
782
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoNestedArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoNestedArrayResponse><SOAPSDK5:SOAPArrayStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPArrayStruct"><varString SOAPSDK2:type="SOAPSDK1:string">a</varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat><varArray SOAPSDK3:arrayType="SOAPSDK1:string[3]" SOAPSDK3:offset="[0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>2</SOAPSDK3:string><SOAPSDK3:string>2.2</SOAPSDK3:string><SOAPSDK3:string>b</SOAPSDK3:string></varArray></SOAPSDK5:SOAPArrayStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
783
|
+
|
784
|
+
|
785
|
+
##########
|
786
|
+
# echoNestedArray (multi-ref)
|
787
|
+
|
788
|
+
Result: OK
|
789
|
+
|
790
|
+
Wire dump:
|
791
|
+
|
792
|
+
= Request
|
793
|
+
|
794
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
795
|
+
SOAPAction: "http://soapinterop.org/"
|
796
|
+
Content-Type: text/xml; charset=utf-8
|
797
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
798
|
+
Date: Sat Jul 23 21:08:58 JST 2005
|
799
|
+
Content-Length: 1083
|
800
|
+
Host: mssoapinterop.org
|
801
|
+
|
802
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
803
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
804
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
805
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
806
|
+
<env:Body>
|
807
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
808
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
809
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
810
|
+
xsi:type="n2:SOAPArrayStruct">
|
811
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
812
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
813
|
+
xsi:type="n3:Array"
|
814
|
+
n3:arrayType="xsd:string[3]">
|
815
|
+
<item>2</item>
|
816
|
+
<item href="#id-605671220"></item>
|
817
|
+
<item>b</item>
|
818
|
+
</varArray>
|
819
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
820
|
+
<varString href="#id-605671220"></varString>
|
821
|
+
</inputStruct>
|
822
|
+
</n1:echoNestedArray>
|
823
|
+
<item id="id-605671220"
|
824
|
+
xsi:type="xsd:string"
|
825
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
|
826
|
+
</env:Body>
|
827
|
+
</env:Envelope>
|
828
|
+
|
829
|
+
= Response
|
830
|
+
|
831
|
+
HTTP/1.1 100 Continue
|
832
|
+
Server: Microsoft-IIS/5.0
|
833
|
+
Date: Sat, 23 Jul 2005 12:57:40 GMT
|
834
|
+
X-Powered-By: ASP.NET
|
835
|
+
|
836
|
+
HTTP/1.1 200 OK
|
837
|
+
Server: Microsoft-IIS/5.0
|
838
|
+
Date: Sat, 23 Jul 2005 12:57:40 GMT
|
839
|
+
X-Powered-By: ASP.NET
|
840
|
+
Content-Type: text/xml; charset="UTF-8"
|
841
|
+
Content-Length: 1105
|
842
|
+
Expires: -1;
|
843
|
+
|
844
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoNestedArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoNestedArrayResponse><SOAPSDK5:SOAPArrayStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPArrayStruct"><varString SOAPSDK2:type="SOAPSDK1:string"></varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat><varArray SOAPSDK3:arrayType="SOAPSDK1:string[3]" SOAPSDK3:offset="[0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>2</SOAPSDK3:string><SOAPSDK3:string></SOAPSDK3:string><SOAPSDK3:string>b</SOAPSDK3:string></varArray></SOAPSDK5:SOAPArrayStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
845
|
+
|
846
|
+
|
847
|
+
##########
|
848
|
+
# echoNestedArray (multi-ref: varString == varArray[1])
|
849
|
+
|
850
|
+
Result: Expected = "String#-605757870" // Actual = "String#-605760290"
|
851
|
+
|
852
|
+
Wire dump:
|
853
|
+
|
854
|
+
= Request
|
855
|
+
|
856
|
+
POST /stkV3/InteropBtyped.wsdl HTTP/1.1
|
857
|
+
SOAPAction: "http://soapinterop.org/"
|
858
|
+
Content-Type: text/xml; charset=utf-8
|
859
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
860
|
+
Date: Sat Jul 23 21:08:59 JST 2005
|
861
|
+
Content-Length: 1083
|
862
|
+
Host: mssoapinterop.org
|
863
|
+
|
864
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
865
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
866
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
867
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
868
|
+
<env:Body>
|
869
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
870
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
871
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
872
|
+
xsi:type="n2:SOAPArrayStruct">
|
873
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
874
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
875
|
+
xsi:type="n3:Array"
|
876
|
+
n3:arrayType="xsd:string[3]">
|
877
|
+
<item>2</item>
|
878
|
+
<item href="#id-605696970"></item>
|
879
|
+
<item>b</item>
|
880
|
+
</varArray>
|
881
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
882
|
+
<varString href="#id-605696970"></varString>
|
883
|
+
</inputStruct>
|
884
|
+
</n1:echoNestedArray>
|
885
|
+
<item id="id-605696970"
|
886
|
+
xsi:type="xsd:string"
|
887
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
|
888
|
+
</env:Body>
|
889
|
+
</env:Envelope>
|
890
|
+
|
891
|
+
= Response
|
892
|
+
|
893
|
+
HTTP/1.1 100 Continue
|
894
|
+
Server: Microsoft-IIS/5.0
|
895
|
+
Date: Sat, 23 Jul 2005 12:57:41 GMT
|
896
|
+
X-Powered-By: ASP.NET
|
897
|
+
|
898
|
+
HTTP/1.1 200 OK
|
899
|
+
Server: Microsoft-IIS/5.0
|
900
|
+
Date: Sat, 23 Jul 2005 12:57:41 GMT
|
901
|
+
X-Powered-By: ASP.NET
|
902
|
+
Content-Type: text/xml; charset="UTF-8"
|
903
|
+
Content-Length: 1105
|
904
|
+
Expires: -1;
|
905
|
+
|
906
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?><SOAP-ENV:Envelope xmlns:SOAPSDK1="http://www.w3.org/2001/XMLSchema" xmlns:SOAPSDK2="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAPSDK3="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Body SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAPSDK4:echoNestedArrayResponse xmlns:SOAPSDK4="http://soapinterop.org/"><return href="#id1"/></SOAPSDK4:echoNestedArrayResponse><SOAPSDK5:SOAPArrayStruct xmlns:SOAPSDK5="http://soapinterop.org/xsd" id="id1" SOAPSDK3:root="0" SOAPSDK2:type="SOAPSDK5:SOAPArrayStruct"><varString SOAPSDK2:type="SOAPSDK1:string"></varString><varInt SOAPSDK2:type="SOAPSDK1:int">1</varInt><varFloat SOAPSDK2:type="SOAPSDK1:float">1.10000002384186</varFloat><varArray SOAPSDK3:arrayType="SOAPSDK1:string[3]" SOAPSDK3:offset="[0]" SOAPSDK2:type="SOAPSDK3:Array"><SOAPSDK3:string>2</SOAPSDK3:string><SOAPSDK3:string></SOAPSDK3:string><SOAPSDK3:string>b</SOAPSDK3:string></varArray></SOAPSDK5:SOAPArrayStruct></SOAP-ENV:Body></SOAP-ENV:Envelope>
|
907
|
+
|
908
|
+
|