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,92 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<definitions
|
3
|
+
name="map"
|
4
|
+
targetNamespace="urn:map"
|
5
|
+
xmlns:tns="urn:map"
|
6
|
+
xmlns:txd="urn:map"
|
7
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/"
|
8
|
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
9
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
10
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
11
|
+
xmlns:apachesoap="http://xml.apache.org/xml-soap">
|
12
|
+
|
13
|
+
<types>
|
14
|
+
<schema
|
15
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
16
|
+
targetNamespace="http://xml.apache.org/xml-soap">
|
17
|
+
<complexType name="Map">
|
18
|
+
<sequence>
|
19
|
+
<element name="item" minOccurs="0" maxOccurs="unbounded">
|
20
|
+
<complexType>
|
21
|
+
<sequence>
|
22
|
+
<element name="key" type="xsd:anyType" />
|
23
|
+
<element name="value" type="xsd:anyType" />
|
24
|
+
</sequence>
|
25
|
+
</complexType>
|
26
|
+
</element>
|
27
|
+
</sequence>
|
28
|
+
</complexType>
|
29
|
+
</schema>
|
30
|
+
</types>
|
31
|
+
|
32
|
+
<message name="mapRequest"/>
|
33
|
+
<message name="mapResponse">
|
34
|
+
<part name="return" type="apachesoap:Map"/>
|
35
|
+
</message>
|
36
|
+
|
37
|
+
<message name="map2Request">
|
38
|
+
<part name="arg" type="apachesoap:Map"/>
|
39
|
+
</message>
|
40
|
+
<message name="map2Response">
|
41
|
+
<part name="return" type="apachesoap:Map"/>
|
42
|
+
</message>
|
43
|
+
|
44
|
+
<portType name="MapServicePortType">
|
45
|
+
<operation name="map" parameterOrder="">
|
46
|
+
<input message="tns:mapRequest"/>
|
47
|
+
<output message="tns:mapResponse"/>
|
48
|
+
</operation>
|
49
|
+
|
50
|
+
<operation name="map2" parameterOrder="">
|
51
|
+
<input message="tns:map2Request"/>
|
52
|
+
<output message="tns:map2Response"/>
|
53
|
+
</operation>
|
54
|
+
</portType>
|
55
|
+
|
56
|
+
<binding name="MapServicePortBinding" type="tns:MapServicePortType">
|
57
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
58
|
+
<operation name="map">
|
59
|
+
<soap:operation soapAction=""/>
|
60
|
+
<input>
|
61
|
+
<soap:body use="encoded"
|
62
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
63
|
+
namespace="urn:map"/>
|
64
|
+
</input>
|
65
|
+
<output>
|
66
|
+
<soap:body use="encoded"
|
67
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
68
|
+
namespace="urn:map"/>
|
69
|
+
</output>
|
70
|
+
</operation>
|
71
|
+
|
72
|
+
<operation name="map2">
|
73
|
+
<soap:operation soapAction=""/>
|
74
|
+
<input>
|
75
|
+
<soap:body use="encoded"
|
76
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
77
|
+
namespace="urn:map"/>
|
78
|
+
</input>
|
79
|
+
<output>
|
80
|
+
<soap:body use="encoded"
|
81
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
82
|
+
namespace="urn:map"/>
|
83
|
+
</output>
|
84
|
+
</operation>
|
85
|
+
</binding>
|
86
|
+
|
87
|
+
<service name="MapService">
|
88
|
+
<port name="MapServicePort" binding="tns:MapServicePortBinding">
|
89
|
+
<soap:address location="http://raa.ruby-lang.org/soap/1.0.2/"/>
|
90
|
+
</port>
|
91
|
+
</service>
|
92
|
+
</definitions>
|
@@ -0,0 +1,43 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" ?>
|
2
|
+
<env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
3
|
+
<env:Body>
|
4
|
+
<n2:mapResponse xmlns:n1="http://schemas.xmlsoap.org/soap/encoding/" xmlns:n2="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/" env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
5
|
+
<return xmlns:n3="http://xml.apache.org/xml-soap" xsi:type="n3:Map">
|
6
|
+
<item>
|
7
|
+
<key xsi:type="xsd:string">a</key>
|
8
|
+
<value xsi:type="n3:Map">
|
9
|
+
<item>
|
10
|
+
<key xsi:type="xsd:string">a1</key>
|
11
|
+
<value xsi:type="n1:Array" n1:arrayType="xsd:anyType[1]">
|
12
|
+
<item xsi:type="xsd:string">a1</item>
|
13
|
+
</value>
|
14
|
+
</item>
|
15
|
+
<item>
|
16
|
+
<key xsi:type="xsd:string">a2</key>
|
17
|
+
<value xsi:type="n1:Array" n1:arrayType="xsd:anyType[1]">
|
18
|
+
<item xsi:type="xsd:string">a2</item>
|
19
|
+
</value>
|
20
|
+
</item>
|
21
|
+
</value>
|
22
|
+
</item>
|
23
|
+
<item>
|
24
|
+
<key xsi:type="xsd:string">b</key>
|
25
|
+
<value xsi:type="n3:Map">
|
26
|
+
<item>
|
27
|
+
<key xsi:type="xsd:string">b1</key>
|
28
|
+
<value xsi:type="n1:Array" n1:arrayType="xsd:anyType[1]">
|
29
|
+
<item xsi:type="xsd:string">b1</item>
|
30
|
+
</value>
|
31
|
+
</item>
|
32
|
+
<item>
|
33
|
+
<key xsi:type="xsd:string">b2</key>
|
34
|
+
<value xsi:type="n1:Array" n1:arrayType="xsd:anyType[1]">
|
35
|
+
<item xsi:type="xsd:string">b2</item>
|
36
|
+
</value>
|
37
|
+
</item>
|
38
|
+
</value>
|
39
|
+
</item>
|
40
|
+
</return>
|
41
|
+
</n2:mapResponse>
|
42
|
+
</env:Body>
|
43
|
+
</env:Envelope>
|
@@ -0,0 +1,99 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'soap/rpc/httpserver'
|
3
|
+
require 'soap/wsdlDriver'
|
4
|
+
|
5
|
+
|
6
|
+
module WSDL
|
7
|
+
|
8
|
+
|
9
|
+
class TestMap < Test::Unit::TestCase
|
10
|
+
Port = 17171
|
11
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
12
|
+
|
13
|
+
class Server < ::SOAP::RPC::HTTPServer
|
14
|
+
def on_init
|
15
|
+
add_method(self, 'map')
|
16
|
+
add_method(self, 'map2', 'arg')
|
17
|
+
end
|
18
|
+
|
19
|
+
def map
|
20
|
+
{1 => "a", 2 => "b"}
|
21
|
+
end
|
22
|
+
|
23
|
+
def map2(arg)
|
24
|
+
arg
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def setup
|
29
|
+
setup_server
|
30
|
+
setup_client
|
31
|
+
end
|
32
|
+
|
33
|
+
def setup_server
|
34
|
+
@server = Server.new(
|
35
|
+
:BindAddress => "0.0.0.0",
|
36
|
+
:Port => Port,
|
37
|
+
:AccessLog => [],
|
38
|
+
:SOAPDefaultNamespace => "urn:map"
|
39
|
+
)
|
40
|
+
@server.level = Logger::Severity::ERROR
|
41
|
+
@t = Thread.new {
|
42
|
+
Thread.current.abort_on_exception = true
|
43
|
+
@server.start
|
44
|
+
}
|
45
|
+
end
|
46
|
+
|
47
|
+
def setup_client
|
48
|
+
wsdl = File.join(DIR, 'map.wsdl')
|
49
|
+
@client = ::SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
|
50
|
+
@client.endpoint_url = "http://localhost:#{Port}/"
|
51
|
+
@client.generate_explicit_type = true
|
52
|
+
@client.wiredump_dev = STDOUT if $DEBUG
|
53
|
+
end
|
54
|
+
|
55
|
+
def teardown
|
56
|
+
teardown_server
|
57
|
+
teardown_client
|
58
|
+
end
|
59
|
+
|
60
|
+
def teardown_server
|
61
|
+
@server.shutdown
|
62
|
+
@t.kill
|
63
|
+
@t.join
|
64
|
+
end
|
65
|
+
|
66
|
+
def teardown_client
|
67
|
+
@client.reset_stream
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_by_wsdl
|
71
|
+
dir = File.dirname(File.expand_path(__FILE__))
|
72
|
+
wsdlfile = File.join(dir, 'map.wsdl')
|
73
|
+
xml = File.open(File.join(dir, 'map.xml')) { |f| f.read }
|
74
|
+
wsdl = WSDL::Importer.import(wsdlfile)
|
75
|
+
service = wsdl.services[0]
|
76
|
+
port = service.ports[0]
|
77
|
+
wsdl_types = wsdl.collect_complextypes
|
78
|
+
rpc_decode_typemap = wsdl_types + wsdl.soap_rpc_complextypes(port.find_binding)
|
79
|
+
opt = {}
|
80
|
+
opt[:default_encodingstyle] = ::SOAP::EncodingNamespace
|
81
|
+
opt[:decode_typemap] = rpc_decode_typemap
|
82
|
+
header, body = ::SOAP::Processor.unmarshal(xml, opt)
|
83
|
+
map = ::SOAP::Mapping.soap2obj(body.response)
|
84
|
+
assert_equal(["a1"], map["a"]["a1"])
|
85
|
+
assert_equal(["a2"], map["a"]["a2"])
|
86
|
+
assert_equal(["b1"], map["b"]["b1"])
|
87
|
+
assert_equal(["b2"], map["b"]["b2"])
|
88
|
+
end
|
89
|
+
|
90
|
+
def test_wsdldriver
|
91
|
+
assert_equal({1 => "a", 2 => "b"}, @client.map)
|
92
|
+
assert_equal({1 => 2}, @client.map2({1 => 2}))
|
93
|
+
assert_equal({1 => {2 => 3}}, @client.map2({1 => {2 => 3}}))
|
94
|
+
assert_equal({["a", 2] => {2 => 3}}, @client.map2({["a", 2] => {2 => 3}}))
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
|
99
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<definitions name="Person"
|
3
|
+
targetNamespace="http://www.jin.gr.jp/~nahi/xmlns/sample/Person"
|
4
|
+
xmlns:tns="http://www.jin.gr.jp/~nahi/xmlns/sample/Person"
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
6
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/">
|
7
|
+
<types>
|
8
|
+
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema"
|
9
|
+
targetNamespace="http://www.jin.gr.jp/~nahi/xmlns/sample/Person">
|
10
|
+
<complexType name="Person">
|
11
|
+
<all>
|
12
|
+
<element name="familyname" type="xsd:string"/>
|
13
|
+
<element name="givenname" type="xsd:string"/>
|
14
|
+
<element name="var1" type="xsd:int"/>
|
15
|
+
<element name="var2" type="xsd:double"/>
|
16
|
+
<element name="var3" type="xsd:string"/>
|
17
|
+
</all>
|
18
|
+
</complexType>
|
19
|
+
</xsd:schema>
|
20
|
+
</types>
|
21
|
+
</definitions>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {http://www.jin.gr.jp/~nahi/xmlns/sample/Person}Person
|
4
|
+
class Person
|
5
|
+
attr_accessor :familyname
|
6
|
+
attr_accessor :givenname
|
7
|
+
attr_accessor :var1
|
8
|
+
attr_accessor :var2
|
9
|
+
attr_accessor :var3
|
10
|
+
|
11
|
+
def initialize(familyname = nil, givenname = nil, var1 = nil, var2 = nil, var3 = nil)
|
12
|
+
@familyname = familyname
|
13
|
+
@givenname = givenname
|
14
|
+
@var1 = var1
|
15
|
+
@var2 = var2
|
16
|
+
@var3 = var3
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,79 @@
|
|
1
|
+
require 'test/unit'
|
2
|
+
require 'wsdl/parser'
|
3
|
+
require 'soap/mapping/wsdlencodedregistry'
|
4
|
+
require 'soap/marshal'
|
5
|
+
require 'wsdl/soap/wsdl2ruby'
|
6
|
+
|
7
|
+
class WSDLMarshaller
|
8
|
+
include SOAP
|
9
|
+
|
10
|
+
def initialize(wsdlfile)
|
11
|
+
wsdl = WSDL::Parser.new.parse(File.open(wsdlfile) { |f| f.read })
|
12
|
+
types = wsdl.collect_complextypes
|
13
|
+
@opt = {
|
14
|
+
:decode_typemap => types,
|
15
|
+
:generate_explicit_type => false,
|
16
|
+
:pretty => true
|
17
|
+
}
|
18
|
+
@mapping_registry = Mapping::WSDLEncodedRegistry.new(types)
|
19
|
+
end
|
20
|
+
|
21
|
+
def dump(obj, io = nil)
|
22
|
+
ele = Mapping.obj2soap(obj, @mapping_registry)
|
23
|
+
ele.elename = ele.type
|
24
|
+
Processor.marshal(SOAPEnvelope.new(nil, SOAPBody.new(ele)), @opt, io)
|
25
|
+
end
|
26
|
+
|
27
|
+
def load(io)
|
28
|
+
header, body = Processor.unmarshal(io, @opt)
|
29
|
+
Mapping.soap2obj(body.root_node)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
|
34
|
+
require File.join(File.dirname(__FILE__), 'person_org')
|
35
|
+
|
36
|
+
class Person
|
37
|
+
def ==(rhs)
|
38
|
+
@familyname == rhs.familyname and @givenname == rhs.givenname and
|
39
|
+
@var1 == rhs.var1 and @var2 == rhs.var2 and @var3 == rhs.var3
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
|
44
|
+
class TestWSDLMarshal < Test::Unit::TestCase
|
45
|
+
DIR = File.dirname(File.expand_path(__FILE__))
|
46
|
+
|
47
|
+
def test_marshal
|
48
|
+
marshaller = WSDLMarshaller.new(pathname('person.wsdl'))
|
49
|
+
obj = Person.new("NAKAMURA", "Hiroshi", 1, 1.0, "1")
|
50
|
+
str = marshaller.dump(obj)
|
51
|
+
obj2 = marshaller.load(str)
|
52
|
+
assert_equal(obj, obj2)
|
53
|
+
assert_equal(str, marshaller.dump(obj2))
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_classdef
|
57
|
+
gen = WSDL::SOAP::WSDL2Ruby.new
|
58
|
+
gen.location = pathname("person.wsdl")
|
59
|
+
gen.basedir = DIR
|
60
|
+
gen.logger.level = Logger::FATAL
|
61
|
+
gen.opt['classdef'] = nil
|
62
|
+
gen.opt['force'] = true
|
63
|
+
gen.run
|
64
|
+
compare("person_org.rb", "Person.rb")
|
65
|
+
File.unlink(pathname('Person.rb')) unless $DEBUG
|
66
|
+
end
|
67
|
+
|
68
|
+
def compare(expected, actual)
|
69
|
+
assert_equal(loadfile(expected), loadfile(actual), actual)
|
70
|
+
end
|
71
|
+
|
72
|
+
def loadfile(file)
|
73
|
+
File.open(pathname(file)) { |f| f.read }
|
74
|
+
end
|
75
|
+
|
76
|
+
def pathname(filename)
|
77
|
+
File.join(DIR, filename)
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<definitions name="MultipleFaultTest"
|
3
|
+
targetNamespace="urn:jp.gr.jin.rrr.example.ele"
|
4
|
+
xmlns:tns="urn:jp.gr.jin.rrr.example.ele"
|
5
|
+
xmlns:typens="urn:jp.gr.jin.rrr.example.datatypes"
|
6
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
7
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
8
|
+
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
|
9
|
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
10
|
+
xmlns="http://schemas.xmlsoap.org/wsdl/">
|
11
|
+
|
12
|
+
<types>
|
13
|
+
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema"
|
14
|
+
targetNamespace="urn:jp.gr.jin.rrr.example.datatypes">
|
15
|
+
<xsd:complexType name="AuthenticationError">
|
16
|
+
<all>
|
17
|
+
<element name="message" type="xsd:string" />
|
18
|
+
<element name="backtrace" type="xoapenc:Array" />
|
19
|
+
</all>
|
20
|
+
</xsd:complexType>
|
21
|
+
<xsd:complexType name="AuthorizationError">
|
22
|
+
<all>
|
23
|
+
<element name="message" type="xsd:string" />
|
24
|
+
<element name="backtrace" type="xoapenc:Array" />
|
25
|
+
</all>
|
26
|
+
</xsd:complexType>
|
27
|
+
</xsd:schema>
|
28
|
+
</types>
|
29
|
+
|
30
|
+
<message name="inputmsg"/>
|
31
|
+
<message name="outputmsg"/>
|
32
|
+
<message name="faultmsg1" >
|
33
|
+
<part name="exception" type="typens:AuthenticationError" />
|
34
|
+
</message>
|
35
|
+
<message name="faultmsg2" >
|
36
|
+
<part name="exception" type="typens:AuthorizationError" />
|
37
|
+
</message>
|
38
|
+
|
39
|
+
<portType name="MultipleFaultPortType">
|
40
|
+
<operation name="myoperation">
|
41
|
+
<input message="tns:inputmsg"/>
|
42
|
+
<output message="tns:outputmsg"/>
|
43
|
+
<fault message="tns:faultmsg1"/>
|
44
|
+
<fault message="tns:faultmsg2"/>
|
45
|
+
</operation>
|
46
|
+
</portType>
|
47
|
+
|
48
|
+
<binding name="MultipleFaultBinding" type="tns:MultipleFaultPortType">
|
49
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
50
|
+
<operation name="myoperation">
|
51
|
+
<soap:operation soapAction="urn:jp.gr.jin.rrr.example.ele"/>
|
52
|
+
<input>
|
53
|
+
<soap:body use="encoded" namespace="urn:jp.gr.jin.rrr.example.ele"
|
54
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
55
|
+
</input>
|
56
|
+
<output>
|
57
|
+
<soap:body use="encoded" namespace="urn:jp.gr.jin.rrr.example.ele"
|
58
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
59
|
+
</output>
|
60
|
+
</operation>
|
61
|
+
</binding>
|
62
|
+
|
63
|
+
<service name="MultipleFaultService">
|
64
|
+
<port name="MultipleFaultPortType" binding="tns:MultipleFaultBinding">
|
65
|
+
<soap:address location="http://localhost:17171/"/>
|
66
|
+
</port>
|
67
|
+
</service>
|
68
|
+
</definitions>
|
@@ -0,0 +1,80 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<wsdl:definitions targetNamespace="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1" xmlns:intf="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns1="http://rpc.confluence.atlassian.com" xmlns:tns2="http://beans.soap.rpc.confluence.atlassian.com" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
3
|
+
<wsdl:types>
|
4
|
+
<schema targetNamespace="http://rpc.confluence.atlassian.com" xmlns="http://www.w3.org/2001/XMLSchema">
|
5
|
+
<import namespace="http://xml.apache.org/xml-soap"/>
|
6
|
+
<import namespace="http://beans.soap.rpc.confluence.atlassian.com"/>
|
7
|
+
<import namespace="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1"/>
|
8
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
9
|
+
</schema>
|
10
|
+
</wsdl:types>
|
11
|
+
|
12
|
+
<wsdl:message name="methodAlphaRequest">
|
13
|
+
<wsdl:part name="in0" type="xsd:string"/>
|
14
|
+
<wsdl:part name="in1" type="xsd:string"/>
|
15
|
+
<wsdl:part name="in2" type="xsd:string"/>
|
16
|
+
</wsdl:message>
|
17
|
+
|
18
|
+
<wsdl:message name="methodAlphaRequest1">
|
19
|
+
<wsdl:part name="in0" type="xsd:string"/>
|
20
|
+
<wsdl:part name="in1" type="xsd:string"/>
|
21
|
+
</wsdl:message>
|
22
|
+
|
23
|
+
<wsdl:message name="methodAlphaResponse">
|
24
|
+
<wsdl:part name="methodAlphaReturn" type="xsd:long"/>
|
25
|
+
</wsdl:message>
|
26
|
+
|
27
|
+
<wsdl:message name="methodAlphaResponse1">
|
28
|
+
<wsdl:part name="methodAlphaReturn" type="xsd:long"/>
|
29
|
+
</wsdl:message>
|
30
|
+
|
31
|
+
|
32
|
+
<wsdl:portType name="ConfluenceSoapService">
|
33
|
+
<wsdl:operation name="methodAlpha" parameterOrder="in0 in1 in2">
|
34
|
+
<wsdl:input message="impl:methodAlphaRequest" name="methodAlphaRequest"/>
|
35
|
+
<wsdl:output message="impl:methodAlphaResponse" name="methodAlphaResponse"/>
|
36
|
+
</wsdl:operation>
|
37
|
+
|
38
|
+
<wsdl:operation name="methodAlpha" parameterOrder="in0 in1">
|
39
|
+
<wsdl:input message="impl:methodAlphaRequest1" name="methodAlphaRequest1"/>
|
40
|
+
<wsdl:output message="impl:methodAlphaResponse1" name="methodAlphaResponse1"/>
|
41
|
+
</wsdl:operation>
|
42
|
+
|
43
|
+
</wsdl:portType>
|
44
|
+
|
45
|
+
<wsdl:binding name="confluencesoapservice-v1SoapBinding" type="impl:ConfluenceSoapService">
|
46
|
+
<wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
47
|
+
<wsdl:operation name="methodAlpha">
|
48
|
+
<wsdlsoap:operation soapAction="methodAlpha1"/>
|
49
|
+
|
50
|
+
<wsdl:input name="methodAlphaRequest">
|
51
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.confluence.atlassian.com" use="encoded"/>
|
52
|
+
</wsdl:input>
|
53
|
+
|
54
|
+
<wsdl:output name="methodAlphaResponse">
|
55
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1" use="encoded"/>
|
56
|
+
</wsdl:output>
|
57
|
+
|
58
|
+
</wsdl:operation>
|
59
|
+
|
60
|
+
<wsdl:operation name="methodAlpha">
|
61
|
+
<wsdlsoap:operation soapAction="methodAlpha2"/>
|
62
|
+
|
63
|
+
<wsdl:input name="methodAlphaRequest1">
|
64
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://soap.rpc.confluence.atlassian.com" use="encoded"/>
|
65
|
+
</wsdl:input>
|
66
|
+
|
67
|
+
<wsdl:output name="methodAlphaResponse1">
|
68
|
+
<wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1" use="encoded"/>
|
69
|
+
</wsdl:output>
|
70
|
+
|
71
|
+
</wsdl:operation>
|
72
|
+
</wsdl:binding>
|
73
|
+
|
74
|
+
<wsdl:service name="ConfluenceSoapServiceService">
|
75
|
+
<wsdl:port binding="impl:confluencesoapservice-v1SoapBinding" name="confluencesoapservice-v1">
|
76
|
+
<wsdlsoap:address location="http://confluence.atlassian.com/rpc/soap-axis/confluenceservice-v1"/>
|
77
|
+
</wsdl:port>
|
78
|
+
</wsdl:service>
|
79
|
+
|
80
|
+
</wsdl:definitions>
|