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,120 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}Category
|
4
|
+
class Category
|
5
|
+
@@schema_type = "Category"
|
6
|
+
@@schema_ns = "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
7
|
+
@@schema_element = [
|
8
|
+
["major", ["SOAP::SOAPString", XSD::QName.new(nil, "major")]],
|
9
|
+
["minor", ["SOAP::SOAPString", XSD::QName.new(nil, "minor")]]
|
10
|
+
]
|
11
|
+
|
12
|
+
attr_accessor :major
|
13
|
+
attr_accessor :minor
|
14
|
+
|
15
|
+
def initialize(major = nil, minor = nil)
|
16
|
+
@major = major
|
17
|
+
@minor = minor
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
# {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}Product
|
22
|
+
class Product
|
23
|
+
@@schema_type = "Product"
|
24
|
+
@@schema_ns = "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
25
|
+
@@schema_element = [
|
26
|
+
["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
|
27
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
|
28
|
+
["short_description", ["SOAP::SOAPString", XSD::QName.new(nil, "short_description")]],
|
29
|
+
["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]],
|
30
|
+
["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]],
|
31
|
+
["homepage", ["SOAP::SOAPAnyURI", XSD::QName.new(nil, "homepage")]],
|
32
|
+
["download", ["SOAP::SOAPAnyURI", XSD::QName.new(nil, "download")]],
|
33
|
+
["license", ["SOAP::SOAPString", XSD::QName.new(nil, "license")]],
|
34
|
+
["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]]
|
35
|
+
]
|
36
|
+
|
37
|
+
attr_accessor :id
|
38
|
+
attr_accessor :name
|
39
|
+
attr_accessor :short_description
|
40
|
+
attr_accessor :version
|
41
|
+
attr_accessor :status
|
42
|
+
attr_accessor :homepage
|
43
|
+
attr_accessor :download
|
44
|
+
attr_accessor :license
|
45
|
+
attr_accessor :description
|
46
|
+
|
47
|
+
def initialize(id = nil, name = nil, short_description = nil, version = nil, status = nil, homepage = nil, download = nil, license = nil, description = nil)
|
48
|
+
@id = id
|
49
|
+
@name = name
|
50
|
+
@short_description = short_description
|
51
|
+
@version = version
|
52
|
+
@status = status
|
53
|
+
@homepage = homepage
|
54
|
+
@download = download
|
55
|
+
@license = license
|
56
|
+
@description = description
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
# {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}Owner
|
61
|
+
class Owner
|
62
|
+
@@schema_type = "Owner"
|
63
|
+
@@schema_ns = "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
64
|
+
@@schema_element = [
|
65
|
+
["id", ["SOAP::SOAPInt", XSD::QName.new(nil, "id")]],
|
66
|
+
["email", ["SOAP::SOAPAnyURI", XSD::QName.new(nil, "email")]],
|
67
|
+
["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
|
68
|
+
]
|
69
|
+
|
70
|
+
attr_accessor :id
|
71
|
+
attr_accessor :email
|
72
|
+
attr_accessor :name
|
73
|
+
|
74
|
+
def initialize(id = nil, email = nil, name = nil)
|
75
|
+
@id = id
|
76
|
+
@email = email
|
77
|
+
@name = name
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}Info
|
82
|
+
class Info
|
83
|
+
@@schema_type = "Info"
|
84
|
+
@@schema_ns = "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
85
|
+
@@schema_element = [
|
86
|
+
["category", ["Category", XSD::QName.new(nil, "category")]],
|
87
|
+
["product", ["Product", XSD::QName.new(nil, "product")]],
|
88
|
+
["owner", ["Owner", XSD::QName.new(nil, "owner")]],
|
89
|
+
["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
|
90
|
+
["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
|
91
|
+
]
|
92
|
+
|
93
|
+
attr_accessor :category
|
94
|
+
attr_accessor :product
|
95
|
+
attr_accessor :owner
|
96
|
+
attr_accessor :created
|
97
|
+
attr_accessor :updated
|
98
|
+
|
99
|
+
def initialize(category = nil, product = nil, owner = nil, created = nil, updated = nil)
|
100
|
+
@category = category
|
101
|
+
@product = product
|
102
|
+
@owner = owner
|
103
|
+
@created = created
|
104
|
+
@updated = updated
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
# {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}InfoArray
|
109
|
+
class InfoArray < ::Array
|
110
|
+
@@schema_element = [
|
111
|
+
["item", ["Info", XSD::QName.new(nil, "item")]]
|
112
|
+
]
|
113
|
+
end
|
114
|
+
|
115
|
+
# {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}StringArray
|
116
|
+
class StringArray < ::Array
|
117
|
+
@@schema_element = [
|
118
|
+
["item", ["String", XSD::QName.new(nil, "item")]]
|
119
|
+
]
|
120
|
+
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
class RAABaseServicePortType
|
2
|
+
# SYNOPSIS
|
3
|
+
# getAllListings
|
4
|
+
#
|
5
|
+
# ARGS
|
6
|
+
# N/A
|
7
|
+
#
|
8
|
+
# RETURNS
|
9
|
+
# return StringArray - {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}StringArray
|
10
|
+
#
|
11
|
+
# RAISES
|
12
|
+
# (undefined)
|
13
|
+
#
|
14
|
+
def getAllListings
|
15
|
+
#raise NotImplementedError.new
|
16
|
+
["ruby", "soap4r"]
|
17
|
+
end
|
18
|
+
|
19
|
+
# SYNOPSIS
|
20
|
+
# getProductTree
|
21
|
+
#
|
22
|
+
# ARGS
|
23
|
+
# N/A
|
24
|
+
#
|
25
|
+
# RETURNS
|
26
|
+
# return Map - {http://xml.apache.org/xml-soap}Map
|
27
|
+
#
|
28
|
+
# RAISES
|
29
|
+
# (undefined)
|
30
|
+
#
|
31
|
+
def getProductTree
|
32
|
+
raise NotImplementedError.new
|
33
|
+
end
|
34
|
+
|
35
|
+
# SYNOPSIS
|
36
|
+
# getInfoFromCategory(category)
|
37
|
+
#
|
38
|
+
# ARGS
|
39
|
+
# category Category - {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}Category
|
40
|
+
#
|
41
|
+
# RETURNS
|
42
|
+
# return InfoArray - {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}InfoArray
|
43
|
+
#
|
44
|
+
# RAISES
|
45
|
+
# (undefined)
|
46
|
+
#
|
47
|
+
def getInfoFromCategory(category)
|
48
|
+
raise NotImplementedError.new
|
49
|
+
end
|
50
|
+
|
51
|
+
# SYNOPSIS
|
52
|
+
# getModifiedInfoSince(timeInstant)
|
53
|
+
#
|
54
|
+
# ARGS
|
55
|
+
# timeInstant - {http://www.w3.org/2001/XMLSchema}dateTime
|
56
|
+
#
|
57
|
+
# RETURNS
|
58
|
+
# return InfoArray - {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}InfoArray
|
59
|
+
#
|
60
|
+
# RAISES
|
61
|
+
# (undefined)
|
62
|
+
#
|
63
|
+
def getModifiedInfoSince(timeInstant)
|
64
|
+
raise NotImplementedError.new
|
65
|
+
end
|
66
|
+
|
67
|
+
# SYNOPSIS
|
68
|
+
# getInfoFromName(productName)
|
69
|
+
#
|
70
|
+
# ARGS
|
71
|
+
# productName - {http://www.w3.org/2001/XMLSchema}string
|
72
|
+
#
|
73
|
+
# RETURNS
|
74
|
+
# return Info - {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}Info
|
75
|
+
#
|
76
|
+
# RAISES
|
77
|
+
# (undefined)
|
78
|
+
#
|
79
|
+
def getInfoFromName(productName)
|
80
|
+
Info.new(
|
81
|
+
Category.new("major", "minor"),
|
82
|
+
Product.new(123, productName, "short description", "version", "status",
|
83
|
+
URI.parse("http://example.com/homepage"),
|
84
|
+
URI.parse("http://example.com/download"),
|
85
|
+
"license", "description"),
|
86
|
+
Owner.new(456, URI.parse("mailto:email@example.com"), "name"),
|
87
|
+
Time.now,
|
88
|
+
Time.now)
|
89
|
+
end
|
90
|
+
|
91
|
+
# SYNOPSIS
|
92
|
+
# getInfoFromOwnerId(ownerId)
|
93
|
+
#
|
94
|
+
# ARGS
|
95
|
+
# ownerId - {http://www.w3.org/2001/XMLSchema}int
|
96
|
+
#
|
97
|
+
# RETURNS
|
98
|
+
# return InfoArray - {http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/}InfoArray
|
99
|
+
#
|
100
|
+
# RAISES
|
101
|
+
# (undefined)
|
102
|
+
#
|
103
|
+
def getInfoFromOwnerId(ownerId)
|
104
|
+
raise NotImplementedError.new
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
@@ -0,0 +1,120 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'RAAServant.rb'
|
3
|
+
|
4
|
+
require 'soap/rpc/standaloneServer'
|
5
|
+
require 'soap/mapping/registry'
|
6
|
+
|
7
|
+
class RAABaseServicePortType
|
8
|
+
MappingRegistry = ::SOAP::Mapping::Registry.new
|
9
|
+
|
10
|
+
MappingRegistry.set(
|
11
|
+
StringArray,
|
12
|
+
::SOAP::SOAPArray,
|
13
|
+
::SOAP::Mapping::Registry::TypedArrayFactory,
|
14
|
+
{ :type => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "string") }
|
15
|
+
)
|
16
|
+
MappingRegistry.set(
|
17
|
+
Category,
|
18
|
+
::SOAP::SOAPStruct,
|
19
|
+
::SOAP::Mapping::Registry::TypedStructFactory,
|
20
|
+
{ :type => XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Category") }
|
21
|
+
)
|
22
|
+
MappingRegistry.set(
|
23
|
+
InfoArray,
|
24
|
+
::SOAP::SOAPArray,
|
25
|
+
::SOAP::Mapping::Registry::TypedArrayFactory,
|
26
|
+
{ :type => XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Info") }
|
27
|
+
)
|
28
|
+
MappingRegistry.set(
|
29
|
+
Info,
|
30
|
+
::SOAP::SOAPStruct,
|
31
|
+
::SOAP::Mapping::Registry::TypedStructFactory,
|
32
|
+
{ :type => XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Info") }
|
33
|
+
)
|
34
|
+
MappingRegistry.set(
|
35
|
+
Product,
|
36
|
+
::SOAP::SOAPStruct,
|
37
|
+
::SOAP::Mapping::Registry::TypedStructFactory,
|
38
|
+
{ :type => XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Product") }
|
39
|
+
)
|
40
|
+
MappingRegistry.set(
|
41
|
+
Owner,
|
42
|
+
::SOAP::SOAPStruct,
|
43
|
+
::SOAP::Mapping::Registry::TypedStructFactory,
|
44
|
+
{ :type => XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Owner") }
|
45
|
+
)
|
46
|
+
|
47
|
+
Methods = [
|
48
|
+
[ XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "getAllListings"),
|
49
|
+
"",
|
50
|
+
"getAllListings",
|
51
|
+
[ ["retval", "return", ["String[]", "http://www.w3.org/2001/XMLSchema", "string"]] ],
|
52
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
53
|
+
:response_style => :rpc, :response_use => :encoded }
|
54
|
+
],
|
55
|
+
[ XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "getProductTree"),
|
56
|
+
"",
|
57
|
+
"getProductTree",
|
58
|
+
[ ["retval", "return", ["Hash", "http://xml.apache.org/xml-soap", "Map"]] ],
|
59
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
60
|
+
:response_style => :rpc, :response_use => :encoded }
|
61
|
+
],
|
62
|
+
[ XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "getInfoFromCategory"),
|
63
|
+
"",
|
64
|
+
"getInfoFromCategory",
|
65
|
+
[ ["in", "category", ["Category", "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Category"]],
|
66
|
+
["retval", "return", ["Info[]", "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Info"]] ],
|
67
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
68
|
+
:response_style => :rpc, :response_use => :encoded }
|
69
|
+
],
|
70
|
+
[ XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "getModifiedInfoSince"),
|
71
|
+
"",
|
72
|
+
"getModifiedInfoSince",
|
73
|
+
[ ["in", "timeInstant", ["::SOAP::SOAPDateTime"]],
|
74
|
+
["retval", "return", ["Info[]", "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Info"]] ],
|
75
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
76
|
+
:response_style => :rpc, :response_use => :encoded }
|
77
|
+
],
|
78
|
+
[ XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "getInfoFromName"),
|
79
|
+
"",
|
80
|
+
"getInfoFromName",
|
81
|
+
[ ["in", "productName", ["::SOAP::SOAPString"]],
|
82
|
+
["retval", "return", ["Info", "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Info"]] ],
|
83
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
84
|
+
:response_style => :rpc, :response_use => :encoded }
|
85
|
+
],
|
86
|
+
[ XSD::QName.new("http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "getInfoFromOwnerId"),
|
87
|
+
"",
|
88
|
+
"getInfoFromOwnerId",
|
89
|
+
[ ["in", "ownerId", ["::SOAP::SOAPInt"]],
|
90
|
+
["retval", "return", ["Info[]", "http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/", "Info"]] ],
|
91
|
+
{ :request_style => :rpc, :request_use => :encoded,
|
92
|
+
:response_style => :rpc, :response_use => :encoded }
|
93
|
+
]
|
94
|
+
]
|
95
|
+
end
|
96
|
+
|
97
|
+
class RAABaseServicePortTypeApp < ::SOAP::RPC::StandaloneServer
|
98
|
+
def initialize(*arg)
|
99
|
+
super(*arg)
|
100
|
+
servant = RAABaseServicePortType.new
|
101
|
+
RAABaseServicePortType::Methods.each do |definitions|
|
102
|
+
opt = definitions.last
|
103
|
+
if opt[:request_style] == :document
|
104
|
+
@router.add_document_operation(servant, *definitions)
|
105
|
+
else
|
106
|
+
@router.add_rpc_operation(servant, *definitions)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
self.mapping_registry = RAABaseServicePortType::MappingRegistry
|
110
|
+
end
|
111
|
+
end
|
112
|
+
|
113
|
+
if $0 == __FILE__
|
114
|
+
# Change listen port.
|
115
|
+
server = RAABaseServicePortTypeApp.new('app', nil, '0.0.0.0', 10080)
|
116
|
+
trap(:INT) do
|
117
|
+
server.shutdown
|
118
|
+
end
|
119
|
+
server.start
|
120
|
+
end
|
@@ -0,0 +1,8 @@
|
|
1
|
+
RAAServant.rb: based on the file which is generated with the following command;
|
2
|
+
bin/wsdl2ruby.rb --wsdl raa.wsdl --servant_skelton --force
|
3
|
+
|
4
|
+
RAAService.rb: generated with the following command;
|
5
|
+
bin/wsdl2ruby.rb --wsdl raa.wsdl --standalone_server_stub --force
|
6
|
+
|
7
|
+
RAA.rb: generated with the following command;
|
8
|
+
bin/wsdl2ruby.rb --wsdl raa.wsdl --classdef --force
|
@@ -0,0 +1,264 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<definitions
|
3
|
+
name="RAA"
|
4
|
+
targetNamespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
5
|
+
xmlns:tns="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
6
|
+
xmlns:txd="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"
|
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:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
|
12
|
+
xmlns:apachesoap="http://xml.apache.org/xml-soap">
|
13
|
+
|
14
|
+
<types>
|
15
|
+
<schema
|
16
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
17
|
+
targetNamespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/">
|
18
|
+
|
19
|
+
<complexType name="Category">
|
20
|
+
<all>
|
21
|
+
<element name="major" type="xsd:string"/>
|
22
|
+
<element name="minor" type="xsd:string"/>
|
23
|
+
</all>
|
24
|
+
</complexType>
|
25
|
+
|
26
|
+
<complexType name="Product">
|
27
|
+
<all>
|
28
|
+
<element name="id" type="xsd:int"/>
|
29
|
+
<element name="name" type="xsd:string"/>
|
30
|
+
<element name="short_description" type="xsd:string"/>
|
31
|
+
<element name="version" type="xsd:string"/>
|
32
|
+
<element name="status" type="xsd:string"/>
|
33
|
+
<element name="homepage" type="xsd:anyURI"/>
|
34
|
+
<element name="download" type="xsd:anyURI"/>
|
35
|
+
<element name="license" type="xsd:string"/>
|
36
|
+
<element name="description" type="xsd:string"/>
|
37
|
+
</all>
|
38
|
+
</complexType>
|
39
|
+
|
40
|
+
<complexType name="Owner">
|
41
|
+
<all>
|
42
|
+
<element name="id" type="xsd:int"/>
|
43
|
+
<element name="email" type="xsd:anyURI"/>
|
44
|
+
<element name="name" type="xsd:string"/>
|
45
|
+
</all>
|
46
|
+
</complexType>
|
47
|
+
|
48
|
+
<complexType name="Info">
|
49
|
+
<all>
|
50
|
+
<element name="category" type="txd:Category"/>
|
51
|
+
<element name="product" type="txd:Product"/>
|
52
|
+
<element name="owner" type="txd:Owner"/>
|
53
|
+
<element name="created" type="xsd:dateTime"/>
|
54
|
+
<element name="updated" type="xsd:dateTime"/>
|
55
|
+
</all>
|
56
|
+
</complexType>
|
57
|
+
|
58
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
59
|
+
<complexType name="InfoArray">
|
60
|
+
<complexContent>
|
61
|
+
<restriction base="soapenc:Array">
|
62
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Info[]"/>
|
63
|
+
</restriction>
|
64
|
+
</complexContent>
|
65
|
+
</complexType>
|
66
|
+
|
67
|
+
<complexType name="StringArray">
|
68
|
+
<complexContent>
|
69
|
+
<restriction base="soapenc:Array">
|
70
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
|
71
|
+
</restriction>
|
72
|
+
</complexContent>
|
73
|
+
</complexType>
|
74
|
+
</schema>
|
75
|
+
|
76
|
+
<!-- type definition for ApacheSOAP's Map -->
|
77
|
+
<schema
|
78
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
79
|
+
targetNamespace="http://xml.apache.org/xml-soap">
|
80
|
+
<complexType name="Map">
|
81
|
+
<sequence>
|
82
|
+
<element name="item" minOccurs="0" maxOccurs="unbounded">
|
83
|
+
<complexType>
|
84
|
+
<sequence>
|
85
|
+
<element name="key" type="xsd:anyType" />
|
86
|
+
<element name="value" type="xsd:anyType" />
|
87
|
+
</sequence>
|
88
|
+
</complexType>
|
89
|
+
</element>
|
90
|
+
</sequence>
|
91
|
+
</complexType>
|
92
|
+
</schema>
|
93
|
+
</types>
|
94
|
+
|
95
|
+
<message name="getAllListingsRequest"/>
|
96
|
+
<message name="getAllListingsResponse">
|
97
|
+
<part name="return" type="txd:StringArray"/>
|
98
|
+
</message>
|
99
|
+
|
100
|
+
<message name="getProductTreeRequest"/>
|
101
|
+
<message name="getProductTreeResponse">
|
102
|
+
<part name="return" type="apachesoap:Map"/>
|
103
|
+
</message>
|
104
|
+
|
105
|
+
<message name="getInfoFromCategoryRequest">
|
106
|
+
<part name="category" type="txd:Category"/>
|
107
|
+
</message>
|
108
|
+
<message name="getInfoFromCategoryResponse">
|
109
|
+
<part name="return" type="txd:InfoArray"/>
|
110
|
+
</message>
|
111
|
+
|
112
|
+
<message name="getModifiedInfoSinceRequest">
|
113
|
+
<part name="timeInstant" type="xsd:dateTime"/>
|
114
|
+
</message>
|
115
|
+
<message name="getModifiedInfoSinceResponse">
|
116
|
+
<part name="return" type="txd:InfoArray"/>
|
117
|
+
</message>
|
118
|
+
|
119
|
+
<message name="getInfoFromNameRequest">
|
120
|
+
<part name="productName" type="xsd:string"/>
|
121
|
+
</message>
|
122
|
+
<message name="getInfoFromNameResponse">
|
123
|
+
<part name="return" type="txd:Info"/>
|
124
|
+
</message>
|
125
|
+
|
126
|
+
<message name="getInfoFromOwnerIdRequest">
|
127
|
+
<part name="ownerId" type="xsd:int"/>
|
128
|
+
</message>
|
129
|
+
<message name="getInfoFromOwnerIdResponse">
|
130
|
+
<part name="return" type="txd:InfoArray"/>
|
131
|
+
</message>
|
132
|
+
|
133
|
+
<portType name="RAABaseServicePortType">
|
134
|
+
<operation name="getAllListings"
|
135
|
+
parameterOrder="">
|
136
|
+
<input message="tns:getAllListingsRequest"/>
|
137
|
+
<output message="tns:getAllListingsResponse"/>
|
138
|
+
</operation>
|
139
|
+
|
140
|
+
<operation name="getProductTree"
|
141
|
+
parameterOrder="">
|
142
|
+
<input message="tns:getProductTreeRequest"/>
|
143
|
+
<output message="tns:getProductTreeResponse"/>
|
144
|
+
</operation>
|
145
|
+
|
146
|
+
<operation name="getInfoFromCategory"
|
147
|
+
parameterOrder="category">
|
148
|
+
<input message="tns:getInfoFromCategoryRequest"/>
|
149
|
+
<output message="tns:getInfoFromCategoryResponse"/>
|
150
|
+
</operation>
|
151
|
+
|
152
|
+
<operation name="getModifiedInfoSince"
|
153
|
+
parameterOrder="timeInstant">
|
154
|
+
<input message="tns:getModifiedInfoSinceRequest"/>
|
155
|
+
<output message="tns:getModifiedInfoSinceResponse"/>
|
156
|
+
</operation>
|
157
|
+
|
158
|
+
<operation name="getInfoFromName"
|
159
|
+
parameterOrder="productName">
|
160
|
+
<input message="tns:getInfoFromNameRequest"/>
|
161
|
+
<output message="tns:getInfoFromNameResponse"/>
|
162
|
+
</operation>
|
163
|
+
|
164
|
+
<operation name="getInfoFromOwnerId"
|
165
|
+
parameterOrder="ownerId">
|
166
|
+
<input message="tns:getInfoFromOwnerIdRequest"/>
|
167
|
+
<output message="tns:getInfoFromOwnerIdResponse"/>
|
168
|
+
</operation>
|
169
|
+
</portType>
|
170
|
+
|
171
|
+
<binding name="RAABaseServicePortBinding" type="tns:RAABaseServicePortType">
|
172
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
173
|
+
|
174
|
+
<operation name="getAllListings">
|
175
|
+
<soap:operation soapAction=""/>
|
176
|
+
<input>
|
177
|
+
<soap:body use="encoded"
|
178
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
179
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
180
|
+
</input>
|
181
|
+
<output>
|
182
|
+
<soap:body use="encoded"
|
183
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
184
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
185
|
+
</output>
|
186
|
+
</operation>
|
187
|
+
|
188
|
+
<operation name="getProductTree">
|
189
|
+
<soap:operation soapAction=""/>
|
190
|
+
<input>
|
191
|
+
<soap:body use="encoded"
|
192
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
193
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
194
|
+
</input>
|
195
|
+
<output>
|
196
|
+
<soap:body use="encoded"
|
197
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
198
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
199
|
+
</output>
|
200
|
+
</operation>
|
201
|
+
|
202
|
+
<operation name="getInfoFromCategory">
|
203
|
+
<soap:operation soapAction=""/>
|
204
|
+
<input>
|
205
|
+
<soap:body use="encoded"
|
206
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
207
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
208
|
+
</input>
|
209
|
+
<output>
|
210
|
+
<soap:body use="encoded"
|
211
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
212
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
213
|
+
</output>
|
214
|
+
</operation>
|
215
|
+
|
216
|
+
<operation name="getModifiedInfoSince">
|
217
|
+
<soap:operation soapAction=""/>
|
218
|
+
<input>
|
219
|
+
<soap:body use="encoded"
|
220
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
221
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
222
|
+
</input>
|
223
|
+
<output>
|
224
|
+
<soap:body use="encoded"
|
225
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
226
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
227
|
+
</output>
|
228
|
+
</operation>
|
229
|
+
|
230
|
+
<operation name="getInfoFromName">
|
231
|
+
<soap:operation soapAction=""/>
|
232
|
+
<input>
|
233
|
+
<soap:body use="encoded"
|
234
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
235
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
236
|
+
</input>
|
237
|
+
<output>
|
238
|
+
<soap:body use="encoded"
|
239
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
240
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
241
|
+
</output>
|
242
|
+
</operation>
|
243
|
+
|
244
|
+
<operation name="getInfoFromOwnerId">
|
245
|
+
<soap:operation soapAction=""/>
|
246
|
+
<input>
|
247
|
+
<soap:body use="encoded"
|
248
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
249
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
250
|
+
</input>
|
251
|
+
<output>
|
252
|
+
<soap:body use="encoded"
|
253
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
254
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.2/"/>
|
255
|
+
</output>
|
256
|
+
</operation>
|
257
|
+
</binding>
|
258
|
+
|
259
|
+
<service name="RAAService">
|
260
|
+
<port name="RAABaseServicePort" binding="tns:RAABaseServicePortBinding">
|
261
|
+
<soap:address location="http://raa.ruby-lang.org/soap/1.0.2/"/>
|
262
|
+
</port>
|
263
|
+
</service>
|
264
|
+
</definitions>
|