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,1000 @@
|
|
1
|
+
File: client4S4C2_GroupB.log - Wiredumps for SOAP4R client / 4S4C2 server.
|
2
|
+
Date: Sat Jul 23 19:24:52 JST 2005
|
3
|
+
|
4
|
+
##########
|
5
|
+
# echoStructAsSimpleTypes
|
6
|
+
|
7
|
+
Result: Exception: -2147352561 (SOAP::FaultError)
|
8
|
+
#<SOAP::Mapping::Object:0xb7c8177c>
|
9
|
+
|
10
|
+
! CONNECTION CLOSED
|
11
|
+
Wire dump:
|
12
|
+
|
13
|
+
= Request
|
14
|
+
|
15
|
+
! CONNECTION ESTABLISHED
|
16
|
+
POST /ilab2/soap.asp HTTP/1.1
|
17
|
+
SOAPAction: "http://soapinterop.org/"
|
18
|
+
Content-Type: text/xml; charset=utf-8
|
19
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
20
|
+
Date: Sat Jul 23 19:24:52 JST 2005
|
21
|
+
Content-Length: 700
|
22
|
+
Host: soap.4s4c.com
|
23
|
+
|
24
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
25
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
26
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
27
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
28
|
+
<env:Body>
|
29
|
+
<n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
30
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
31
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
32
|
+
xsi:type="n2:SOAPStruct">
|
33
|
+
<varString xsi:type="xsd:string">a</varString>
|
34
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
35
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
36
|
+
</inputStruct>
|
37
|
+
</n1:echoStructAsSimpleTypes>
|
38
|
+
</env:Body>
|
39
|
+
</env:Envelope>
|
40
|
+
|
41
|
+
= Response
|
42
|
+
|
43
|
+
HTTP/1.1 500
|
44
|
+
Date: Sat, 23 Jul 2005 10:28:32 GMT
|
45
|
+
Server: Microsoft-IIS/6.0
|
46
|
+
X-Powered-By: ASP.NET
|
47
|
+
Content-Length: 341
|
48
|
+
Content-Type: text/xml; charset=UTF-8
|
49
|
+
Expires: Sat, 23 Jul 2005 10:28:33 GMT
|
50
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=MMNLHJABEKLOKKGDJGFBIJKI; path=/
|
51
|
+
Cache-control: private
|
52
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
53
|
+
Connection: close
|
54
|
+
|
55
|
+
<S:Envelope
|
56
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
57
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
58
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><S:Fault><faultcode XI:type="XS:QName">S:Server</faultcode><faultstring XI:type="XS:string">-2147352561</faultstring><detail></detail></S:Fault></S:Body></S:Envelope>! CONNECTION CLOSED
|
59
|
+
|
60
|
+
|
61
|
+
|
62
|
+
##########
|
63
|
+
# echoStructAsSimpleTypes (nil)
|
64
|
+
|
65
|
+
Result: Exception: -2147352561 (SOAP::FaultError)
|
66
|
+
#<SOAP::Mapping::Object:0xb7c7ad14>
|
67
|
+
|
68
|
+
Wire dump:
|
69
|
+
|
70
|
+
= Request
|
71
|
+
|
72
|
+
! CONNECTION ESTABLISHED
|
73
|
+
POST /ilab2/soap.asp HTTP/1.1
|
74
|
+
SOAPAction: "http://soapinterop.org/"
|
75
|
+
Content-Type: text/xml; charset=utf-8
|
76
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
77
|
+
Date: Sat Jul 23 19:24:53 JST 2005
|
78
|
+
Content-Length: 677
|
79
|
+
Host: soap.4s4c.com
|
80
|
+
|
81
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
82
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
83
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
84
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
85
|
+
<env:Body>
|
86
|
+
<n1:echoStructAsSimpleTypes xmlns:n1="http://soapinterop.org/"
|
87
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
88
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
89
|
+
xsi:type="n2:SOAPStruct">
|
90
|
+
<varString xsi:nil="true"></varString>
|
91
|
+
<varFloat xsi:nil="true"></varFloat>
|
92
|
+
<varInt xsi:nil="true"></varInt>
|
93
|
+
</inputStruct>
|
94
|
+
</n1:echoStructAsSimpleTypes>
|
95
|
+
</env:Body>
|
96
|
+
</env:Envelope>
|
97
|
+
|
98
|
+
= Response
|
99
|
+
|
100
|
+
HTTP/1.1 500
|
101
|
+
Date: Sat, 23 Jul 2005 10:28:33 GMT
|
102
|
+
Server: Microsoft-IIS/6.0
|
103
|
+
X-Powered-By: ASP.NET
|
104
|
+
Content-Length: 341
|
105
|
+
Content-Type: text/xml; charset=UTF-8
|
106
|
+
Expires: Sat, 23 Jul 2005 10:28:33 GMT
|
107
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=NMNLHJABIGDGPENDINJEJNFN; path=/
|
108
|
+
Cache-control: private
|
109
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
110
|
+
Connection: close
|
111
|
+
|
112
|
+
<S:Envelope
|
113
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
114
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
115
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><S:Fault><faultcode XI:type="XS:QName">S:Server</faultcode><faultstring XI:type="XS:string">-2147352561</faultstring><detail></detail></S:Fault></S:Body></S:Envelope>! CONNECTION CLOSED
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
##########
|
120
|
+
# echoSimpleTypesAsStruct
|
121
|
+
|
122
|
+
Result: OK
|
123
|
+
|
124
|
+
Wire dump:
|
125
|
+
|
126
|
+
= Request
|
127
|
+
|
128
|
+
! CONNECTION ESTABLISHED
|
129
|
+
POST /ilab2/soap.asp HTTP/1.1
|
130
|
+
SOAPAction: "http://soapinterop.org/"
|
131
|
+
Content-Type: text/xml; charset=utf-8
|
132
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
133
|
+
Date: Sat Jul 23 19:24:53 JST 2005
|
134
|
+
Content-Length: 600
|
135
|
+
Host: soap.4s4c.com
|
136
|
+
|
137
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
138
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
139
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
140
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
141
|
+
<env:Body>
|
142
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
143
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
144
|
+
<inputString xsi:type="xsd:string">a</inputString>
|
145
|
+
<inputInteger xsi:type="xsd:int">1</inputInteger>
|
146
|
+
<inputFloat xsi:type="xsd:float">+1.1</inputFloat>
|
147
|
+
</n1:echoSimpleTypesAsStruct>
|
148
|
+
</env:Body>
|
149
|
+
</env:Envelope>
|
150
|
+
|
151
|
+
= Response
|
152
|
+
|
153
|
+
HTTP/1.1 200 OK
|
154
|
+
Date: Sat, 23 Jul 2005 10:28:34 GMT
|
155
|
+
Server: Microsoft-IIS/6.0
|
156
|
+
X-Powered-By: ASP.NET
|
157
|
+
Content-Length: 732
|
158
|
+
Content-Type: text/xml; charset=UTF-8
|
159
|
+
Expires: Sat, 23 Jul 2005 10:28:34 GMT
|
160
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=OMNLHJABCGMGJGFCOOIKNLIG; path=/
|
161
|
+
Cache-control: private
|
162
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
163
|
+
|
164
|
+
<S:Envelope
|
165
|
+
xmlns:Enc="http://schemas.xmlsoap.org/soap/encoding/"
|
166
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
167
|
+
xmlns:a="http://soapinterop.org/"
|
168
|
+
xmlns:b="http://soapinterop.org/xsd"
|
169
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
170
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><a:echoSimpleTypesAsStructResponse S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><result href="#382027c"/></a:echoSimpleTypesAsStructResponse><result S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" Enc:root="0" id="382027c" XI:type="b:SOAPStruct"><varInt XI:type="XS:int">1</varInt><varString XI:type="XS:string">a</varString><varFloat XI:type="XS:float">1.1</varFloat></result></S:Body></S:Envelope>
|
171
|
+
|
172
|
+
|
173
|
+
##########
|
174
|
+
# echoSimpleTypesAsStruct (nil)
|
175
|
+
|
176
|
+
Result: Exception: -2147352571 (SOAP::FaultError)
|
177
|
+
#<SOAP::Mapping::Object:0xb7c6c2dc>
|
178
|
+
|
179
|
+
Wire dump:
|
180
|
+
|
181
|
+
= Request
|
182
|
+
|
183
|
+
POST /ilab2/soap.asp HTTP/1.1
|
184
|
+
SOAPAction: "http://soapinterop.org/"
|
185
|
+
Content-Type: text/xml; charset=utf-8
|
186
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
187
|
+
Date: Sat Jul 23 19:24:54 JST 2005
|
188
|
+
Content-Length: 577
|
189
|
+
Host: soap.4s4c.com
|
190
|
+
|
191
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
192
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
193
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
194
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
195
|
+
<env:Body>
|
196
|
+
<n1:echoSimpleTypesAsStruct xmlns:n1="http://soapinterop.org/"
|
197
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
198
|
+
<inputString xsi:nil="true"></inputString>
|
199
|
+
<inputInteger xsi:nil="true"></inputInteger>
|
200
|
+
<inputFloat xsi:nil="true"></inputFloat>
|
201
|
+
</n1:echoSimpleTypesAsStruct>
|
202
|
+
</env:Body>
|
203
|
+
</env:Envelope>
|
204
|
+
|
205
|
+
= Response
|
206
|
+
|
207
|
+
HTTP/1.1 500
|
208
|
+
Date: Sat, 23 Jul 2005 10:28:34 GMT
|
209
|
+
Server: Microsoft-IIS/6.0
|
210
|
+
X-Powered-By: ASP.NET
|
211
|
+
Content-Length: 341
|
212
|
+
Content-Type: text/xml; charset=UTF-8
|
213
|
+
Expires: Sat, 23 Jul 2005 10:28:35 GMT
|
214
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=PMNLHJABOPOINEPIOPDIAICJ; path=/
|
215
|
+
Cache-control: private
|
216
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
217
|
+
Connection: close
|
218
|
+
|
219
|
+
<S:Envelope
|
220
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
221
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
222
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><S:Fault><faultcode XI:type="XS:QName">S:Server</faultcode><faultstring XI:type="XS:string">-2147352571</faultstring><detail></detail></S:Fault></S:Body></S:Envelope>! CONNECTION CLOSED
|
223
|
+
|
224
|
+
|
225
|
+
|
226
|
+
##########
|
227
|
+
# echo2DStringArray
|
228
|
+
|
229
|
+
Result: OK
|
230
|
+
|
231
|
+
Wire dump:
|
232
|
+
|
233
|
+
= Request
|
234
|
+
|
235
|
+
! CONNECTION ESTABLISHED
|
236
|
+
POST /ilab2/soap.asp HTTP/1.1
|
237
|
+
SOAPAction: "http://soapinterop.org/"
|
238
|
+
Content-Type: text/xml; charset=utf-8
|
239
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
240
|
+
Date: Sat Jul 23 19:24:55 JST 2005
|
241
|
+
Content-Length: 889
|
242
|
+
Host: soap.4s4c.com
|
243
|
+
|
244
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
245
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
246
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
247
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
248
|
+
<env:Body>
|
249
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
250
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
251
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
252
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
253
|
+
xsi:type="n2:ArrayOfString2D"
|
254
|
+
n3:arrayType="xsd:string[3,3]">
|
255
|
+
<item>r0c0</item>
|
256
|
+
<item>r1c0</item>
|
257
|
+
<item>r2c0</item>
|
258
|
+
<item>r0c1</item>
|
259
|
+
<item>r1c1</item>
|
260
|
+
<item>r2c1</item>
|
261
|
+
<item>r0c2</item>
|
262
|
+
<item>r1c2</item>
|
263
|
+
<item>r2c2</item>
|
264
|
+
</input2DStringArray>
|
265
|
+
</n1:echo2DStringArray>
|
266
|
+
</env:Body>
|
267
|
+
</env:Envelope>
|
268
|
+
|
269
|
+
= Response
|
270
|
+
|
271
|
+
HTTP/1.1 200 OK
|
272
|
+
Date: Sat, 23 Jul 2005 10:28:35 GMT
|
273
|
+
Server: Microsoft-IIS/6.0
|
274
|
+
X-Powered-By: ASP.NET
|
275
|
+
Content-Length: 755
|
276
|
+
Content-Type: text/xml; charset=UTF-8
|
277
|
+
Expires: Sat, 23 Jul 2005 10:28:35 GMT
|
278
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=ANNLHJABFBEAKOJCEAECPCDM; path=/
|
279
|
+
Cache-control: private
|
280
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
281
|
+
|
282
|
+
<S:Envelope
|
283
|
+
xmlns:Enc="http://schemas.xmlsoap.org/soap/encoding/"
|
284
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
285
|
+
xmlns:a="http://soapinterop.org/"
|
286
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
287
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><a:echo2DStringArrayResponse S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><result XI:type="Enc:Array" Enc:arrayType="XS:string[3,3]"><i XI:type="XS:string">r0c0</i><i XI:type="XS:string">r1c0</i><i XI:type="XS:string">r2c0</i><i XI:type="XS:string">r0c1</i><i XI:type="XS:string">r1c1</i><i XI:type="XS:string">r2c1</i><i XI:type="XS:string">r0c2</i><i XI:type="XS:string">r1c2</i><i XI:type="XS:string">r2c2</i></result></a:echo2DStringArrayResponse></S:Body></S:Envelope>
|
288
|
+
|
289
|
+
|
290
|
+
##########
|
291
|
+
# echo2DStringArray (anyType array)
|
292
|
+
|
293
|
+
Result: Exception: -2147352571 (SOAP::FaultError)
|
294
|
+
#<SOAP::Mapping::Object:0xb7dd5cb8>
|
295
|
+
|
296
|
+
Wire dump:
|
297
|
+
|
298
|
+
= Request
|
299
|
+
|
300
|
+
POST /ilab2/soap.asp HTTP/1.1
|
301
|
+
SOAPAction: "http://soapinterop.org/"
|
302
|
+
Content-Type: text/xml; charset=utf-8
|
303
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
304
|
+
Date: Sat Jul 23 19:24:55 JST 2005
|
305
|
+
Content-Length: 1088
|
306
|
+
Host: soap.4s4c.com
|
307
|
+
|
308
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
309
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
310
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
311
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
312
|
+
<env:Body>
|
313
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
314
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
315
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
316
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
317
|
+
xsi:type="n2:ArrayOfString2D"
|
318
|
+
n3:arrayType="xsd:anyType[3,3]">
|
319
|
+
<item xsi:type="xsd:string">r0c0</item>
|
320
|
+
<item xsi:type="xsd:string">r0c1</item>
|
321
|
+
<item xsi:type="xsd:string">r0c2</item>
|
322
|
+
<item xsi:type="xsd:string">r1c0</item>
|
323
|
+
<item xsi:type="xsd:string">r1c1</item>
|
324
|
+
<item xsi:type="xsd:string">r1c2</item>
|
325
|
+
<item xsi:type="xsd:string">r2c0</item>
|
326
|
+
<item xsi:type="xsd:string">r0c1</item>
|
327
|
+
<item xsi:type="xsd:string">r2c2</item>
|
328
|
+
</input2DStringArray>
|
329
|
+
</n1:echo2DStringArray>
|
330
|
+
</env:Body>
|
331
|
+
</env:Envelope>
|
332
|
+
|
333
|
+
= Response
|
334
|
+
|
335
|
+
HTTP/1.1 500
|
336
|
+
Date: Sat, 23 Jul 2005 10:28:36 GMT
|
337
|
+
Server: Microsoft-IIS/6.0
|
338
|
+
X-Powered-By: ASP.NET
|
339
|
+
Content-Length: 341
|
340
|
+
Content-Type: text/xml; charset=UTF-8
|
341
|
+
Expires: Sat, 23 Jul 2005 10:28:36 GMT
|
342
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=BNNLHJABNMGCDKCAOGEEMIPD; path=/
|
343
|
+
Cache-control: private
|
344
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
345
|
+
Connection: close
|
346
|
+
|
347
|
+
<S:Envelope
|
348
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
349
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
350
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><S:Fault><faultcode XI:type="XS:QName">S:Server</faultcode><faultstring XI:type="XS:string">-2147352571</faultstring><detail></detail></S:Fault></S:Body></S:Envelope>! CONNECTION CLOSED
|
351
|
+
|
352
|
+
|
353
|
+
|
354
|
+
##########
|
355
|
+
# echo2DStringArray (multi-ref)
|
356
|
+
|
357
|
+
Result: OK
|
358
|
+
|
359
|
+
Wire dump:
|
360
|
+
|
361
|
+
= Request
|
362
|
+
|
363
|
+
! CONNECTION ESTABLISHED
|
364
|
+
POST /ilab2/soap.asp HTTP/1.1
|
365
|
+
SOAPAction: "http://soapinterop.org/"
|
366
|
+
Content-Type: text/xml; charset=utf-8
|
367
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
368
|
+
Date: Sat Jul 23 19:24:56 JST 2005
|
369
|
+
Content-Length: 1063
|
370
|
+
Host: soap.4s4c.com
|
371
|
+
|
372
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
373
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
374
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
375
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
376
|
+
<env:Body>
|
377
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
378
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
379
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
380
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
381
|
+
xsi:type="n2:ArrayOfString2D"
|
382
|
+
n3:arrayType="xsd:string[3,3]">
|
383
|
+
<item>r0c0</item>
|
384
|
+
<item>r1c0</item>
|
385
|
+
<item href="#id-605180048"></item>
|
386
|
+
<item>r0c1</item>
|
387
|
+
<item>r1c1</item>
|
388
|
+
<item>r2c1</item>
|
389
|
+
<item href="#id-605180048"></item>
|
390
|
+
<item>r1c2</item>
|
391
|
+
<item>r2c2</item>
|
392
|
+
</input2DStringArray>
|
393
|
+
</n1:echo2DStringArray>
|
394
|
+
<item id="id-605180048"
|
395
|
+
xsi:type="xsd:string"
|
396
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
397
|
+
</env:Body>
|
398
|
+
</env:Envelope>
|
399
|
+
|
400
|
+
= Response
|
401
|
+
|
402
|
+
HTTP/1.1 200 OK
|
403
|
+
Date: Sat, 23 Jul 2005 10:28:36 GMT
|
404
|
+
Server: Microsoft-IIS/6.0
|
405
|
+
X-Powered-By: ASP.NET
|
406
|
+
Content-Length: 755
|
407
|
+
Content-Type: text/xml; charset=UTF-8
|
408
|
+
Expires: Sat, 23 Jul 2005 10:28:37 GMT
|
409
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=CNNLHJABMDDDLGJCEHBFKMJD; path=/
|
410
|
+
Cache-control: private
|
411
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
412
|
+
|
413
|
+
<S:Envelope
|
414
|
+
xmlns:Enc="http://schemas.xmlsoap.org/soap/encoding/"
|
415
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
416
|
+
xmlns:a="http://soapinterop.org/"
|
417
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
418
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><a:echo2DStringArrayResponse S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><result XI:type="Enc:Array" Enc:arrayType="XS:string[3,3]"><i XI:type="XS:string">r0c0</i><i XI:type="XS:string">r1c0</i><i XI:type="XS:string">item</i><i XI:type="XS:string">r0c1</i><i XI:type="XS:string">r1c1</i><i XI:type="XS:string">r2c1</i><i XI:type="XS:string">item</i><i XI:type="XS:string">r1c2</i><i XI:type="XS:string">r2c2</i></result></a:echo2DStringArrayResponse></S:Body></S:Envelope>
|
419
|
+
|
420
|
+
|
421
|
+
##########
|
422
|
+
# echo2DStringArray (multi-ref: ele[2, 0] == ele[0, 2])
|
423
|
+
|
424
|
+
Result: Expected = "String#-605408088" // Actual = "String#-605405128"
|
425
|
+
|
426
|
+
Wire dump:
|
427
|
+
|
428
|
+
= Request
|
429
|
+
|
430
|
+
POST /ilab2/soap.asp HTTP/1.1
|
431
|
+
SOAPAction: "http://soapinterop.org/"
|
432
|
+
Content-Type: text/xml; charset=utf-8
|
433
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
434
|
+
Date: Sat Jul 23 19:24:57 JST 2005
|
435
|
+
Content-Length: 1063
|
436
|
+
Host: soap.4s4c.com
|
437
|
+
|
438
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
439
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
440
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
441
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
442
|
+
<env:Body>
|
443
|
+
<n1:echo2DStringArray xmlns:n1="http://soapinterop.org/"
|
444
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
445
|
+
<input2DStringArray xmlns:n2="http://soapinterop.org/xsd"
|
446
|
+
xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
447
|
+
xsi:type="n2:ArrayOfString2D"
|
448
|
+
n3:arrayType="xsd:string[3,3]">
|
449
|
+
<item>r0c0</item>
|
450
|
+
<item>r1c0</item>
|
451
|
+
<item href="#id-605341518"></item>
|
452
|
+
<item>r0c1</item>
|
453
|
+
<item>r1c1</item>
|
454
|
+
<item>r2c1</item>
|
455
|
+
<item href="#id-605341518"></item>
|
456
|
+
<item>r1c2</item>
|
457
|
+
<item>r2c2</item>
|
458
|
+
</input2DStringArray>
|
459
|
+
</n1:echo2DStringArray>
|
460
|
+
<item id="id-605341518"
|
461
|
+
xsi:type="xsd:string"
|
462
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">item</item>
|
463
|
+
</env:Body>
|
464
|
+
</env:Envelope>
|
465
|
+
|
466
|
+
= Response
|
467
|
+
|
468
|
+
HTTP/1.1 200 OK
|
469
|
+
Date: Sat, 23 Jul 2005 10:28:37 GMT
|
470
|
+
Server: Microsoft-IIS/6.0
|
471
|
+
X-Powered-By: ASP.NET
|
472
|
+
Content-Length: 755
|
473
|
+
Content-Type: text/xml; charset=UTF-8
|
474
|
+
Expires: Sat, 23 Jul 2005 10:28:37 GMT
|
475
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=DNNLHJABNGMDDONJJIJMGOON; path=/
|
476
|
+
Cache-control: private
|
477
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
478
|
+
|
479
|
+
<S:Envelope
|
480
|
+
xmlns:Enc="http://schemas.xmlsoap.org/soap/encoding/"
|
481
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
482
|
+
xmlns:a="http://soapinterop.org/"
|
483
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
484
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><a:echo2DStringArrayResponse S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><result XI:type="Enc:Array" Enc:arrayType="XS:string[3,3]"><i XI:type="XS:string">r0c0</i><i XI:type="XS:string">r1c0</i><i XI:type="XS:string">item</i><i XI:type="XS:string">r0c1</i><i XI:type="XS:string">r1c1</i><i XI:type="XS:string">r2c1</i><i XI:type="XS:string">item</i><i XI:type="XS:string">r1c2</i><i XI:type="XS:string">r2c2</i></result></a:echo2DStringArrayResponse></S:Body></S:Envelope>
|
485
|
+
|
486
|
+
|
487
|
+
##########
|
488
|
+
# echoNestedStruct
|
489
|
+
|
490
|
+
Result: OK
|
491
|
+
|
492
|
+
Wire dump:
|
493
|
+
|
494
|
+
= Request
|
495
|
+
|
496
|
+
POST /ilab2/soap.asp HTTP/1.1
|
497
|
+
SOAPAction: "http://soapinterop.org/"
|
498
|
+
Content-Type: text/xml; charset=utf-8
|
499
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
500
|
+
Date: Sat Jul 23 19:24:57 JST 2005
|
501
|
+
Content-Length: 920
|
502
|
+
Host: soap.4s4c.com
|
503
|
+
|
504
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
505
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
506
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
507
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
508
|
+
<env:Body>
|
509
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
510
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
511
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
512
|
+
xsi:type="n2:SOAPStructStruct">
|
513
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
514
|
+
<varString xsi:type="xsd:string">b</varString>
|
515
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
516
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
517
|
+
</varStruct>
|
518
|
+
<varString xsi:type="xsd:string">a</varString>
|
519
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
520
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
521
|
+
</inputStruct>
|
522
|
+
</n1:echoNestedStruct>
|
523
|
+
</env:Body>
|
524
|
+
</env:Envelope>
|
525
|
+
|
526
|
+
= Response
|
527
|
+
|
528
|
+
HTTP/1.1 200 OK
|
529
|
+
Date: Sat, 23 Jul 2005 10:28:38 GMT
|
530
|
+
Server: Microsoft-IIS/6.0
|
531
|
+
X-Powered-By: ASP.NET
|
532
|
+
Content-Length: 1006
|
533
|
+
Content-Type: text/xml; charset=UTF-8
|
534
|
+
Expires: Sat, 23 Jul 2005 10:28:38 GMT
|
535
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=ENNLHJABADCAJPGJGMDCNFCJ; path=/
|
536
|
+
Cache-control: private
|
537
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
538
|
+
|
539
|
+
<S:Envelope
|
540
|
+
xmlns:Enc="http://schemas.xmlsoap.org/soap/encoding/"
|
541
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
542
|
+
xmlns:a="http://soapinterop.org/"
|
543
|
+
xmlns:b="http://soapinterop.org/xsd"
|
544
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
545
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><a:echoNestedStructResponse S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><result href="#380af24"/></a:echoNestedStructResponse><varStruct Enc:root="0" id="382027c" S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" XI:type="b:SOAPStruct"><varInt XI:type="XS:int">2</varInt><varString XI:type="XS:string">b</varString><varFloat XI:type="XS:float">2.2</varFloat></varStruct><result S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" Enc:root="0" id="380af24" XI:type="b:SOAPStructStruct"><varInt XI:type="XS:int">1</varInt><varString XI:type="XS:string">a</varString><varFloat XI:type="XS:float">1.1</varFloat><varStruct href="#382027c"/></result></S:Body></S:Envelope>
|
546
|
+
|
547
|
+
|
548
|
+
##########
|
549
|
+
# echoNestedStruct (nil)
|
550
|
+
|
551
|
+
Result: Exception: -2147352571 (SOAP::FaultError)
|
552
|
+
#<SOAP::Mapping::Object:0xb7d233ec>
|
553
|
+
|
554
|
+
Wire dump:
|
555
|
+
|
556
|
+
= Request
|
557
|
+
|
558
|
+
POST /ilab2/soap.asp HTTP/1.1
|
559
|
+
SOAPAction: "http://soapinterop.org/"
|
560
|
+
Content-Type: text/xml; charset=utf-8
|
561
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
562
|
+
Date: Sat Jul 23 19:24:58 JST 2005
|
563
|
+
Content-Length: 874
|
564
|
+
Host: soap.4s4c.com
|
565
|
+
|
566
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
567
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
568
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
569
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
570
|
+
<env:Body>
|
571
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
572
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
573
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
574
|
+
xsi:type="n2:SOAPStructStruct">
|
575
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
576
|
+
<varString xsi:nil="true"></varString>
|
577
|
+
<varFloat xsi:nil="true"></varFloat>
|
578
|
+
<varInt xsi:nil="true"></varInt>
|
579
|
+
</varStruct>
|
580
|
+
<varString xsi:nil="true"></varString>
|
581
|
+
<varFloat xsi:nil="true"></varFloat>
|
582
|
+
<varInt xsi:nil="true"></varInt>
|
583
|
+
</inputStruct>
|
584
|
+
</n1:echoNestedStruct>
|
585
|
+
</env:Body>
|
586
|
+
</env:Envelope>
|
587
|
+
|
588
|
+
= Response
|
589
|
+
|
590
|
+
HTTP/1.1 500
|
591
|
+
Date: Sat, 23 Jul 2005 10:28:38 GMT
|
592
|
+
Server: Microsoft-IIS/6.0
|
593
|
+
X-Powered-By: ASP.NET
|
594
|
+
Content-Length: 341
|
595
|
+
Content-Type: text/xml; charset=UTF-8
|
596
|
+
Expires: Sat, 23 Jul 2005 10:28:38 GMT
|
597
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=FNNLHJABAMLFIEMFCLCJCFOG; path=/
|
598
|
+
Cache-control: private
|
599
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
600
|
+
Connection: close
|
601
|
+
|
602
|
+
<S:Envelope
|
603
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
604
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
605
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><S:Fault><faultcode XI:type="XS:QName">S:Server</faultcode><faultstring XI:type="XS:string">-2147352571</faultstring><detail></detail></S:Fault></S:Body></S:Envelope>! CONNECTION CLOSED
|
606
|
+
|
607
|
+
|
608
|
+
|
609
|
+
##########
|
610
|
+
# echoNestedStruct (multi-ref: varString of StructStruct == varString of Struct)
|
611
|
+
|
612
|
+
Result: Expected = "String#-605536988" // Actual = "String#-605537718"
|
613
|
+
|
614
|
+
Wire dump:
|
615
|
+
|
616
|
+
= Request
|
617
|
+
|
618
|
+
! CONNECTION ESTABLISHED
|
619
|
+
POST /ilab2/soap.asp HTTP/1.1
|
620
|
+
SOAPAction: "http://soapinterop.org/"
|
621
|
+
Content-Type: text/xml; charset=utf-8
|
622
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
623
|
+
Date: Sat Jul 23 19:24:59 JST 2005
|
624
|
+
Content-Length: 1062
|
625
|
+
Host: soap.4s4c.com
|
626
|
+
|
627
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
628
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
629
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
630
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
631
|
+
<env:Body>
|
632
|
+
<n1:echoNestedStruct xmlns:n1="http://soapinterop.org/"
|
633
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
634
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
635
|
+
xsi:type="n2:SOAPStructStruct">
|
636
|
+
<varStruct xsi:type="n2:SOAPStruct">
|
637
|
+
<varString href="#id-605483258"></varString>
|
638
|
+
<varFloat xsi:type="xsd:float">+2.2</varFloat>
|
639
|
+
<varInt xsi:type="xsd:int">2</varInt>
|
640
|
+
</varStruct>
|
641
|
+
<varString href="#id-605483258"></varString>
|
642
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
643
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
644
|
+
</inputStruct>
|
645
|
+
</n1:echoNestedStruct>
|
646
|
+
<varString id="id-605483258"
|
647
|
+
xsi:type="xsd:string"
|
648
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
649
|
+
</env:Body>
|
650
|
+
</env:Envelope>
|
651
|
+
|
652
|
+
= Response
|
653
|
+
|
654
|
+
HTTP/1.1 200 OK
|
655
|
+
Date: Sat, 23 Jul 2005 10:28:39 GMT
|
656
|
+
Server: Microsoft-IIS/6.0
|
657
|
+
X-Powered-By: ASP.NET
|
658
|
+
Content-Length: 1002
|
659
|
+
Content-Type: text/xml; charset=UTF-8
|
660
|
+
Expires: Sat, 23 Jul 2005 10:28:39 GMT
|
661
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=GNNLHJABNLNFFMCMJLADDJKM; path=/
|
662
|
+
Cache-control: private
|
663
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
664
|
+
|
665
|
+
<S:Envelope
|
666
|
+
xmlns:Enc="http://schemas.xmlsoap.org/soap/encoding/"
|
667
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
668
|
+
xmlns:a="http://soapinterop.org/"
|
669
|
+
xmlns:b="http://soapinterop.org/xsd"
|
670
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
671
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><a:echoNestedStructResponse S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><result href="#381fcc4"/></a:echoNestedStructResponse><varStruct Enc:root="0" id="17d4cc" S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" XI:type="b:SOAPStruct"><varInt XI:type="XS:int">2</varInt><varString XI:type="XS:string"></varString><varFloat XI:type="XS:float">2.2</varFloat></varStruct><result S:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" Enc:root="0" id="381fcc4" XI:type="b:SOAPStructStruct"><varInt XI:type="XS:int">1</varInt><varString XI:type="XS:string"></varString><varFloat XI:type="XS:float">1.1</varFloat><varStruct href="#17d4cc"/></result></S:Body></S:Envelope>
|
672
|
+
|
673
|
+
|
674
|
+
##########
|
675
|
+
# echoNestedArray
|
676
|
+
|
677
|
+
Result: Exception: parse error at `size' (XSD::XMLParser::Parser::ParseError)
|
678
|
+
/usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:42:in `parse_error'
|
679
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:331:in `parse_error'
|
680
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:717:in `found_stag_error'
|
681
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:780:in `scan_stag'
|
682
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:751:in `scan'
|
683
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:751:in `scan_stag'
|
684
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:826:in `scan_content'
|
685
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
|
686
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
|
687
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
|
688
|
+
/usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
|
689
|
+
/usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
|
690
|
+
/usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
|
691
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
|
692
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
|
693
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
694
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
695
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
696
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
697
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1914:in `doTestGroupB'
|
698
|
+
client4S4C2.rb:13
|
699
|
+
|
700
|
+
Wire dump:
|
701
|
+
|
702
|
+
= Request
|
703
|
+
|
704
|
+
POST /ilab2/soap.asp HTTP/1.1
|
705
|
+
SOAPAction: "http://soapinterop.org/"
|
706
|
+
Content-Type: text/xml; charset=utf-8
|
707
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
708
|
+
Date: Sat Jul 23 19:24:59 JST 2005
|
709
|
+
Content-Length: 931
|
710
|
+
Host: soap.4s4c.com
|
711
|
+
|
712
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
713
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
714
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
715
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
716
|
+
<env:Body>
|
717
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
718
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
719
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
720
|
+
xsi:type="n2:SOAPArrayStruct">
|
721
|
+
<varString xsi:type="xsd:string">a</varString>
|
722
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
723
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
724
|
+
xsi:type="n3:Array"
|
725
|
+
n3:arrayType="xsd:string[3]">
|
726
|
+
<item>2</item>
|
727
|
+
<item>2.2</item>
|
728
|
+
<item>b</item>
|
729
|
+
</varArray>
|
730
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
731
|
+
</inputStruct>
|
732
|
+
</n1:echoNestedArray>
|
733
|
+
</env:Body>
|
734
|
+
</env:Envelope>
|
735
|
+
|
736
|
+
= Response
|
737
|
+
|
738
|
+
HTTP/1.1 500 Internal Server Error
|
739
|
+
Date: Sat, 23 Jul 2005 10:28:39 GMT
|
740
|
+
Server: Microsoft-IIS/6.0
|
741
|
+
X-Powered-By: ASP.NET
|
742
|
+
Content-Length: 270
|
743
|
+
Content-Type: text/xml; charset=UTF-8
|
744
|
+
Expires: Sat, 23 Jul 2005 10:28:40 GMT
|
745
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=HNNLHJABLCJMIANEEPMJABOP; path=/
|
746
|
+
Cache-control: private
|
747
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
748
|
+
Connection: close
|
749
|
+
|
750
|
+
<font face="Arial" size=2>
|
751
|
+
<p>soap</font> <font face="Arial" size=2>error '800a9c68'</font>
|
752
|
+
<p>
|
753
|
+
<font face="Arial" size=2>Application-defined or object-defined error</font>
|
754
|
+
<p>
|
755
|
+
<font face="Arial" size=2>/ilab2/soap.asp</font><font face="Arial" size=2>, line 114</font> ! CONNECTION CLOSED
|
756
|
+
|
757
|
+
|
758
|
+
|
759
|
+
##########
|
760
|
+
# echoNestedArray (anyType array)
|
761
|
+
|
762
|
+
Result: Exception: -2147352571 (SOAP::FaultError)
|
763
|
+
#<SOAP::Mapping::Object:0xb7ce2130>
|
764
|
+
|
765
|
+
Wire dump:
|
766
|
+
|
767
|
+
= Request
|
768
|
+
|
769
|
+
! CONNECTION ESTABLISHED
|
770
|
+
POST /ilab2/soap.asp HTTP/1.1
|
771
|
+
SOAPAction: "http://soapinterop.org/"
|
772
|
+
Content-Type: text/xml; charset=utf-8
|
773
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
774
|
+
Date: Sat Jul 23 19:25:00 JST 2005
|
775
|
+
Content-Length: 998
|
776
|
+
Host: soap.4s4c.com
|
777
|
+
|
778
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
779
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
780
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
781
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
782
|
+
<env:Body>
|
783
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
784
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
785
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
786
|
+
xsi:type="n2:SOAPArrayStruct">
|
787
|
+
<varString xsi:type="xsd:string">a</varString>
|
788
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
789
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
790
|
+
xsi:type="n3:Array"
|
791
|
+
n3:arrayType="xsd:anyType[3]">
|
792
|
+
<item xsi:type="xsd:string">2</item>
|
793
|
+
<item xsi:type="xsd:string">2.2</item>
|
794
|
+
<item xsi:type="xsd:string">b</item>
|
795
|
+
</varArray>
|
796
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
797
|
+
</inputStruct>
|
798
|
+
</n1:echoNestedArray>
|
799
|
+
</env:Body>
|
800
|
+
</env:Envelope>
|
801
|
+
|
802
|
+
= Response
|
803
|
+
|
804
|
+
HTTP/1.1 500
|
805
|
+
Date: Sat, 23 Jul 2005 10:28:40 GMT
|
806
|
+
Server: Microsoft-IIS/6.0
|
807
|
+
X-Powered-By: ASP.NET
|
808
|
+
Content-Length: 341
|
809
|
+
Content-Type: text/xml; charset=UTF-8
|
810
|
+
Expires: Sat, 23 Jul 2005 10:28:41 GMT
|
811
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=INNLHJABGFOPDNLPLGHLLJDF; path=/
|
812
|
+
Cache-control: private
|
813
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
814
|
+
Connection: close
|
815
|
+
|
816
|
+
<S:Envelope
|
817
|
+
xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"
|
818
|
+
xmlns:XS="http://www.w3.org/2001/XMLSchema"
|
819
|
+
xmlns:XI="http://www.w3.org/2001/XMLSchema-instance"><S:Body><S:Fault><faultcode XI:type="XS:QName">S:Server</faultcode><faultstring XI:type="XS:string">-2147352571</faultstring><detail></detail></S:Fault></S:Body></S:Envelope>! CONNECTION CLOSED
|
820
|
+
|
821
|
+
|
822
|
+
|
823
|
+
##########
|
824
|
+
# echoNestedArray (multi-ref)
|
825
|
+
|
826
|
+
Result: Exception: parse error at `size' (XSD::XMLParser::Parser::ParseError)
|
827
|
+
/usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:42:in `parse_error'
|
828
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:331:in `parse_error'
|
829
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:717:in `found_stag_error'
|
830
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:780:in `scan_stag'
|
831
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:751:in `scan'
|
832
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:751:in `scan_stag'
|
833
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:826:in `scan_content'
|
834
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
|
835
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
|
836
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
|
837
|
+
/usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
|
838
|
+
/usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
|
839
|
+
/usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
|
840
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
|
841
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
|
842
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
843
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
844
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
845
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
846
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1935:in `doTestGroupB'
|
847
|
+
client4S4C2.rb:13
|
848
|
+
|
849
|
+
Wire dump:
|
850
|
+
|
851
|
+
= Request
|
852
|
+
|
853
|
+
! CONNECTION ESTABLISHED
|
854
|
+
POST /ilab2/soap.asp HTTP/1.1
|
855
|
+
SOAPAction: "http://soapinterop.org/"
|
856
|
+
Content-Type: text/xml; charset=utf-8
|
857
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
858
|
+
Date: Sat Jul 23 19:25:01 JST 2005
|
859
|
+
Content-Length: 1093
|
860
|
+
Host: soap.4s4c.com
|
861
|
+
|
862
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
863
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
864
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
865
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
866
|
+
<env:Body>
|
867
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
868
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
869
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
870
|
+
xsi:type="n2:SOAPArrayStruct">
|
871
|
+
<varString href="#id-605617448"></varString>
|
872
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
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-605617448"></item>
|
878
|
+
<item>b</item>
|
879
|
+
</varArray>
|
880
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
881
|
+
</inputStruct>
|
882
|
+
</n1:echoNestedArray>
|
883
|
+
<varString id="id-605617448"
|
884
|
+
xsi:type="xsd:string"
|
885
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
886
|
+
</env:Body>
|
887
|
+
</env:Envelope>
|
888
|
+
|
889
|
+
= Response
|
890
|
+
|
891
|
+
HTTP/1.1 500 Internal Server Error
|
892
|
+
Date: Sat, 23 Jul 2005 10:28:41 GMT
|
893
|
+
Server: Microsoft-IIS/6.0
|
894
|
+
X-Powered-By: ASP.NET
|
895
|
+
Content-Length: 270
|
896
|
+
Content-Type: text/xml; charset=UTF-8
|
897
|
+
Expires: Sat, 23 Jul 2005 10:28:41 GMT
|
898
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=JNNLHJABCCHDBEJLMDGNJEEH; path=/
|
899
|
+
Cache-control: private
|
900
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
901
|
+
Connection: close
|
902
|
+
|
903
|
+
<font face="Arial" size=2>
|
904
|
+
<p>soap</font> <font face="Arial" size=2>error '800a9c68'</font>
|
905
|
+
<p>
|
906
|
+
<font face="Arial" size=2>Application-defined or object-defined error</font>
|
907
|
+
<p>
|
908
|
+
<font face="Arial" size=2>/ilab2/soap.asp</font><font face="Arial" size=2>, line 114</font> ! CONNECTION CLOSED
|
909
|
+
|
910
|
+
|
911
|
+
|
912
|
+
##########
|
913
|
+
# echoNestedArray (multi-ref: varString == varArray[1])
|
914
|
+
|
915
|
+
Result: Exception: parse error at `size' (XSD::XMLParser::Parser::ParseError)
|
916
|
+
/usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:42:in `parse_error'
|
917
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:331:in `parse_error'
|
918
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:717:in `found_stag_error'
|
919
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:780:in `scan_stag'
|
920
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:751:in `scan'
|
921
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:751:in `scan_stag'
|
922
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:826:in `scan_content'
|
923
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1051:in `scan_prolog'
|
924
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1058:in `scan_document'
|
925
|
+
/usr/local/lib/ruby/site_ruby/1.9/xmlscan/scanner.rb:1073:in `parse_document'
|
926
|
+
/usr/local/lib/ruby/1.9/xsd/xmlparser/xmlscanner.rb:25:in `do_parse'
|
927
|
+
/usr/local/lib/ruby/1.9/soap/parser.rb:92:in `parse'
|
928
|
+
/usr/local/lib/ruby/1.9/soap/processor.rb:39:in `unmarshal'
|
929
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:231:in `unmarshal'
|
930
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:170:in `route'
|
931
|
+
/usr/local/lib/ruby/1.9/soap/rpc/proxy.rb:137:in `call'
|
932
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:177:in `call'
|
933
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:231:in `echoNestedArray'
|
934
|
+
/usr/local/lib/ruby/1.9/soap/rpc/driver.rb:226:in `echoNestedArray'
|
935
|
+
/home/nahi/svn/soap4r/test/interopR2/clientBase.rb:1946:in `doTestGroupB'
|
936
|
+
client4S4C2.rb:13
|
937
|
+
|
938
|
+
Wire dump:
|
939
|
+
|
940
|
+
= Request
|
941
|
+
|
942
|
+
! CONNECTION ESTABLISHED
|
943
|
+
POST /ilab2/soap.asp HTTP/1.1
|
944
|
+
SOAPAction: "http://soapinterop.org/"
|
945
|
+
Content-Type: text/xml; charset=utf-8
|
946
|
+
User-Agent: SOAP4R/1.5.4 (/96, ruby 1.9.0 (2005-07-16) [i686-linux])
|
947
|
+
Date: Sat Jul 23 19:25:02 JST 2005
|
948
|
+
Content-Length: 1093
|
949
|
+
Host: soap.4s4c.com
|
950
|
+
|
951
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
952
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
953
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
|
954
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
955
|
+
<env:Body>
|
956
|
+
<n1:echoNestedArray xmlns:n1="http://soapinterop.org/"
|
957
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
958
|
+
<inputStruct xmlns:n2="http://soapinterop.org/xsd"
|
959
|
+
xsi:type="n2:SOAPArrayStruct">
|
960
|
+
<varString href="#id-605649498"></varString>
|
961
|
+
<varFloat xsi:type="xsd:float">+1.1</varFloat>
|
962
|
+
<varArray xmlns:n3="http://schemas.xmlsoap.org/soap/encoding/"
|
963
|
+
xsi:type="n3:Array"
|
964
|
+
n3:arrayType="xsd:string[3]">
|
965
|
+
<item>2</item>
|
966
|
+
<item href="#id-605649498"></item>
|
967
|
+
<item>b</item>
|
968
|
+
</varArray>
|
969
|
+
<varInt xsi:type="xsd:int">1</varInt>
|
970
|
+
</inputStruct>
|
971
|
+
</n1:echoNestedArray>
|
972
|
+
<varString id="id-605649498"
|
973
|
+
xsi:type="xsd:string"
|
974
|
+
env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"></varString>
|
975
|
+
</env:Body>
|
976
|
+
</env:Envelope>
|
977
|
+
|
978
|
+
= Response
|
979
|
+
|
980
|
+
HTTP/1.1 500 Internal Server Error
|
981
|
+
Date: Sat, 23 Jul 2005 10:28:42 GMT
|
982
|
+
Server: Microsoft-IIS/6.0
|
983
|
+
X-Powered-By: ASP.NET
|
984
|
+
Content-Length: 270
|
985
|
+
Content-Type: text/xml; charset=UTF-8
|
986
|
+
Expires: Sat, 23 Jul 2005 10:28:42 GMT
|
987
|
+
Set-Cookie: ASPSESSIONIDSQDDDBSC=KNNLHJABGEFPLDGOHCBEABIL; path=/
|
988
|
+
Cache-control: private
|
989
|
+
X-Cache: MISS from mayhem.pocketsoap.com
|
990
|
+
Connection: close
|
991
|
+
|
992
|
+
<font face="Arial" size=2>
|
993
|
+
<p>soap</font> <font face="Arial" size=2>error '800a9c68'</font>
|
994
|
+
<p>
|
995
|
+
<font face="Arial" size=2>Application-defined or object-defined error</font>
|
996
|
+
<p>
|
997
|
+
<font face="Arial" size=2>/ilab2/soap.asp</font><font face="Arial" size=2>, line 114</font> ! CONNECTION CLOSED
|
998
|
+
|
999
|
+
|
1000
|
+
|