soap4r 1.5.5.20061022
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/wsdl2ruby.rb +131 -0
- data/bin/xsd2ruby.rb +82 -0
- data/lib/soap/XMLSchemaDatatypes.rb +9 -0
- data/lib/soap/XMLSchemaDatatypes1999.rb +10 -0
- data/lib/soap/attachment.rb +108 -0
- data/lib/soap/baseData.rb +992 -0
- data/lib/soap/cgistub.rb +9 -0
- data/lib/soap/charset.rb +9 -0
- data/lib/soap/compat.rb +182 -0
- data/lib/soap/driver.rb +9 -0
- data/lib/soap/element.rb +266 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
- data/lib/soap/encodingstyle/handler.rb +109 -0
- data/lib/soap/encodingstyle/literalHandler.rb +241 -0
- data/lib/soap/encodingstyle/soapHandler.rb +598 -0
- data/lib/soap/generator.rb +264 -0
- data/lib/soap/header/handler.rb +60 -0
- data/lib/soap/header/handlerset.rb +70 -0
- data/lib/soap/header/simplehandler.rb +44 -0
- data/lib/soap/httpconfigloader.rb +119 -0
- data/lib/soap/mapping.rb +12 -0
- data/lib/soap/mapping/encodedregistry.rb +531 -0
- data/lib/soap/mapping/factory.rb +372 -0
- data/lib/soap/mapping/literalregistry.rb +321 -0
- data/lib/soap/mapping/mapping.rb +561 -0
- data/lib/soap/mapping/registry.rb +258 -0
- data/lib/soap/mapping/rubytypeFactory.rb +475 -0
- data/lib/soap/mapping/typeMap.rb +82 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +253 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +246 -0
- data/lib/soap/mappingRegistry.rb +9 -0
- data/lib/soap/marshal.rb +59 -0
- data/lib/soap/mimemessage.rb +241 -0
- data/lib/soap/namespace.rb +9 -0
- data/lib/soap/netHttpClient.rb +204 -0
- data/lib/soap/parser.rb +251 -0
- data/lib/soap/processor.rb +66 -0
- data/lib/soap/property.rb +333 -0
- data/lib/soap/proxy.rb +14 -0
- data/lib/soap/qname.rb +9 -0
- data/lib/soap/rpc/cgistub.rb +214 -0
- data/lib/soap/rpc/driver.rb +245 -0
- data/lib/soap/rpc/element.rb +330 -0
- data/lib/soap/rpc/httpserver.rb +143 -0
- data/lib/soap/rpc/proxy.rb +563 -0
- data/lib/soap/rpc/router.rb +602 -0
- data/lib/soap/rpc/rpc.rb +25 -0
- data/lib/soap/rpc/soaplet.rb +162 -0
- data/lib/soap/rpc/standaloneServer.rb +43 -0
- data/lib/soap/rpcRouter.rb +9 -0
- data/lib/soap/rpcUtils.rb +9 -0
- data/lib/soap/server.rb +9 -0
- data/lib/soap/soap.rb +150 -0
- data/lib/soap/standaloneServer.rb +9 -0
- data/lib/soap/streamHandler.rb +258 -0
- data/lib/soap/wsdlDriver.rb +580 -0
- data/lib/wsdl/binding.rb +65 -0
- data/lib/wsdl/data.rb +64 -0
- data/lib/wsdl/definitions.rb +250 -0
- data/lib/wsdl/documentation.rb +32 -0
- data/lib/wsdl/import.rb +80 -0
- data/lib/wsdl/importer.rb +38 -0
- data/lib/wsdl/info.rb +39 -0
- data/lib/wsdl/message.rb +54 -0
- data/lib/wsdl/operation.rb +175 -0
- data/lib/wsdl/operationBinding.rb +116 -0
- data/lib/wsdl/param.rb +85 -0
- data/lib/wsdl/parser.rb +163 -0
- data/lib/wsdl/part.rb +52 -0
- data/lib/wsdl/port.rb +84 -0
- data/lib/wsdl/portType.rb +75 -0
- data/lib/wsdl/service.rb +61 -0
- data/lib/wsdl/soap/address.rb +40 -0
- data/lib/wsdl/soap/binding.rb +49 -0
- data/lib/wsdl/soap/body.rb +56 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +88 -0
- data/lib/wsdl/soap/classDefCreator.rb +340 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +131 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +93 -0
- data/lib/wsdl/soap/complexType.rb +166 -0
- data/lib/wsdl/soap/data.rb +42 -0
- data/lib/wsdl/soap/definitions.rb +151 -0
- data/lib/wsdl/soap/driverCreator.rb +110 -0
- data/lib/wsdl/soap/element.rb +28 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +117 -0
- data/lib/wsdl/soap/fault.rb +56 -0
- data/lib/wsdl/soap/header.rb +86 -0
- data/lib/wsdl/soap/headerfault.rb +56 -0
- data/lib/wsdl/soap/literalMappingRegistryCreator.rb +188 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +53 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +233 -0
- data/lib/wsdl/soap/methodDefCreator.rb +253 -0
- data/lib/wsdl/soap/operation.rb +122 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +78 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +98 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +196 -0
- data/lib/wsdl/types.rb +44 -0
- data/lib/wsdl/wsdl.rb +23 -0
- data/lib/wsdl/xmlSchema/all.rb +24 -0
- data/lib/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/wsdl/xmlSchema/any.rb +56 -0
- data/lib/wsdl/xmlSchema/attribute.rb +123 -0
- data/lib/wsdl/xmlSchema/choice.rb +55 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +88 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +104 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +92 -0
- data/lib/wsdl/xmlSchema/complexType.rb +152 -0
- data/lib/wsdl/xmlSchema/content.rb +74 -0
- data/lib/wsdl/xmlSchema/data.rb +90 -0
- data/lib/wsdl/xmlSchema/element.rb +158 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/wsdl/xmlSchema/import.rb +65 -0
- data/lib/wsdl/xmlSchema/importer.rb +87 -0
- data/lib/wsdl/xmlSchema/include.rb +54 -0
- data/lib/wsdl/xmlSchema/length.rb +35 -0
- data/lib/wsdl/xmlSchema/list.rb +48 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +35 -0
- data/lib/wsdl/xmlSchema/minlength.rb +35 -0
- data/lib/wsdl/xmlSchema/parser.rb +166 -0
- data/lib/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/wsdl/xmlSchema/schema.rb +144 -0
- data/lib/wsdl/xmlSchema/sequence.rb +51 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +54 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +91 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +80 -0
- data/lib/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +107 -0
- data/lib/xsd/charset.rb +187 -0
- data/lib/xsd/codegen.rb +12 -0
- data/lib/xsd/codegen/classdef.rb +203 -0
- data/lib/xsd/codegen/commentdef.rb +34 -0
- data/lib/xsd/codegen/gensupport.rb +168 -0
- data/lib/xsd/codegen/methoddef.rb +70 -0
- data/lib/xsd/codegen/moduledef.rb +191 -0
- data/lib/xsd/datatypes.rb +1282 -0
- data/lib/xsd/datatypes1999.rb +20 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +42 -0
- data/lib/xsd/namedelements.rb +124 -0
- data/lib/xsd/ns.rb +146 -0
- data/lib/xsd/qname.rb +78 -0
- data/lib/xsd/xmlparser.rb +61 -0
- data/lib/xsd/xmlparser/parser.rb +96 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +54 -0
- data/lib/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +147 -0
- data/test/16runner.rb +68 -0
- data/test/interopR2/README.txt +2 -0
- data/test/interopR2/SOAPBuildersInterop_R2.wsdl +461 -0
- data/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl +19 -0
- data/test/interopR2/base.rb +288 -0
- data/test/interopR2/client.NetRemoting.rb +17 -0
- data/test/interopR2/client.NetRemoting.rb.result +3410 -0
- data/test/interopR2/client.NetRemoting_Base.log +6279 -0
- data/test/interopR2/client.NetRemoting_GroupB.log +1188 -0
- data/test/interopR2/client.rb +1228 -0
- data/test/interopR2/client4S4C.rb +15 -0
- data/test/interopR2/client4S4C2.rb +14 -0
- data/test/interopR2/client4S4C2_Base.log +4955 -0
- data/test/interopR2/client4S4C2_GroupB.log +1000 -0
- data/test/interopR2/client4S4C_Base.log +4635 -0
- data/test/interopR2/client4S4C_GroupB.log +900 -0
- data/test/interopR2/clientASP.NET.rb +17 -0
- data/test/interopR2/clientASP.NET_Base.log +5468 -0
- data/test/interopR2/clientASP.NET_GroupB.log +977 -0
- data/test/interopR2/clientApacheAxis.rb +16 -0
- data/test/interopR2/clientApacheAxis_Base.log +3171 -0
- data/test/interopR2/clientApacheAxis_GroupB.log +498 -0
- data/test/interopR2/clientApacheSOAP.rb +17 -0
- data/test/interopR2/clientApacheSOAP_Base.log +3171 -0
- data/test/interopR2/clientBEAWebLogic.rb +17 -0
- data/test/interopR2/clientBEAWebLogic_Base.log +3171 -0
- data/test/interopR2/clientBEAWebLogic_GroupB.log +498 -0
- data/test/interopR2/clientBase.rb +1970 -0
- data/test/interopR2/clientCapeConnect.rb +18 -0
- data/test/interopR2/clientCapeConnect_Base.log +2126 -0
- data/test/interopR2/clientDelphi.rb +19 -0
- data/test/interopR2/clientDelphi_Base.log +0 -0
- data/test/interopR2/clientEasySoap.rb +14 -0
- data/test/interopR2/clientEasySoap_Base.log +6187 -0
- data/test/interopR2/clientEasySoap_GroupB.log +1076 -0
- data/test/interopR2/clientFrontier.rb +25 -0
- data/test/interopR2/clientFrontier_Base.log +5188 -0
- data/test/interopR2/clientGLUE.rb +32 -0
- data/test/interopR2/clientHP.rb +13 -0
- data/test/interopR2/clientHP_Base.log +3171 -0
- data/test/interopR2/clientHP_GroupB.log +498 -0
- data/test/interopR2/clientJAX-RPC.rb +19 -0
- data/test/interopR2/clientJSOAP.rb +14 -0
- data/test/interopR2/clientJSOAP_Base.log +4465 -0
- data/test/interopR2/clientJSOAP_GroupB.log +824 -0
- data/test/interopR2/clientKafkaXSLT.rb +15 -0
- data/test/interopR2/clientKafkaXSLT_Base.log +10299 -0
- data/test/interopR2/clientKafkaXSLT_GroupB.log +1739 -0
- data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit2.0_Base.log +4805 -0
- data/test/interopR2/clientMSSOAPToolkit2.0_GroupB.log +871 -0
- data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit3.0_Base.log +5076 -0
- data/test/interopR2/clientMSSOAPToolkit3.0_GroupB.log +908 -0
- data/test/interopR2/clientNuSOAP.rb +19 -0
- data/test/interopR2/clientNuSOAP_Base.log +5076 -0
- data/test/interopR2/clientNuSOAP_GroupB.log +958 -0
- data/test/interopR2/clientNuWave.rb +15 -0
- data/test/interopR2/clientNuWave_Base.log +2019 -0
- data/test/interopR2/clientOpenLink.rb +15 -0
- data/test/interopR2/clientOpenLink_Base.log +6171 -0
- data/test/interopR2/clientOpenLink_GroupB.log +1094 -0
- data/test/interopR2/clientOracle.rb +15 -0
- data/test/interopR2/clientOracle_Base.log +5594 -0
- data/test/interopR2/clientPEAR.rb +18 -0
- data/test/interopR2/clientPEAR_Base.log +6261 -0
- data/test/interopR2/clientPEAR_GroupB.log +1106 -0
- data/test/interopR2/clientPhalanx.rb +18 -0
- data/test/interopR2/clientPhalanx_Base.log +41036 -0
- data/test/interopR2/clientPhalanx_GroupB.log +6519 -0
- data/test/interopR2/clientSIMACE.rb +18 -0
- data/test/interopR2/clientSIMACE_Base.log +6171 -0
- data/test/interopR2/clientSIMACE_GroupB.log +1093 -0
- data/test/interopR2/clientSOAP4R.rb +18 -0
- data/test/interopR2/clientSOAP4R.rb.result +3409 -0
- data/test/interopR2/clientSOAP4R_Base.log +6366 -0
- data/test/interopR2/clientSOAP4R_GroupB.log +1112 -0
- data/test/interopR2/clientSOAP__Lite.rb +14 -0
- data/test/interopR2/clientSQLData.rb +18 -0
- data/test/interopR2/clientSQLData_Base.log +4857 -0
- data/test/interopR2/clientSQLData_GroupB.log +770 -0
- data/test/interopR2/clientSilverStream.rb +17 -0
- data/test/interopR2/clientSilverStream_Base.log +3171 -0
- data/test/interopR2/clientSpray2001.rb +17 -0
- data/test/interopR2/clientSpray2001_Base.log +8187 -0
- data/test/interopR2/clientSpray2001_GroupB.log +1408 -0
- data/test/interopR2/clientSun.rb +19 -0
- data/test/interopR2/clientSun_Base.log +4641 -0
- data/test/interopR2/clientSun_GroupB.log +856 -0
- data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
- data/test/interopR2/clientVWOpentalkSoap_Base.log +5402 -0
- data/test/interopR2/clientVWOpentalkSoap_GroupB.log +972 -0
- data/test/interopR2/clientWASP.rb +19 -0
- data/test/interopR2/clientWASPC.rb +18 -0
- data/test/interopR2/clientWASPC_Base.log +4187 -0
- data/test/interopR2/clientWASPC_GroupB.log +763 -0
- data/test/interopR2/clientWASP_Base.log +5414 -0
- data/test/interopR2/clientWASP_GroupB.log +970 -0
- data/test/interopR2/clientWebMethods.rb +15 -0
- data/test/interopR2/clientWebMethods_Base.log +3075 -0
- data/test/interopR2/clientWebMethods_GroupB.log +483 -0
- data/test/interopR2/clientWhiteMesa.rb +28 -0
- data/test/interopR2/clientWhiteMesa_Base.log +4359 -0
- data/test/interopR2/clientWhiteMesa_GroupB.log +808 -0
- data/test/interopR2/clientWingfoot.rb +15 -0
- data/test/interopR2/clientWingfoot_Base.log +4445 -0
- data/test/interopR2/clientWingfoot_GroupB.log +848 -0
- data/test/interopR2/clientXMLBus.rb +19 -0
- data/test/interopR2/clientXMLBus_Base.log +3075 -0
- data/test/interopR2/clientXMLBus_GroupB.log +483 -0
- data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
- data/test/interopR2/clientXSOAP.rb +14 -0
- data/test/interopR2/clientXSOAP_Base.log +4445 -0
- data/test/interopR2/clientZSI.rb +19 -0
- data/test/interopR2/clienteSOAP.rb +18 -0
- data/test/interopR2/clienteSOAP_Base.log +8728 -0
- data/test/interopR2/clientgSOAP.rb +18 -0
- data/test/interopR2/clientgSOAP_Base.log +4689 -0
- data/test/interopR2/clientgSOAP_GroupB.log +1014 -0
- data/test/interopR2/clientkSOAP.rb +17 -0
- data/test/interopR2/clientkSOAP_Base.log +5625 -0
- data/test/interopR2/iSimonReg.rb +112 -0
- data/test/interopR2/interopResultBase.rb +114 -0
- data/test/interopR2/interopService.rb +247 -0
- data/test/interopR2/result_client.NetRemoting.txt +4593 -0
- data/test/interopR2/rwikiInteropService.rb +105 -0
- data/test/interopR2/server.cgi +270 -0
- data/test/interopR2/server.rb +274 -0
- data/test/interopR2/simonReg.rb +123 -0
- data/test/interopR2/test.sh +49 -0
- data/test/interopR4/client.rb +112 -0
- data/test/runner.rb +9 -0
- data/test/sm11/classDef.rb +156 -0
- data/test/sm11/client.rb +542 -0
- data/test/sm11/driver.rb +183 -0
- data/test/sm11/servant.rb +1067 -0
- data/test/sm11/server.rb +25 -0
- data/test/soap/asp.net/hello.wsdl +96 -0
- data/test/soap/asp.net/test_aspdotnet.rb +112 -0
- data/test/soap/calc/calc.rb +17 -0
- data/test/soap/calc/calc2.rb +29 -0
- data/test/soap/calc/server.cgi +13 -0
- data/test/soap/calc/server.rb +17 -0
- data/test/soap/calc/server2.rb +20 -0
- data/test/soap/calc/test_calc.rb +49 -0
- data/test/soap/calc/test_calc2.rb +53 -0
- data/test/soap/calc/test_calc_cgi.rb +69 -0
- data/test/soap/fault/test_customfault.rb +58 -0
- data/test/soap/header/server.cgi +119 -0
- data/test/soap/header/test_authheader.rb +240 -0
- data/test/soap/header/test_authheader_cgi.rb +121 -0
- data/test/soap/header/test_simplehandler.rb +116 -0
- data/test/soap/helloworld/hw_s.rb +16 -0
- data/test/soap/helloworld/test_helloworld.rb +41 -0
- data/test/soap/literalArrayMapping/amazonEc.rb +4778 -0
- data/test/soap/literalArrayMapping/amazonEcDriver.rb +172 -0
- data/test/soap/literalArrayMapping/amazonresponse.xml +100 -0
- data/test/soap/literalArrayMapping/test_definedarray.rb +36 -0
- data/test/soap/marshal/marshaltestlib.rb +494 -0
- data/test/soap/marshal/test_digraph.rb +56 -0
- data/test/soap/marshal/test_marshal.rb +26 -0
- data/test/soap/marshal/test_struct.rb +47 -0
- data/test/soap/ssl/README +1 -0
- data/test/soap/ssl/ca.cert +23 -0
- data/test/soap/ssl/client.cert +19 -0
- data/test/soap/ssl/client.key +15 -0
- data/test/soap/ssl/server.cert +19 -0
- data/test/soap/ssl/server.key +15 -0
- data/test/soap/ssl/sslsvr.rb +57 -0
- data/test/soap/ssl/subca.cert +21 -0
- data/test/soap/ssl/test_ssl.rb +245 -0
- data/test/soap/struct/test_struct.rb +77 -0
- data/test/soap/styleuse/client.rb +20 -0
- data/test/soap/styleuse/server.rb +86 -0
- data/test/soap/swa/test_file.rb +73 -0
- data/test/soap/test_basetype.rb +976 -0
- data/test/soap/test_custommap.rb +108 -0
- data/test/soap/test_empty.rb +79 -0
- data/test/soap/test_envelopenamespace.rb +92 -0
- data/test/soap/test_httpconfigloader.rb +39 -0
- data/test/soap/test_mapping.rb +59 -0
- data/test/soap/test_no_indent.rb +86 -0
- data/test/soap/test_property.rb +424 -0
- data/test/soap/test_response_as_xml.rb +95 -0
- data/test/soap/test_soapelement.rb +120 -0
- data/test/soap/test_streamhandler.rb +262 -0
- data/test/soap/test_styleuse.rb +333 -0
- data/test/soap/wsdlDriver/README.txt +2 -0
- data/test/soap/wsdlDriver/calc.wsdl +126 -0
- data/test/soap/wsdlDriver/document.wsdl +54 -0
- data/test/soap/wsdlDriver/echo_version.rb +29 -0
- data/test/soap/wsdlDriver/simpletype.wsdl +63 -0
- data/test/soap/wsdlDriver/test_calc.rb +100 -0
- data/test/soap/wsdlDriver/test_document.rb +78 -0
- data/test/soap/wsdlDriver/test_simpletype.rb +87 -0
- data/test/wsdl/abstract/abstract.wsdl +97 -0
- data/test/wsdl/abstract/test_abstract.rb +130 -0
- data/test/wsdl/any/any.wsdl +51 -0
- data/test/wsdl/any/expectedDriver.rb +46 -0
- data/test/wsdl/any/expectedEcho.rb +18 -0
- data/test/wsdl/any/expectedService.rb +42 -0
- data/test/wsdl/any/test_any.rb +193 -0
- data/test/wsdl/axisArray/axisArray.wsdl +60 -0
- data/test/wsdl/axisArray/itemList.rb +14 -0
- data/test/wsdl/axisArray/test_axisarray.rb +69 -0
- data/test/wsdl/choice/choice.wsdl +91 -0
- data/test/wsdl/choice/test_choice.rb +134 -0
- data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
- data/test/wsdl/complexcontent/test_echo.rb +101 -0
- data/test/wsdl/datetime/DatetimeService.rb +44 -0
- data/test/wsdl/datetime/datetime.rb +0 -0
- data/test/wsdl/datetime/datetime.wsdl +45 -0
- data/test/wsdl/datetime/datetimeServant.rb +21 -0
- data/test/wsdl/datetime/test_datetime.rb +82 -0
- data/test/wsdl/document/array/double.wsdl +72 -0
- data/test/wsdl/document/array/test_array.rb +117 -0
- data/test/wsdl/document/document.wsdl +74 -0
- data/test/wsdl/document/number.wsdl +54 -0
- data/test/wsdl/document/ping_nosoapaction.wsdl +66 -0
- data/test/wsdl/document/test_nosoapaction.rb +109 -0
- data/test/wsdl/document/test_number.rb +99 -0
- data/test/wsdl/document/test_rpc.rb +211 -0
- data/test/wsdl/emptycomplextype.wsdl +31 -0
- data/test/wsdl/list/list.wsdl +93 -0
- data/test/wsdl/list/test_list.rb +134 -0
- data/test/wsdl/map/map.wsdl +92 -0
- data/test/wsdl/map/map.xml +43 -0
- data/test/wsdl/map/test_map.rb +99 -0
- data/test/wsdl/marshal/person.wsdl +21 -0
- data/test/wsdl/marshal/person_org.rb +18 -0
- data/test/wsdl/marshal/test_wsdlmarshal.rb +79 -0
- data/test/wsdl/multiplefault.wsdl +68 -0
- data/test/wsdl/overload/overload.wsdl +80 -0
- data/test/wsdl/overload/test_overload.rb +118 -0
- data/test/wsdl/qualified/lp.wsdl +47 -0
- data/test/wsdl/qualified/lp.xsd +26 -0
- data/test/wsdl/qualified/np.wsdl +51 -0
- data/test/wsdl/qualified/test_qualified.rb +145 -0
- data/test/wsdl/qualified/test_unqualified.rb +159 -0
- data/test/wsdl/raa/RAA.rb +120 -0
- data/test/wsdl/raa/RAAServant.rb +107 -0
- data/test/wsdl/raa/RAAService.rb +120 -0
- data/test/wsdl/raa/README.txt +8 -0
- data/test/wsdl/raa/raa.wsdl +264 -0
- data/test/wsdl/raa/server.rb +103 -0
- data/test/wsdl/raa/test_raa.rb +91 -0
- data/test/wsdl/ref/expectedProduct.rb +158 -0
- data/test/wsdl/ref/product.wsdl +147 -0
- data/test/wsdl/ref/test_ref.rb +289 -0
- data/test/wsdl/rpc/rpc.wsdl +83 -0
- data/test/wsdl/rpc/test-rpc-lit.wsdl +364 -0
- data/test/wsdl/rpc/test_rpc.rb +173 -0
- data/test/wsdl/rpc/test_rpc_lit.rb +407 -0
- data/test/wsdl/simplecontent/simplecontent.wsdl +83 -0
- data/test/wsdl/simplecontent/test_simplecontent.rb +116 -0
- data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedDriver.rb +55 -0
- data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +19 -0
- data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
- data/test/wsdl/simpletype/rpc/expectedService.rb +51 -0
- data/test/wsdl/simpletype/rpc/rpc.wsdl +80 -0
- data/test/wsdl/simpletype/rpc/test_rpc.rb +62 -0
- data/test/wsdl/simpletype/simpletype.wsdl +95 -0
- data/test/wsdl/simpletype/test_simpletype.rb +99 -0
- data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
- data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +19 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +55 -0
- data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +44 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.rb +51 -0
- data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
- data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +54 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +96 -0
- data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +79 -0
- data/test/wsdl/soaptype/soaptype.wsdl +61 -0
- data/test/wsdl/soaptype/test_soaptype.rb +160 -0
- data/test/wsdl/test_emptycomplextype.rb +21 -0
- data/test/wsdl/test_fault.rb +50 -0
- data/test/wsdl/test_multiplefault.rb +39 -0
- data/test/xsd/codegen/test_classdef.rb +214 -0
- data/test/xsd/noencoding.xml +4 -0
- data/test/xsd/test_noencoding.rb +32 -0
- data/test/xsd/test_ns.rb +20 -0
- data/test/xsd/test_xmlschemaparser.rb +22 -0
- data/test/xsd/test_xsd.rb +1523 -0
- data/test/xsd/xmllang.xml +43 -0
- data/test/xsd/xmlschema.xml +12 -0
- metadata +539 -0
@@ -0,0 +1,970 @@
|
|
1
|
+
File: clientWASP_GroupB.log - Wiredumps for SOAP4R client / WASPforJava server.
|
2
|
+
Date: Sat Jul 23 22:01:19 JST 2005
|
3
|
+
|
4
|
+
##########
|
5
|
+
# echoStructAsSimpleTypes
|
6
|
+
|
7
|
+
Result: OK
|
8
|
+
|
9
|
+
Wire dump:
|
10
|
+
|
11
|
+
= Request
|
12
|
+
|
13
|
+
! CONNECTION ESTABLISHED
|
14
|
+
POST /InteropBService/ 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:20 JST 2005
|
19
|
+
Content-Length: 700
|
20
|
+
Host: soap.systinet.net:6060
|
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
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
32
|
+
<varString xsi:type="xsd:string">a</varString>
|
33
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
34
|
+
</inputStruct>
|
35
|
+
</n1:echoStructAsSimpleTypes>
|
36
|
+
</env:Body>
|
37
|
+
</env:Envelope>
|
38
|
+
|
39
|
+
= Response
|
40
|
+
|
41
|
+
HTTP/1.1 200 OK
|
42
|
+
Date: Sat, 23 Jul 2005 12:02:25 GMT
|
43
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
44
|
+
SOAPAction: ""
|
45
|
+
Content-type: text/xml;charset=UTF-8
|
46
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
47
|
+
Transfer-Encoding: chunked
|
48
|
+
|
49
|
+
29e
|
50
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
51
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoStructAsSimpleTypesResponse xmlns:n0="http://soapinterop.org/"><outputString i:type="d:string">a</outputString><outputInteger i:type="d:int">1</outputInteger><outputFloat i:type="d:float">1.1</outputFloat></n0:echoStructAsSimpleTypesResponse></e:Body></e:Envelope>
|
52
|
+
0
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
##########
|
58
|
+
# echoStructAsSimpleTypes (nil)
|
59
|
+
|
60
|
+
Result: Exception: org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStruct.varInt (SOAP::FaultError)
|
61
|
+
#<SOAP::Mapping::Object:0xb7db143c>
|
62
|
+
|
63
|
+
Wire dump:
|
64
|
+
|
65
|
+
= Request
|
66
|
+
|
67
|
+
POST /InteropBService/ HTTP/1.1
|
68
|
+
SOAPAction: "http://soapinterop.org/"
|
69
|
+
Content-Type: text/xml; charset=utf-8
|
70
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
71
|
+
Date: Sat Jul 23 22:01:21 JST 2005
|
72
|
+
Content-Length: 677
|
73
|
+
Host: soap.systinet.net:6060
|
74
|
+
|
75
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
76
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
77
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
78
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
79
|
+
<env:Body>
|
80
|
+
<n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
81
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
82
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
83
|
+
xsi:type="n2:SOAPStruct">
|
84
|
+
<varInt xsi:nil="true"></varInt>
|
85
|
+
<varString xsi:nil="true"></varString>
|
86
|
+
<varFloat xsi:nil="true"></varFloat>
|
87
|
+
</inputStruct>
|
88
|
+
</n1:echoStructAsSimpleTypes>
|
89
|
+
</env:Body>
|
90
|
+
</env:Envelope>
|
91
|
+
|
92
|
+
= Response
|
93
|
+
|
94
|
+
HTTP/1.1 500 Internal Server Error
|
95
|
+
Date: Sat, 23 Jul 2005 12:02:26 GMT
|
96
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
97
|
+
SOAPAction: ""
|
98
|
+
Content-type: text/xml;charset=UTF-8
|
99
|
+
Transfer-Encoding: chunked
|
100
|
+
|
101
|
+
fa1
|
102
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
103
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/"><e:Body><e:Fault><faultcode>e:Server</faultcode><faultstring>org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStruct.varInt</faultstring><detail><ijm:idoox-java-mapping.com.idoox.wasp.serialization.DeserializationException xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ijm="urn:idoox-java-mapping"><ijm:stack-trace>com.idoox.wasp.serialization.DeserializationException: org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStruct.varInt
|
104
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.deserialize(ReflectionDeserializer.java:166)
|
105
|
+
at com.idoox.wasp.serialization.BasicConstructDeserializer.deserialize(BasicConstructDeserializer.java:195)
|
106
|
+
at com.idoox.wasp.serialization.SimpleDeserializer.deserialize(SimpleDeserializer.java:144)
|
107
|
+
at com.idoox.wasp.serialization.xml.XMLEncDeserializerWrapper.deserialize(XMLEncDeserializerWrapper.java:62)
|
108
|
+
at com.idoox.wasp.serialization.SerializationHelper.deserializeElement(SerializationHelper.java:437)
|
109
|
+
at com.idoox.wasp.serialization.WaspSerializationHelper.deserialize(WaspSerializationHelper.java:224)
|
110
|
+
at com.systinet.wasp.server.adaptor.JavaInvoker.fillCallParamsXml(JavaInvoker.java:1202)
|
111
|
+
at com.systinet.wasp.server.adaptor.JavaInvoker.beginInvoke(JavaInvoker.java:478)
|
112
|
+
at com.idoox.wasp.server.adaptor.JavaAdaptorImpl.beginInvoke(JavaAdaptorImpl.java:63)
|
113
|
+
at com.idoox.wasp.server.AdaptorTemplate.javaInvocation(AdaptorTemplate.java:510)
|
114
|
+
at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java:395)
|
115
|
+
at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:328)
|
116
|
+
at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java:378)
|
117
|
+
at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerImpl.java:625)
|
118
|
+
at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java:461)
|
119
|
+
at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost(ServiceManagerImpl.java:2525)
|
120
|
+
at com.idoox.transport.http.server.Jetty$WaspHttpHandler.handle(Jetty.java:97)
|
121
|
+
at com.mortbay.HTTP.HandlerContext.handle(HandlerContext.java:1087)
|
122
|
+
at com.mortbay.HTTP.HttpServer.service(HttpServer.java:675)
|
123
|
+
at com.mortbay.HTTP.HttpConnection.service(HttpConnection.java:457)
|
124
|
+
at com.mortbay.HTTP.HttpConnection.handle(HttpConnection.java:317)
|
125
|
+
at com.mortbay.HTTP.SocketListener.handleConnection(SocketListener.java:99)
|
126
|
+
at com.mortbay.Util.ThreadedServer.handle(ThreadedServer.java:254)
|
127
|
+
at com.mortbay.Util.ThreadPool$PoolThreadRunnable.run(ThreadPool.java:607)
|
128
|
+
at java.lang.Thread.run(Thread.java:534)
|
129
|
+
Caused by: org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStruct.varInt
|
130
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.processStructure(ReflectionDeserializer.java:624)
|
131
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.deserialize(ReflectionDeserializer.java:145)
|
132
|
+
... 24 more
|
133
|
+
Caused by: org.idoox.xmlrpc.MessageProcessingException: Error setting field public int iface.round2.groupb.SOAPStruct.varInt to <null> : null
|
134
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.setField(ReflectionDeserializer.java:690)
|
135
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.processStructure(ReflectionDeserializer.java:620)
|
136
|
+
... 25 more
|
137
|
+
Caused by: java.lang.IllegalArgumentException
|
138
|
+
at sun.reflect.UnsafeIntegerFieldAccessorImpl.set(UnsafeIntegerFieldAccessorImpl.java:62)
|
139
|
+
at java.lang.reflect.Field.set(Field.java:519)
|
140
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.setField(ReflectionDeserializer.java:687)
|
141
|
+
... 26 more
|
142
|
+
</ijm:stack-trace></ijm:idoox-java-mapping.com.idoox.wasp.serialization.DeserializationException></detail></e:Fault></e:Body></e:Envelope>
|
143
|
+
0
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
##########
|
149
|
+
# echoSimpleTypesAsStruct
|
150
|
+
|
151
|
+
Result: OK
|
152
|
+
|
153
|
+
Wire dump:
|
154
|
+
|
155
|
+
= Request
|
156
|
+
|
157
|
+
POST /InteropBService/ HTTP/1.1
|
158
|
+
SOAPAction: "http://soapinterop.org/"
|
159
|
+
Content-Type: text/xml; charset=utf-8
|
160
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
161
|
+
Date: Sat Jul 23 22:01:23 JST 2005
|
162
|
+
Content-Length: 600
|
163
|
+
Host: soap.systinet.net:6060
|
164
|
+
|
165
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
166
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
167
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
168
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
169
|
+
<env:Body>
|
170
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
171
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
172
|
+
<inputString xsi:type="xsd:string">a</inputString>
|
173
|
+
<inputInteger xsi:type="xsd:int">1</inputInteger>
|
174
|
+
<inputFloat xsi:type="xsd:float">+1.1</inputFloat>
|
175
|
+
</n1:echoSimpleTypesAsStruct>
|
176
|
+
</env:Body>
|
177
|
+
</env:Envelope>
|
178
|
+
|
179
|
+
= Response
|
180
|
+
|
181
|
+
HTTP/1.1 200 OK
|
182
|
+
Date: Sat, 23 Jul 2005 12:02:28 GMT
|
183
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
184
|
+
SOAPAction: ""
|
185
|
+
Content-type: text/xml;charset=UTF-8
|
186
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
187
|
+
Transfer-Encoding: chunked
|
188
|
+
|
189
|
+
2ad
|
190
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
191
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoSimpleTypesAsStructResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPStruct"><varString i:type="d:string">a</varString><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat></return></n0:echoSimpleTypesAsStructResponse></e:Body></e:Envelope>
|
192
|
+
0
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
##########
|
198
|
+
# echoSimpleTypesAsStruct (nil)
|
199
|
+
|
200
|
+
Result: Exception: An exception occurred: java.lang.NullPointerException (SOAP::FaultError)
|
201
|
+
#<SOAP::Mapping::Object:0xb7d8a4cc>
|
202
|
+
|
203
|
+
Wire dump:
|
204
|
+
|
205
|
+
= Request
|
206
|
+
|
207
|
+
POST /InteropBService/ HTTP/1.1
|
208
|
+
SOAPAction: "http://soapinterop.org/"
|
209
|
+
Content-Type: text/xml; charset=utf-8
|
210
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
211
|
+
Date: Sat Jul 23 22:01:24 JST 2005
|
212
|
+
Content-Length: 577
|
213
|
+
Host: soap.systinet.net:6060
|
214
|
+
|
215
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
216
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
217
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
218
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
219
|
+
<env:Body>
|
220
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
221
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
222
|
+
<inputString xsi:nil="true"></inputString>
|
223
|
+
<inputInteger xsi:nil="true"></inputInteger>
|
224
|
+
<inputFloat xsi:nil="true"></inputFloat>
|
225
|
+
</n1:echoSimpleTypesAsStruct>
|
226
|
+
</env:Body>
|
227
|
+
</env:Envelope>
|
228
|
+
|
229
|
+
= Response
|
230
|
+
|
231
|
+
HTTP/1.1 500 Internal Server Error
|
232
|
+
Date: Sat, 23 Jul 2005 12:02:29 GMT
|
233
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
234
|
+
SOAPAction: ""
|
235
|
+
Content-type: text/xml;charset=UTF-8
|
236
|
+
Transfer-Encoding: chunked
|
237
|
+
|
238
|
+
8ea
|
239
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
240
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/"><e:Body><e:Fault><faultcode>e:Server</faultcode><faultstring>An exception occurred: java.lang.NullPointerException</faultstring><detail><ijm:idoox-java-mapping.java.lang.NullPointerException xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ijm="urn:idoox-java-mapping"><ijm:stack-trace>java.lang.NullPointerException
|
241
|
+
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
|
242
|
+
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
|
243
|
+
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
|
244
|
+
at java.lang.reflect.Method.invoke(Method.java:324)
|
245
|
+
at com.systinet.wasp.server.adaptor.JavaInvoker.invokeService(JavaInvoker.java:1528)
|
246
|
+
at com.systinet.wasp.server.adaptor.JavaInvoker.endInvoke(JavaInvoker.java:542)
|
247
|
+
at com.idoox.wasp.server.adaptor.JavaAdaptorImpl.endInvoke(JavaAdaptorImpl.java:76)
|
248
|
+
at com.idoox.wasp.server.AdaptorTemplate.javaInvocation(AdaptorTemplate.java:561)
|
249
|
+
at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java:395)
|
250
|
+
at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:328)
|
251
|
+
at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java:378)
|
252
|
+
at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerImpl.java:625)
|
253
|
+
at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java:461)
|
254
|
+
at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost(ServiceManagerImpl.java:2525)
|
255
|
+
at com.idoox.transport.http.server.Jetty$WaspHttpHandler.handle(Jetty.java:97)
|
256
|
+
at com.mortbay.HTTP.HandlerContext.handle(HandlerContext.java:1087)
|
257
|
+
at com.mortbay.HTTP.HttpServer.service(HttpServer.java:675)
|
258
|
+
at com.mortbay.HTTP.HttpConnection.service(HttpConnection.java:457)
|
259
|
+
at com.mortbay.HTTP.HttpConnection.handle(HttpConnection.java:317)
|
260
|
+
at com.mortbay.HTTP.SocketListener.handleConnection(SocketListener.java:99)
|
261
|
+
at com.mortbay.Util.ThreadedServer.handle(ThreadedServer.java:254)
|
262
|
+
at com.mortbay.Util.ThreadPool$PoolThreadRunnable.run(ThreadPool.java:607)
|
263
|
+
at java.lang.Thread.run(Thread.java:534)
|
264
|
+
</ijm:stack-trace></ijm:idoox-java-mapping.java.lang.NullPointerException></detail></e:Fault></e:Body></e:Envelope>
|
265
|
+
0
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
|
270
|
+
##########
|
271
|
+
# echo2DStringArray
|
272
|
+
|
273
|
+
Result: OK
|
274
|
+
|
275
|
+
Wire dump:
|
276
|
+
|
277
|
+
= Request
|
278
|
+
|
279
|
+
POST /InteropBService/ HTTP/1.1
|
280
|
+
SOAPAction: "http://soapinterop.org/"
|
281
|
+
Content-Type: text/xml; charset=utf-8
|
282
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
283
|
+
Date: Sat Jul 23 22:01:25 JST 2005
|
284
|
+
Content-Length: 889
|
285
|
+
Host: soap.systinet.net:6060
|
286
|
+
|
287
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
288
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
289
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
290
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
291
|
+
<env:Body>
|
292
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
293
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
294
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
295
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
296
|
+
xsi:type="n2:ArrayOfString2D"
|
297
|
+
n3:arrayType="xsd:string[3,3]">
|
298
|
+
<item>r0c0</item>
|
299
|
+
<item>r1c0</item>
|
300
|
+
<item>r2c0</item>
|
301
|
+
<item>r0c1</item>
|
302
|
+
<item>r1c1</item>
|
303
|
+
<item>r2c1</item>
|
304
|
+
<item>r0c2</item>
|
305
|
+
<item>r1c2</item>
|
306
|
+
<item>r2c2</item>
|
307
|
+
</input2DStringArray>
|
308
|
+
</n1:echo2DStringArray>
|
309
|
+
</env:Body>
|
310
|
+
</env:Envelope>
|
311
|
+
|
312
|
+
= Response
|
313
|
+
|
314
|
+
HTTP/1.1 200 OK
|
315
|
+
Date: Sat, 23 Jul 2005 12:02:30 GMT
|
316
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
317
|
+
SOAPAction: ""
|
318
|
+
Content-type: text/xml;charset=UTF-8
|
319
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
320
|
+
Transfer-Encoding: chunked
|
321
|
+
|
322
|
+
36e
|
323
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
324
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echo2DStringArrayResponse xmlns:n0="http://soapinterop.org/"><return wn0:arrayType="d:string[3,3]"><item i:type="d:string">r0c0</item><item i:type="d:string">r1c0</item><item i:type="d:string">r2c0</item><item i:type="d:string">r0c1</item><item i:type="d:string">r1c1</item><item i:type="d:string">r2c1</item><item i:type="d:string">r0c2</item><item i:type="d:string">r1c2</item><item i:type="d:string">r2c2</item></return></n0:echo2DStringArrayResponse></e:Body></e:Envelope>
|
325
|
+
0
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
|
330
|
+
##########
|
331
|
+
# echo2DStringArray (anyType array)
|
332
|
+
|
333
|
+
Result: OK
|
334
|
+
|
335
|
+
Wire dump:
|
336
|
+
|
337
|
+
= Request
|
338
|
+
|
339
|
+
POST /InteropBService/ HTTP/1.1
|
340
|
+
SOAPAction: "http://soapinterop.org/"
|
341
|
+
Content-Type: text/xml; charset=utf-8
|
342
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
343
|
+
Date: Sat Jul 23 22:01:26 JST 2005
|
344
|
+
Content-Length: 1088
|
345
|
+
Host: soap.systinet.net:6060
|
346
|
+
|
347
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
348
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
349
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
350
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
351
|
+
<env:Body>
|
352
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
353
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
354
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
355
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
356
|
+
xsi:type="n2:ArrayOfString2D"
|
357
|
+
n3:arrayType="xsd:anyType[3,3]">
|
358
|
+
<item xsi:type="xsd:string">r0c0</item>
|
359
|
+
<item xsi:type="xsd:string">r0c1</item>
|
360
|
+
<item xsi:type="xsd:string">r0c2</item>
|
361
|
+
<item xsi:type="xsd:string">r1c0</item>
|
362
|
+
<item xsi:type="xsd:string">r1c1</item>
|
363
|
+
<item xsi:type="xsd:string">r1c2</item>
|
364
|
+
<item xsi:type="xsd:string">r2c0</item>
|
365
|
+
<item xsi:type="xsd:string">r0c1</item>
|
366
|
+
<item xsi:type="xsd:string">r2c2</item>
|
367
|
+
</input2DStringArray>
|
368
|
+
</n1:echo2DStringArray>
|
369
|
+
</env:Body>
|
370
|
+
</env:Envelope>
|
371
|
+
|
372
|
+
= Response
|
373
|
+
|
374
|
+
HTTP/1.1 200 OK
|
375
|
+
Date: Sat, 23 Jul 2005 12:02:31 GMT
|
376
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
377
|
+
SOAPAction: ""
|
378
|
+
Content-type: text/xml;charset=UTF-8
|
379
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
380
|
+
Transfer-Encoding: chunked
|
381
|
+
|
382
|
+
36e
|
383
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
384
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echo2DStringArrayResponse xmlns:n0="http://soapinterop.org/"><return wn0:arrayType="d:string[3,3]"><item i:type="d:string">r0c0</item><item i:type="d:string">r0c1</item><item i:type="d:string">r0c2</item><item i:type="d:string">r1c0</item><item i:type="d:string">r1c1</item><item i:type="d:string">r1c2</item><item i:type="d:string">r2c0</item><item i:type="d:string">r0c1</item><item i:type="d:string">r2c2</item></return></n0:echo2DStringArrayResponse></e:Body></e:Envelope>
|
385
|
+
0
|
386
|
+
|
387
|
+
|
388
|
+
|
389
|
+
|
390
|
+
##########
|
391
|
+
# echo2DStringArray (multi-ref)
|
392
|
+
|
393
|
+
Result: OK
|
394
|
+
|
395
|
+
Wire dump:
|
396
|
+
|
397
|
+
= Request
|
398
|
+
|
399
|
+
POST /InteropBService/ HTTP/1.1
|
400
|
+
SOAPAction: "http://soapinterop.org/"
|
401
|
+
Content-Type: text/xml; charset=utf-8
|
402
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
403
|
+
Date: Sat Jul 23 22:01:27 JST 2005
|
404
|
+
Content-Length: 1063
|
405
|
+
Host: soap.systinet.net:6060
|
406
|
+
|
407
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
408
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
409
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
410
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
411
|
+
<env:Body>
|
412
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
413
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
414
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
415
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
416
|
+
xsi:type="n2:ArrayOfString2D"
|
417
|
+
n3:arrayType="xsd:string[3,3]">
|
418
|
+
<item>r0c0</item>
|
419
|
+
<item>r1c0</item>
|
420
|
+
<item href="#id-605393722"></item>
|
421
|
+
<item>r0c1</item>
|
422
|
+
<item>r1c1</item>
|
423
|
+
<item>r2c1</item>
|
424
|
+
<item href="#id-605393722"></item>
|
425
|
+
<item>r1c2</item>
|
426
|
+
<item>r2c2</item>
|
427
|
+
</input2DStringArray>
|
428
|
+
</n1:echo2DStringArray>
|
429
|
+
<item id="id-605393722"
|
430
|
+
xsi:type="xsd:string"
|
431
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
432
|
+
</env:Body>
|
433
|
+
</env:Envelope>
|
434
|
+
|
435
|
+
= Response
|
436
|
+
|
437
|
+
HTTP/1.1 200 OK
|
438
|
+
Date: Sat, 23 Jul 2005 12:02:32 GMT
|
439
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
440
|
+
SOAPAction: ""
|
441
|
+
Content-type: text/xml;charset=UTF-8
|
442
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
443
|
+
Transfer-Encoding: chunked
|
444
|
+
|
445
|
+
37e
|
446
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
447
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echo2DStringArrayResponse xmlns:n0="http://soapinterop.org/"><return wn0:arrayType="d:string[3,3]"><item i:type="d:string">r0c0</item><item i:type="d:string">r1c0</item><item href="#0"/><item i:type="d:string">r0c1</item><item i:type="d:string">r1c1</item><item i:type="d:string">r2c1</item><item href="#0"/><item i:type="d:string">r1c2</item><item i:type="d:string">r2c2</item></return></n0:echo2DStringArrayResponse><reference i:type="d:string" id="0">item</reference></e:Body></e:Envelope>
|
448
|
+
0
|
449
|
+
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
##########
|
454
|
+
# echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
|
455
|
+
|
456
|
+
Result: OK
|
457
|
+
|
458
|
+
Wire dump:
|
459
|
+
|
460
|
+
= Request
|
461
|
+
|
462
|
+
POST /InteropBService/ HTTP/1.1
|
463
|
+
SOAPAction: "http://soapinterop.org/"
|
464
|
+
Content-Type: text/xml; charset=utf-8
|
465
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
466
|
+
Date: Sat Jul 23 22:01:28 JST 2005
|
467
|
+
Content-Length: 1063
|
468
|
+
Host: soap.systinet.net:6060
|
469
|
+
|
470
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
471
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
472
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
473
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
474
|
+
<env:Body>
|
475
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
476
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
477
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
478
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
479
|
+
xsi:type="n2:ArrayOfString2D"
|
480
|
+
n3:arrayType="xsd:string[3,3]">
|
481
|
+
<item>r0c0</item>
|
482
|
+
<item>r1c0</item>
|
483
|
+
<item href="#id-605484532"></item>
|
484
|
+
<item>r0c1</item>
|
485
|
+
<item>r1c1</item>
|
486
|
+
<item>r2c1</item>
|
487
|
+
<item href="#id-605484532"></item>
|
488
|
+
<item>r1c2</item>
|
489
|
+
<item>r2c2</item>
|
490
|
+
</input2DStringArray>
|
491
|
+
</n1:echo2DStringArray>
|
492
|
+
<item id="id-605484532"
|
493
|
+
xsi:type="xsd:string"
|
494
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
495
|
+
</env:Body>
|
496
|
+
</env:Envelope>
|
497
|
+
|
498
|
+
= Response
|
499
|
+
|
500
|
+
HTTP/1.1 200 OK
|
501
|
+
Date: Sat, 23 Jul 2005 12:02:33 GMT
|
502
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
503
|
+
SOAPAction: ""
|
504
|
+
Content-type: text/xml;charset=UTF-8
|
505
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
506
|
+
Transfer-Encoding: chunked
|
507
|
+
|
508
|
+
37e
|
509
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
510
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echo2DStringArrayResponse xmlns:n0="http://soapinterop.org/"><return wn0:arrayType="d:string[3,3]"><item i:type="d:string">r0c0</item><item i:type="d:string">r1c0</item><item href="#0"/><item i:type="d:string">r0c1</item><item i:type="d:string">r1c1</item><item i:type="d:string">r2c1</item><item href="#0"/><item i:type="d:string">r1c2</item><item i:type="d:string">r2c2</item></return></n0:echo2DStringArrayResponse><reference i:type="d:string" id="0">item</reference></e:Body></e:Envelope>
|
511
|
+
0
|
512
|
+
|
513
|
+
|
514
|
+
|
515
|
+
|
516
|
+
##########
|
517
|
+
# echoNestedStruct
|
518
|
+
|
519
|
+
Result: OK
|
520
|
+
|
521
|
+
Wire dump:
|
522
|
+
|
523
|
+
= Request
|
524
|
+
|
525
|
+
POST /InteropBService/ HTTP/1.1
|
526
|
+
SOAPAction: "http://soapinterop.org/"
|
527
|
+
Content-Type: text/xml; charset=utf-8
|
528
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
529
|
+
Date: Sat Jul 23 22:01:30 JST 2005
|
530
|
+
Content-Length: 920
|
531
|
+
Host: soap.systinet.net:6060
|
532
|
+
|
533
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
534
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
535
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
536
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
537
|
+
<env:Body>
|
538
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
539
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
540
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
541
|
+
xsi:type="n2:SOAPStructStruct">
|
542
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
543
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
544
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
545
|
+
<varString xsi:type="xsd:string">b</varString>
|
546
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
547
|
+
</varStruct>
|
548
|
+
<varString xsi:type="xsd:string">a</varString>
|
549
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
550
|
+
</inputStruct>
|
551
|
+
</n1:echoNestedStruct>
|
552
|
+
</env:Body>
|
553
|
+
</env:Envelope>
|
554
|
+
|
555
|
+
= Response
|
556
|
+
|
557
|
+
HTTP/1.1 200 OK
|
558
|
+
Date: Sat, 23 Jul 2005 12:02:35 GMT
|
559
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
560
|
+
SOAPAction: ""
|
561
|
+
Content-type: text/xml;charset=UTF-8
|
562
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
563
|
+
Transfer-Encoding: chunked
|
564
|
+
|
565
|
+
348
|
566
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
567
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoNestedStructResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPStructStruct"><varString i:type="d:string">a</varString><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat><varStruct i:type="wn2:SOAPStruct"><varString i:type="d:string">b</varString><varInt i:type="d:int">2</varInt><varFloat i:type="d:float">2.2</varFloat></varStruct></return></n0:echoNestedStructResponse></e:Body></e:Envelope>
|
568
|
+
0
|
569
|
+
|
570
|
+
|
571
|
+
|
572
|
+
|
573
|
+
##########
|
574
|
+
# echoNestedStruct (nil)
|
575
|
+
|
576
|
+
Result: Exception: org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStructStruct.varInt (SOAP::FaultError)
|
577
|
+
#<SOAP::Mapping::Object:0xb7cf39c8>
|
578
|
+
|
579
|
+
Wire dump:
|
580
|
+
|
581
|
+
= Request
|
582
|
+
|
583
|
+
POST /InteropBService/ HTTP/1.1
|
584
|
+
SOAPAction: "http://soapinterop.org/"
|
585
|
+
Content-Type: text/xml; charset=utf-8
|
586
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
587
|
+
Date: Sat Jul 23 22:01:31 JST 2005
|
588
|
+
Content-Length: 874
|
589
|
+
Host: soap.systinet.net:6060
|
590
|
+
|
591
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
592
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
593
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
594
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
595
|
+
<env:Body>
|
596
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
597
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
598
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
599
|
+
xsi:type="n2:SOAPStructStruct">
|
600
|
+
<varInt xsi:nil="true"></varInt>
|
601
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
602
|
+
<varInt xsi:nil="true"></varInt>
|
603
|
+
<varString xsi:nil="true"></varString>
|
604
|
+
<varFloat xsi:nil="true"></varFloat>
|
605
|
+
</varStruct>
|
606
|
+
<varString xsi:nil="true"></varString>
|
607
|
+
<varFloat xsi:nil="true"></varFloat>
|
608
|
+
</inputStruct>
|
609
|
+
</n1:echoNestedStruct>
|
610
|
+
</env:Body>
|
611
|
+
</env:Envelope>
|
612
|
+
|
613
|
+
= Response
|
614
|
+
|
615
|
+
HTTP/1.1 500 Internal Server Error
|
616
|
+
Date: Sat, 23 Jul 2005 12:02:36 GMT
|
617
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
618
|
+
SOAPAction: ""
|
619
|
+
Content-type: text/xml;charset=UTF-8
|
620
|
+
Transfer-Encoding: chunked
|
621
|
+
|
622
|
+
fb9
|
623
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
624
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/"><e:Body><e:Fault><faultcode>e:Server</faultcode><faultstring>org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStructStruct.varInt</faultstring><detail><ijm:idoox-java-mapping.com.idoox.wasp.serialization.DeserializationException xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ijm="urn:idoox-java-mapping"><ijm:stack-trace>com.idoox.wasp.serialization.DeserializationException: org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStructStruct.varInt
|
625
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.deserialize(ReflectionDeserializer.java:166)
|
626
|
+
at com.idoox.wasp.serialization.BasicConstructDeserializer.deserialize(BasicConstructDeserializer.java:195)
|
627
|
+
at com.idoox.wasp.serialization.SimpleDeserializer.deserialize(SimpleDeserializer.java:144)
|
628
|
+
at com.idoox.wasp.serialization.xml.XMLEncDeserializerWrapper.deserialize(XMLEncDeserializerWrapper.java:62)
|
629
|
+
at com.idoox.wasp.serialization.SerializationHelper.deserializeElement(SerializationHelper.java:437)
|
630
|
+
at com.idoox.wasp.serialization.WaspSerializationHelper.deserialize(WaspSerializationHelper.java:224)
|
631
|
+
at com.systinet.wasp.server.adaptor.JavaInvoker.fillCallParamsXml(JavaInvoker.java:1202)
|
632
|
+
at com.systinet.wasp.server.adaptor.JavaInvoker.beginInvoke(JavaInvoker.java:478)
|
633
|
+
at com.idoox.wasp.server.adaptor.JavaAdaptorImpl.beginInvoke(JavaAdaptorImpl.java:63)
|
634
|
+
at com.idoox.wasp.server.AdaptorTemplate.javaInvocation(AdaptorTemplate.java:510)
|
635
|
+
at com.idoox.wasp.server.AdaptorTemplate.doDispatch(AdaptorTemplate.java:395)
|
636
|
+
at com.idoox.wasp.server.AdaptorTemplate.dispatch(AdaptorTemplate.java:328)
|
637
|
+
at com.idoox.wasp.server.ServiceConnector.dispatch(ServiceConnector.java:378)
|
638
|
+
at com.systinet.wasp.ServiceManagerImpl.dispatchRequest(ServiceManagerImpl.java:625)
|
639
|
+
at com.systinet.wasp.ServiceManagerImpl.dispatch(ServiceManagerImpl.java:461)
|
640
|
+
at com.systinet.wasp.ServiceManagerImpl$DispatcherConnHandler.handlePost(ServiceManagerImpl.java:2525)
|
641
|
+
at com.idoox.transport.http.server.Jetty$WaspHttpHandler.handle(Jetty.java:97)
|
642
|
+
at com.mortbay.HTTP.HandlerContext.handle(HandlerContext.java:1087)
|
643
|
+
at com.mortbay.HTTP.HttpServer.service(HttpServer.java:675)
|
644
|
+
at com.mortbay.HTTP.HttpConnection.service(HttpConnection.java:457)
|
645
|
+
at com.mortbay.HTTP.HttpConnection.handle(HttpConnection.java:317)
|
646
|
+
at com.mortbay.HTTP.SocketListener.handleConnection(SocketListener.java:99)
|
647
|
+
at com.mortbay.Util.ThreadedServer.handle(ThreadedServer.java:254)
|
648
|
+
at com.mortbay.Util.ThreadPool$PoolThreadRunnable.run(ThreadPool.java:607)
|
649
|
+
at java.lang.Thread.run(Thread.java:534)
|
650
|
+
Caused by: org.idoox.xmlrpc.MessageProcessingException: Exception thrown while setting value of class <null> into public int iface.round2.groupb.SOAPStructStruct.varInt
|
651
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.processStructure(ReflectionDeserializer.java:624)
|
652
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.deserialize(ReflectionDeserializer.java:145)
|
653
|
+
... 24 more
|
654
|
+
Caused by: org.idoox.xmlrpc.MessageProcessingException: Error setting field public int iface.round2.groupb.SOAPStructStruct.varInt to <null> : null
|
655
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.setField(ReflectionDeserializer.java:690)
|
656
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.processStructure(ReflectionDeserializer.java:620)
|
657
|
+
... 25 more
|
658
|
+
Caused by: java.lang.IllegalArgumentException
|
659
|
+
at sun.reflect.UnsafeIntegerFieldAccessorImpl.set(UnsafeIntegerFieldAccessorImpl.java:62)
|
660
|
+
at java.lang.reflect.Field.set(Field.java:519)
|
661
|
+
at com.idoox.wasp.serialization.ReflectionDeserializer.setField(ReflectionDeserializer.java:687)
|
662
|
+
... 26 more
|
663
|
+
</ijm:stack-trace></ijm:idoox-java-mapping.com.idoox.wasp.serialization.DeserializationException></detail></e:Fault></e:Body></e:Envelope>
|
664
|
+
0
|
665
|
+
|
666
|
+
|
667
|
+
|
668
|
+
|
669
|
+
##########
|
670
|
+
# echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
|
671
|
+
|
672
|
+
Result: OK
|
673
|
+
|
674
|
+
Wire dump:
|
675
|
+
|
676
|
+
= Request
|
677
|
+
|
678
|
+
POST /InteropBService/ HTTP/1.1
|
679
|
+
SOAPAction: "http://soapinterop.org/"
|
680
|
+
Content-Type: text/xml; charset=utf-8
|
681
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
682
|
+
Date: Sat Jul 23 22:01:32 JST 2005
|
683
|
+
Content-Length: 1062
|
684
|
+
Host: soap.systinet.net:6060
|
685
|
+
|
686
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
687
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
688
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
689
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
690
|
+
<env:Body>
|
691
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
692
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
693
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
694
|
+
xsi:type="n2:SOAPStructStruct">
|
695
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
696
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
697
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
698
|
+
<varString href="#id-605583572"></varString>
|
699
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
700
|
+
</varStruct>
|
701
|
+
<varString href="#id-605583572"></varString>
|
702
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
703
|
+
</inputStruct>
|
704
|
+
</n1:echoNestedStruct>
|
705
|
+
<varString id="id-605583572"
|
706
|
+
xsi:type="xsd:string"
|
707
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
708
|
+
</env:Body>
|
709
|
+
</env:Envelope>
|
710
|
+
|
711
|
+
= Response
|
712
|
+
|
713
|
+
HTTP/1.1 200 OK
|
714
|
+
Date: Sat, 23 Jul 2005 12:02:37 GMT
|
715
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
716
|
+
SOAPAction: ""
|
717
|
+
Content-type: text/xml;charset=UTF-8
|
718
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
719
|
+
Transfer-Encoding: chunked
|
720
|
+
|
721
|
+
350
|
722
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
723
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoNestedStructResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPStructStruct"><varString href="#0"/><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat><varStruct i:type="wn2:SOAPStruct"><varString href="#0"/><varInt i:type="d:int">2</varInt><varFloat i:type="d:float">2.2</varFloat></varStruct></return></n0:echoNestedStructResponse><reference i:type="d:string" id="0"></reference></e:Body></e:Envelope>
|
724
|
+
0
|
725
|
+
|
726
|
+
|
727
|
+
|
728
|
+
|
729
|
+
##########
|
730
|
+
# echoNestedArray
|
731
|
+
|
732
|
+
Result: OK
|
733
|
+
|
734
|
+
Wire dump:
|
735
|
+
|
736
|
+
= Request
|
737
|
+
|
738
|
+
POST /InteropBService/ 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:01:33 JST 2005
|
743
|
+
Content-Length: 931
|
744
|
+
Host: soap.systinet.net:6060
|
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:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
752
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
753
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
754
|
+
xsi:type="n2:SOAPArrayStruct">
|
755
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
756
|
+
xsi:type="n3:Array"
|
757
|
+
n3:arrayType="xsd:string[3]">
|
758
|
+
<item>2</item>
|
759
|
+
<item>2.2</item>
|
760
|
+
<item>b</item>
|
761
|
+
</varArray>
|
762
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
763
|
+
<varString xsi:type="xsd:string">a</varString>
|
764
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
765
|
+
</inputStruct>
|
766
|
+
</n1:echoNestedArray>
|
767
|
+
</env:Body>
|
768
|
+
</env:Envelope>
|
769
|
+
|
770
|
+
= Response
|
771
|
+
|
772
|
+
HTTP/1.1 200 OK
|
773
|
+
Date: Sat, 23 Jul 2005 12:02:38 GMT
|
774
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
775
|
+
SOAPAction: ""
|
776
|
+
Content-type: text/xml;charset=UTF-8
|
777
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
778
|
+
Transfer-Encoding: chunked
|
779
|
+
|
780
|
+
335
|
781
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
782
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoNestedArrayResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPArrayStruct"><varString i:type="d:string">a</varString><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat><varArray wn0:arrayType="d:string[3]"><item i:type="d:string">2</item><item i:type="d:string">2.2</item><item i:type="d:string">b</item></varArray></return></n0:echoNestedArrayResponse></e:Body></e:Envelope>
|
783
|
+
0
|
784
|
+
|
785
|
+
|
786
|
+
|
787
|
+
|
788
|
+
##########
|
789
|
+
# echoNestedArray (anyType array)
|
790
|
+
|
791
|
+
Result: OK
|
792
|
+
|
793
|
+
Wire dump:
|
794
|
+
|
795
|
+
= Request
|
796
|
+
|
797
|
+
POST /InteropBService/ HTTP/1.1
|
798
|
+
SOAPAction: "http://soapinterop.org/"
|
799
|
+
Content-Type: text/xml; charset=utf-8
|
800
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
801
|
+
Date: Sat Jul 23 22:01:35 JST 2005
|
802
|
+
Content-Length: 998
|
803
|
+
Host: soap.systinet.net:6060
|
804
|
+
|
805
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
806
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
807
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
808
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
809
|
+
<env:Body>
|
810
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
811
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
812
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
813
|
+
xsi:type="n2:SOAPArrayStruct">
|
814
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
815
|
+
xsi:type="n3:Array"
|
816
|
+
n3:arrayType="xsd:anyType[3]">
|
817
|
+
<item xsi:type="xsd:string">2</item>
|
818
|
+
<item xsi:type="xsd:string">2.2</item>
|
819
|
+
<item xsi:type="xsd:string">b</item>
|
820
|
+
</varArray>
|
821
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
822
|
+
<varString xsi:type="xsd:string">a</varString>
|
823
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
824
|
+
</inputStruct>
|
825
|
+
</n1:echoNestedArray>
|
826
|
+
</env:Body>
|
827
|
+
</env:Envelope>
|
828
|
+
|
829
|
+
= Response
|
830
|
+
|
831
|
+
HTTP/1.1 200 OK
|
832
|
+
Date: Sat, 23 Jul 2005 12:02:39 GMT
|
833
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
834
|
+
SOAPAction: ""
|
835
|
+
Content-type: text/xml;charset=UTF-8
|
836
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
837
|
+
Transfer-Encoding: chunked
|
838
|
+
|
839
|
+
335
|
840
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
841
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoNestedArrayResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPArrayStruct"><varString i:type="d:string">a</varString><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat><varArray wn0:arrayType="d:string[3]"><item i:type="d:string">2</item><item i:type="d:string">2.2</item><item i:type="d:string">b</item></varArray></return></n0:echoNestedArrayResponse></e:Body></e:Envelope>
|
842
|
+
0
|
843
|
+
|
844
|
+
|
845
|
+
|
846
|
+
|
847
|
+
##########
|
848
|
+
# echoNestedArray (multi-ref)
|
849
|
+
|
850
|
+
Result: OK
|
851
|
+
|
852
|
+
Wire dump:
|
853
|
+
|
854
|
+
= Request
|
855
|
+
|
856
|
+
POST /InteropBService/ 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 22:01:36 JST 2005
|
861
|
+
Content-Length: 1083
|
862
|
+
Host: soap.systinet.net:6060
|
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
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
874
|
+
xsi:type="n3:Array"
|
875
|
+
n3:arrayType="xsd:string[3]">
|
876
|
+
<item>2</item>
|
877
|
+
<item href="#id-605656622"></item>
|
878
|
+
<item>b</item>
|
879
|
+
</varArray>
|
880
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
881
|
+
<varString href="#id-605656622"></varString>
|
882
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
883
|
+
</inputStruct>
|
884
|
+
</n1:echoNestedArray>
|
885
|
+
<item id="id-605656622"
|
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 200 OK
|
894
|
+
Date: Sat, 23 Jul 2005 12:02:41 GMT
|
895
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
896
|
+
SOAPAction: ""
|
897
|
+
Content-type: text/xml;charset=UTF-8
|
898
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
899
|
+
Transfer-Encoding: chunked
|
900
|
+
|
901
|
+
340
|
902
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
903
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoNestedArrayResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPArrayStruct"><varString href="#0"/><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat><varArray wn0:arrayType="d:string[3]"><item i:type="d:string">2</item><item href="#0"/><item i:type="d:string">b</item></varArray></return></n0:echoNestedArrayResponse><reference i:type="d:string" id="0"></reference></e:Body></e:Envelope>
|
904
|
+
0
|
905
|
+
|
906
|
+
|
907
|
+
|
908
|
+
|
909
|
+
##########
|
910
|
+
# echoNestedArray (multi-ref: varString == varArray[1])
|
911
|
+
|
912
|
+
Result: OK
|
913
|
+
|
914
|
+
Wire dump:
|
915
|
+
|
916
|
+
= Request
|
917
|
+
|
918
|
+
POST /InteropBService/ HTTP/1.1
|
919
|
+
SOAPAction: "http://soapinterop.org/"
|
920
|
+
Content-Type: text/xml; charset=utf-8
|
921
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
922
|
+
Date: Sat Jul 23 22:01:37 JST 2005
|
923
|
+
Content-Length: 1083
|
924
|
+
Host: soap.systinet.net:6060
|
925
|
+
|
926
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
927
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
928
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
929
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
930
|
+
<env:Body>
|
931
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
932
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
933
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
934
|
+
xsi:type="n2:SOAPArrayStruct">
|
935
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
936
|
+
xsi:type="n3:Array"
|
937
|
+
n3:arrayType="xsd:string[3]">
|
938
|
+
<item>2</item>
|
939
|
+
<item href="#id-605681942"></item>
|
940
|
+
<item>b</item>
|
941
|
+
</varArray>
|
942
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
943
|
+
<varString href="#id-605681942"></varString>
|
944
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
945
|
+
</inputStruct>
|
946
|
+
</n1:echoNestedArray>
|
947
|
+
<item id="id-605681942"
|
948
|
+
xsi:type="xsd:string"
|
949
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></item>
|
950
|
+
</env:Body>
|
951
|
+
</env:Envelope>
|
952
|
+
|
953
|
+
= Response
|
954
|
+
|
955
|
+
HTTP/1.1 200 OK
|
956
|
+
Date: Sat, 23 Jul 2005 12:02:42 GMT
|
957
|
+
Server: Systinet Server for Java/5.5 (Java/1.4.2_05; Linux/2.4.20-37.9.legacy; build SSJ-5.5-20041128-1204)
|
958
|
+
SOAPAction: ""
|
959
|
+
Content-type: text/xml;charset=UTF-8
|
960
|
+
X-WASP-Message-ID: 14a-0Olp5KP/kgnHA08ARL7AEQ==
|
961
|
+
Transfer-Encoding: chunked
|
962
|
+
|
963
|
+
340
|
964
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
965
|
+
<e:Envelope xmlns:e="http://schemas.xmlsoap.org/soap/envelope/" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:wn0="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wn1="http://idoox.com/interface" xmlns:wn2="http://soapinterop.org/xsd"><e:Body e:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><n0:echoNestedArrayResponse xmlns:n0="http://soapinterop.org/"><return i:type="wn2:SOAPArrayStruct"><varString href="#0"/><varInt i:type="d:int">1</varInt><varFloat i:type="d:float">1.1</varFloat><varArray wn0:arrayType="d:string[3]"><item i:type="d:string">2</item><item href="#0"/><item i:type="d:string">b</item></varArray></return></n0:echoNestedArrayResponse><reference i:type="d:string" id="0"></reference></e:Body></e:Envelope>
|
966
|
+
0
|
967
|
+
|
968
|
+
|
969
|
+
|
970
|
+
|