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