soap4r-ruby1.9 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +7 -0
- data/GPL +340 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +20 -0
- data/README.rdoc +35 -0
- data/RELEASE_en.html +1900 -0
- data/RUBYS +56 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/bin/wsdl2ruby.rb +137 -0
- data/bin/xsd2ruby.rb +90 -0
- data/lib/soap/attachment.rb +108 -0
- data/lib/soap/attrproxy.rb +34 -0
- data/lib/soap/baseData.rb +1094 -0
- data/lib/soap/element.rb +277 -0
- data/lib/soap/encodingstyle/aspDotNetHandler.rb +207 -0
- data/lib/soap/encodingstyle/handler.rb +120 -0
- data/lib/soap/encodingstyle/literalHandler.rb +195 -0
- data/lib/soap/encodingstyle/soapHandler.rb +559 -0
- data/lib/soap/filter.rb +13 -0
- data/lib/soap/filter/filterchain.rb +51 -0
- data/lib/soap/filter/handler.rb +31 -0
- data/lib/soap/filter/streamhandler.rb +29 -0
- data/lib/soap/generator.rb +299 -0
- data/lib/soap/header/handler.rb +61 -0
- data/lib/soap/header/handlerset.rb +70 -0
- data/lib/soap/header/mappinghandler.rb +47 -0
- data/lib/soap/header/simplehandler.rb +44 -0
- data/lib/soap/httpconfigloader.rb +139 -0
- data/lib/soap/mapping.rb +12 -0
- data/lib/soap/mapping/encodedregistry.rb +537 -0
- data/lib/soap/mapping/factory.rb +388 -0
- data/lib/soap/mapping/literalregistry.rb +391 -0
- data/lib/soap/mapping/mapping.rb +577 -0
- data/lib/soap/mapping/registry.rb +295 -0
- data/lib/soap/mapping/rubytypeFactory.rb +446 -0
- data/lib/soap/mapping/schemadefinition.rb +170 -0
- data/lib/soap/mapping/typeMap.rb +105 -0
- data/lib/soap/mapping/wsdlencodedregistry.rb +211 -0
- data/lib/soap/mapping/wsdlliteralregistry.rb +248 -0
- data/lib/soap/marshal.rb +59 -0
- data/lib/soap/mimemessage.rb +241 -0
- data/lib/soap/nestedexception.rb +42 -0
- data/lib/soap/netHttpClient.rb +241 -0
- data/lib/soap/ns.rb +34 -0
- data/lib/soap/parser.rb +252 -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/rpc/cgistub.rb +247 -0
- data/lib/soap/rpc/driver.rb +221 -0
- data/lib/soap/rpc/element.rb +374 -0
- data/lib/soap/rpc/element.rb.orig +374 -0
- data/lib/soap/rpc/httpserver.rb +142 -0
- data/lib/soap/rpc/methodDef.rb +68 -0
- data/lib/soap/rpc/proxy.rb +572 -0
- data/lib/soap/rpc/router.rb +662 -0
- data/lib/soap/rpc/rpc.rb +25 -0
- data/lib/soap/rpc/soaplet.rb +200 -0
- data/lib/soap/rpc/standaloneServer.rb +43 -0
- data/lib/soap/ruby18ext.rb +13 -0
- data/lib/soap/soap.rb +151 -0
- data/lib/soap/streamHandler.rb +301 -0
- data/lib/soap/wsdlDriver.rb +164 -0
- data/lib/wsdl/binding.rb +65 -0
- data/lib/wsdl/data.rb +64 -0
- data/lib/wsdl/definitions.rb +236 -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 +50 -0
- data/lib/wsdl/message.rb +54 -0
- data/lib/wsdl/operation.rb +151 -0
- data/lib/wsdl/operationBinding.rb +240 -0
- data/lib/wsdl/param.rb +93 -0
- data/lib/wsdl/parser.rb +164 -0
- data/lib/wsdl/part.rb +52 -0
- data/lib/wsdl/port.rb +66 -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 +58 -0
- data/lib/wsdl/soap/cgiStubCreator.rb +92 -0
- data/lib/wsdl/soap/classDefCreator.rb +433 -0
- data/lib/wsdl/soap/classDefCreatorSupport.rb +240 -0
- data/lib/wsdl/soap/classNameCreator.rb +54 -0
- data/lib/wsdl/soap/clientSkeltonCreator.rb +104 -0
- data/lib/wsdl/soap/complexType.rb +173 -0
- data/lib/wsdl/soap/data.rb +42 -0
- data/lib/wsdl/soap/definitions.rb +200 -0
- data/lib/wsdl/soap/driverCreator.rb +118 -0
- data/lib/wsdl/soap/element.rb +33 -0
- data/lib/wsdl/soap/encodedMappingRegistryCreator.rb +73 -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 +115 -0
- data/lib/wsdl/soap/mappingRegistryCreator.rb +58 -0
- data/lib/wsdl/soap/mappingRegistryCreatorSupport.rb +376 -0
- data/lib/wsdl/soap/methodDefCreator.rb +199 -0
- data/lib/wsdl/soap/operation.rb +112 -0
- data/lib/wsdl/soap/servantSkeltonCreator.rb +89 -0
- data/lib/wsdl/soap/servletStubCreator.rb +104 -0
- data/lib/wsdl/soap/standaloneServerStubCreator.rb +100 -0
- data/lib/wsdl/soap/wsdl2ruby.rb +217 -0
- data/lib/wsdl/types.rb +44 -0
- data/lib/wsdl/wsdl.rb +24 -0
- data/lib/wsdl/xmlSchema/all.rb +24 -0
- data/lib/wsdl/xmlSchema/annotation.rb +34 -0
- data/lib/wsdl/xmlSchema/any.rb +61 -0
- data/lib/wsdl/xmlSchema/anyAttribute.rb +48 -0
- data/lib/wsdl/xmlSchema/attribute.rb +104 -0
- data/lib/wsdl/xmlSchema/attributeGroup.rb +68 -0
- data/lib/wsdl/xmlSchema/choice.rb +58 -0
- data/lib/wsdl/xmlSchema/complexContent.rb +97 -0
- data/lib/wsdl/xmlSchema/complexExtension.rb +119 -0
- data/lib/wsdl/xmlSchema/complexRestriction.rb +104 -0
- data/lib/wsdl/xmlSchema/complexType.rb +193 -0
- data/lib/wsdl/xmlSchema/content.rb +95 -0
- data/lib/wsdl/xmlSchema/data.rb +116 -0
- data/lib/wsdl/xmlSchema/element.rb +153 -0
- data/lib/wsdl/xmlSchema/enumeration.rb +36 -0
- data/lib/wsdl/xmlSchema/fractiondigits.rb +37 -0
- data/lib/wsdl/xmlSchema/group.rb +100 -0
- data/lib/wsdl/xmlSchema/import.rb +53 -0
- data/lib/wsdl/xmlSchema/importHandler.rb +45 -0
- data/lib/wsdl/xmlSchema/importer.rb +102 -0
- data/lib/wsdl/xmlSchema/include.rb +48 -0
- data/lib/wsdl/xmlSchema/length.rb +37 -0
- data/lib/wsdl/xmlSchema/list.rb +48 -0
- data/lib/wsdl/xmlSchema/maxexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxinclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/maxlength.rb +37 -0
- data/lib/wsdl/xmlSchema/minexclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/mininclusive.rb +37 -0
- data/lib/wsdl/xmlSchema/minlength.rb +37 -0
- data/lib/wsdl/xmlSchema/parser.rb +167 -0
- data/lib/wsdl/xmlSchema/pattern.rb +36 -0
- data/lib/wsdl/xmlSchema/ref.rb +33 -0
- data/lib/wsdl/xmlSchema/schema.rb +178 -0
- data/lib/wsdl/xmlSchema/sequence.rb +54 -0
- data/lib/wsdl/xmlSchema/simpleContent.rb +69 -0
- data/lib/wsdl/xmlSchema/simpleExtension.rb +62 -0
- data/lib/wsdl/xmlSchema/simpleRestriction.rb +132 -0
- data/lib/wsdl/xmlSchema/simpleType.rb +87 -0
- data/lib/wsdl/xmlSchema/totaldigits.rb +37 -0
- data/lib/wsdl/xmlSchema/union.rb +35 -0
- data/lib/wsdl/xmlSchema/unique.rb +34 -0
- data/lib/wsdl/xmlSchema/whitespace.rb +37 -0
- data/lib/wsdl/xmlSchema/xsd2ruby.rb +174 -0
- data/lib/xsd/charset.rb +188 -0
- data/lib/xsd/codegen.rb +12 -0
- data/lib/xsd/codegen/classdef.rb +208 -0
- data/lib/xsd/codegen/commentdef.rb +34 -0
- data/lib/xsd/codegen/gensupport.rb +273 -0
- data/lib/xsd/codegen/methoddef.rb +70 -0
- data/lib/xsd/codegen/moduledef.rb +208 -0
- data/lib/xsd/datatypes.rb +1466 -0
- data/lib/xsd/datatypes1999.rb +20 -0
- data/lib/xsd/iconvcharset.rb +33 -0
- data/lib/xsd/mapping.rb +68 -0
- data/lib/xsd/namedelements.rb +132 -0
- data/lib/xsd/ns.rb +182 -0
- data/lib/xsd/qname.rb +79 -0
- data/lib/xsd/xmlparser.rb +82 -0
- data/lib/xsd/xmlparser.rb.orig +76 -0
- data/lib/xsd/xmlparser/libxmlparser.rb +119 -0
- data/lib/xsd/xmlparser/parser.rb +100 -0
- data/lib/xsd/xmlparser/rexmlparser.rb +58 -0
- data/lib/xsd/xmlparser/xmlparser.rb +50 -0
- data/lib/xsd/xmlparser/xmlscanner.rb +149 -0
- data/rubyStyle.css +104 -0
- data/sample/attachment/complexmime/EdmService.rb +124 -0
- data/sample/attachment/complexmime/README.txt +3 -0
- data/sample/attachment/complexmime/client.rb +57 -0
- data/sample/attachment/complexmime/drift.cdf +1 -0
- data/sample/attachment/complexmime/plaatje.png +1 -0
- data/sample/attachment/complexmime/server.rb +68 -0
- data/sample/attachment/swa/client.rb +13 -0
- data/sample/attachment/swa/server.rb +23 -0
- data/sample/basic/apacheClient.rb +92 -0
- data/sample/basic/babelfish.rb +16 -0
- data/sample/basic/calc/calc.rb +17 -0
- data/sample/basic/calc/calc2.rb +29 -0
- data/sample/basic/calc/client.rb +26 -0
- data/sample/basic/calc/client2.rb +29 -0
- data/sample/basic/calc/httpd.rb +20 -0
- data/sample/basic/calc/samplehttpd.conf +2 -0
- data/sample/basic/calc/server.cgi +15 -0
- data/sample/basic/calc/server.fcgi +22 -0
- data/sample/basic/calc/server.rb +21 -0
- data/sample/basic/calc/server2.rb +24 -0
- data/sample/basic/exchange/client.rb +19 -0
- data/sample/basic/exchange/exchange.rb +17 -0
- data/sample/basic/exchange/httpd.rb +20 -0
- data/sample/basic/exchange/samplehttpd.conf +2 -0
- data/sample/basic/exchange/server.cgi +14 -0
- data/sample/basic/exchange/server.rb +20 -0
- data/sample/basic/flickr.rb +26 -0
- data/sample/basic/helloworld/client.rb +6 -0
- data/sample/basic/helloworld/server.rb +20 -0
- data/sample/basic/sampleStruct/client.rb +16 -0
- data/sample/basic/sampleStruct/httpd.rb +20 -0
- data/sample/basic/sampleStruct/iSampleStruct.rb +22 -0
- data/sample/basic/sampleStruct/sampleStruct.rb +13 -0
- data/sample/basic/sampleStruct/samplehttpd.conf +2 -0
- data/sample/basic/sampleStruct/server.cgi +14 -0
- data/sample/basic/sampleStruct/server.rb +20 -0
- data/sample/basic/whois.rb +14 -0
- data/sample/basic/wsdl_helloworld/README +15 -0
- data/sample/basic/wsdl_helloworld/client/default.rb +1 -0
- data/sample/basic/wsdl_helloworld/client/defaultDriver.rb +47 -0
- data/sample/basic/wsdl_helloworld/client/hws.wsdl +46 -0
- data/sample/basic/wsdl_helloworld/client/hwsClient.rb +22 -0
- data/sample/basic/wsdl_helloworld/server/hw_s.rb +25 -0
- data/sample/basic/wsdl_helloworld/server/hws.wsdl +46 -0
- data/sample/basic/yahooNewsSearch.rb +36 -0
- data/sample/howto/as_xml/client.rb +22 -0
- data/sample/howto/as_xml/server.rb +22 -0
- data/sample/howto/base64/client.rb +17 -0
- data/sample/howto/base64/server.rb +30 -0
- data/sample/howto/custom_ns/client.rb +37 -0
- data/sample/howto/custom_ns/server.rb +42 -0
- data/sample/howto/documentliteral/README.txt +19 -0
- data/sample/howto/documentliteral/client.rb +11 -0
- data/sample/howto/documentliteral/echo.wsdl +66 -0
- data/sample/howto/documentliteral/servant.rb +11 -0
- data/sample/howto/filter/client.rb +42 -0
- data/sample/howto/filter/server.rb +67 -0
- data/sample/howto/scopesample/client.rb +34 -0
- data/sample/howto/scopesample/httpd.rb +22 -0
- data/sample/howto/scopesample/samplehttpd.conf +2 -0
- data/sample/howto/scopesample/servant.rb +18 -0
- data/sample/howto/scopesample/server.cgi +29 -0
- data/sample/howto/scopesample/server.rb +20 -0
- data/sample/howto/styleuse/client.rb +21 -0
- data/sample/howto/styleuse/server.rb +86 -0
- data/sample/howto/wsdl_fault/README.txt +11 -0
- data/sample/howto/wsdl_fault/fault/AddClient.rb +24 -0
- data/sample/howto/wsdl_fault/fault/AddServer.rb +15 -0
- data/sample/howto/wsdl_fault/fault/AddServiceImpl.rb +18 -0
- data/sample/howto/wsdl_fault/fault/fault.wsdl +79 -0
- data/sample/howto/wsdl_fault/multifault/AddClient.rb +28 -0
- data/sample/howto/wsdl_fault/multifault/AddServer.rb +15 -0
- data/sample/howto/wsdl_fault/multifault/AddServiceImpl.rb +24 -0
- data/sample/howto/wsdl_fault/multifault/fault.wsdl +96 -0
- data/sample/howto/wsdl_hash/client.rb +11 -0
- data/sample/howto/wsdl_hash/hash.wsdl +69 -0
- data/sample/howto/wsdl_hash/server.rb +17 -0
- data/sample/marshal/customfactory.rb +97 -0
- data/sample/marshal/customregistry.rb +17 -0
- data/sample/marshal/digraph.rb +43 -0
- data/sample/marshal/enum/README.txt +6 -0
- data/sample/marshal/enum/enum.xsd +23 -0
- data/sample/marshal/enum/enumsample.rb +20 -0
- data/sample/marshal/enum/enumsample_mapper.rb +7 -0
- data/sample/marshal/enum/enumsample_mapping_registry.rb +23 -0
- data/sample/marshal/enum/marshal.rb +9 -0
- data/sample/payload/basicauth/client.rb +10 -0
- data/sample/payload/basicauth/htpasswd +2 -0
- data/sample/payload/basicauth/server.rb +43 -0
- data/sample/payload/cookies/calc.rb +52 -0
- data/sample/payload/cookies/client.rb +30 -0
- data/sample/payload/cookies/filterclient.rb +52 -0
- data/sample/payload/cookies/server.rb +24 -0
- data/sample/payload/gzipped/client.rb +8 -0
- data/sample/payload/gzipped/server.rb +21 -0
- data/sample/payload/ssl/files/README +1 -0
- data/sample/payload/ssl/files/ca.cert +23 -0
- data/sample/payload/ssl/files/client.cert +19 -0
- data/sample/payload/ssl/files/client.key +15 -0
- data/sample/payload/ssl/files/server.cert +19 -0
- data/sample/payload/ssl/files/server.key +15 -0
- data/sample/payload/ssl/files/sslclient.properties +5 -0
- data/sample/payload/ssl/files/sslclient_require_noserverauth.properties +2 -0
- data/sample/payload/ssl/files/sslclient_with_clientauth.properties +9 -0
- data/sample/payload/ssl/files/subca.cert +21 -0
- data/sample/payload/ssl/sslclient.rb +12 -0
- data/sample/payload/ssl/sslclient_require_noserverauth.rb +12 -0
- data/sample/payload/ssl/sslclient_with_clientauth.rb +12 -0
- data/sample/payload/ssl/sslserver.rb +49 -0
- data/sample/payload/ssl/sslserver_noauth.rb +45 -0
- data/sample/payload/ssl/sslserver_require_clientauth.rb +50 -0
- data/sample/showcase/soap/hippo5tq/hippo5tq.rb +41 -0
- data/sample/showcase/soap/hippo5tq/hippo5tq2.rb +99 -0
- data/sample/showcase/soap/hippo5tq/hippoClient.rb +106 -0
- data/sample/showcase/soap/icd/IICD.rb +17 -0
- data/sample/showcase/soap/icd/icd.rb +46 -0
- data/sample/showcase/soap/mssoap/README.txt +62 -0
- data/sample/showcase/soap/mssoap/client.vba +19 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.cgi +44 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.rb +9 -0
- data/sample/showcase/soap/mssoap/stockQuoteService.wsdl +47 -0
- data/sample/showcase/soap/mssoap/stockQuoteServiceClient.rb +26 -0
- data/sample/showcase/soap/mssoap/stockQuoteServiceClient.xls +0 -0
- data/sample/showcase/soap/mssoap/stockQuoteServicePortTypeDriver.rb +46 -0
- data/sample/showcase/soap/netDicV06/INetDicV06.rb +36 -0
- data/sample/showcase/soap/netDicV06/netDicV06.rb +16 -0
- data/sample/showcase/soap/raa/SOAP__Lite.pl +15 -0
- data/sample/showcase/soap/raa/pocketSOAP.js +33 -0
- data/sample/showcase/soap/raa2.4/raa.rb +332 -0
- data/sample/showcase/soap/raa2.4/raa.wsdl +644 -0
- data/sample/showcase/soap/raa2.4/raaDriver.rb +255 -0
- data/sample/showcase/soap/raa2.4/raaServiceClient.rb +354 -0
- data/sample/showcase/soap/raa2.4/sample.rb +115 -0
- data/sample/showcase/soap/rwiki/rwikiClient.rb +29 -0
- data/sample/showcase/soap/rwiki/rwikiServer.cgi +44 -0
- data/sample/showcase/soap/soapbox/ContactsDataSet.xml +37 -0
- data/sample/showcase/soap/soapbox/ExceptionDataSet.xml +23 -0
- data/sample/showcase/soap/soapbox/MessageDataSet.xml +8 -0
- data/sample/showcase/soap/soapbox/SoapBoxWebService.wsdl +1233 -0
- data/sample/showcase/soap/soapbox/SoapBoxWebServiceWithRawXML.wsdl +1226 -0
- data/sample/showcase/soap/soapbox/wsdlDriver.rb +23 -0
- data/sample/showcase/wsdl/PayPalSvc/client.rb +36 -0
- data/sample/showcase/wsdl/amazon/AmazonSearch.rb +3160 -0
- data/sample/showcase/wsdl/amazon/AmazonSearchDriver.rb +546 -0
- data/sample/showcase/wsdl/amazon/sampleClient.rb +37 -0
- data/sample/showcase/wsdl/amazon/wsdlDriver.rb +52 -0
- data/sample/showcase/wsdl/amazonEC/client.rb +13 -0
- data/sample/showcase/wsdl/eBaySvc/sampleclient.rb +60 -0
- data/sample/showcase/wsdl/googleAdwords/CampaignService.wsdl +785 -0
- data/sample/showcase/wsdl/googleAdwords/ca.pem +19 -0
- data/sample/showcase/wsdl/googleAdwords/client.rb +40 -0
- data/sample/showcase/wsdl/googleAdwords/soap/property +1 -0
- data/sample/showcase/wsdl/googleSearch/GoogleSearch.rb +97 -0
- data/sample/showcase/wsdl/googleSearch/GoogleSearchDriver.rb +102 -0
- data/sample/showcase/wsdl/googleSearch/README +6 -0
- data/sample/showcase/wsdl/googleSearch/httpd.rb +20 -0
- data/sample/showcase/wsdl/googleSearch/sampleClient.rb +56 -0
- data/sample/showcase/wsdl/googleSearch/samplehttpd.conf +2 -0
- data/sample/showcase/wsdl/googleSearch/sjissearch.sh +3 -0
- data/sample/showcase/wsdl/googleSearch/wsdlDriver.rb +29 -0
- data/sample/showcase/wsdl/noaa/README.txt +5 -0
- data/sample/showcase/wsdl/noaa/client.rb +44 -0
- data/sample/showcase/wsdl/noaa/default.rb +46 -0
- data/sample/showcase/wsdl/noaa/defaultDriver.rb +66 -0
- data/sample/showcase/wsdl/noaa/defaultMappingRegistry.rb +74 -0
- data/sample/showcase/wsdl/noaa/ndfdXMLClient.rb +43 -0
- data/sample/showcase/wsdl/raa2.4/raa.rb +134 -0
- data/sample/showcase/wsdl/raa2.4/raa.wsdl +644 -0
- data/sample/showcase/wsdl/raa2.4/wsdlDriver.rb +117 -0
- data/sample/showcase/wsdl/rnn/client.rb +59 -0
- data/sample/showcase/wsdl/rnn/post.rb +27 -0
- data/sample/showcase/wsdl/rnn/rnn-hash.wsdl +282 -0
- data/sample/showcase/wsdl/rnn/rnn.wsdl +310 -0
- data/sample/showcase/wsdl/rnn/submit.rb +63 -0
- data/sample/showcase/wsdl/salesforce/SforceServiceClient.rb +280 -0
- data/sample/showcase/wsdl/salesforce/ca.pem +35 -0
- data/sample/showcase/wsdl/salesforce/client.rb +156 -0
- data/sample/showcase/wsdl/salesforce/default.rb +1740 -0
- data/sample/showcase/wsdl/salesforce/defaultDriver.rb +165 -0
- data/sample/showcase/wsdl/salesforce/soap/property +1 -0
- data/sample/soapheader/authheader/authmgr.rb +41 -0
- data/sample/soapheader/authheader/client.rb +40 -0
- data/sample/soapheader/authheader/client2.rb +42 -0
- data/sample/soapheader/authheader/server.rb +73 -0
- data/sample/soapheader/authheader/server2.rb +83 -0
- data/sample/soapheader/soapext_basicauth/client.rb +25 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGIS.rb +701 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGIS.wsdl +1007 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISClient.rb +231 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISDriver.rb +210 -0
- data/sample/soapheader/soapext_basicauth/mms_MizGISMappingRegistry.rb +1232 -0
- data/setup.rb +1585 -0
- data/soap4r-ruby1.9.gemspec +907 -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.rb +1234 -0
- data/test/interopR2/client4S4C.rb +15 -0
- data/test/interopR2/client4S4C2.rb +14 -0
- data/test/interopR2/clientASP.NET.rb +17 -0
- data/test/interopR2/clientApacheAxis.rb +16 -0
- data/test/interopR2/clientApacheSOAP.rb +17 -0
- data/test/interopR2/clientBEAWebLogic.rb +17 -0
- data/test/interopR2/clientBase.rb +1967 -0
- data/test/interopR2/clientCapeConnect.rb +18 -0
- data/test/interopR2/clientDelphi.rb +19 -0
- data/test/interopR2/clientEasySoap.rb +14 -0
- data/test/interopR2/clientFrontier.rb +25 -0
- data/test/interopR2/clientGLUE.rb +32 -0
- data/test/interopR2/clientHP.rb +13 -0
- data/test/interopR2/clientJAX-RPC.rb +19 -0
- data/test/interopR2/clientJSOAP.rb +14 -0
- data/test/interopR2/clientKafkaXSLT.rb +15 -0
- data/test/interopR2/clientMSSOAPToolkit2.0.rb +17 -0
- data/test/interopR2/clientMSSOAPToolkit3.0.rb +17 -0
- data/test/interopR2/clientNuSOAP.rb +19 -0
- data/test/interopR2/clientNuWave.rb +15 -0
- data/test/interopR2/clientOpenLink.rb +15 -0
- data/test/interopR2/clientOracle.rb +15 -0
- data/test/interopR2/clientPEAR.rb +18 -0
- data/test/interopR2/clientPhalanx.rb +18 -0
- data/test/interopR2/clientSIMACE.rb +18 -0
- data/test/interopR2/clientSOAP4R.rb +18 -0
- data/test/interopR2/clientSOAP__Lite.rb +14 -0
- data/test/interopR2/clientSQLData.rb +18 -0
- data/test/interopR2/clientSilverStream.rb +17 -0
- data/test/interopR2/clientSpray2001.rb +17 -0
- data/test/interopR2/clientSun.rb +19 -0
- data/test/interopR2/clientVWOpentalkSoap.rb +19 -0
- data/test/interopR2/clientWASP.rb +19 -0
- data/test/interopR2/clientWASPC.rb +18 -0
- data/test/interopR2/clientWebMethods.rb +15 -0
- data/test/interopR2/clientWhiteMesa.rb +28 -0
- data/test/interopR2/clientWingfoot.rb +15 -0
- data/test/interopR2/clientXMLBus.rb +19 -0
- data/test/interopR2/clientXMLRPC-EPI.rb +17 -0
- data/test/interopR2/clientXSOAP.rb +14 -0
- data/test/interopR2/clientZSI.rb +19 -0
- data/test/interopR2/clienteSOAP.rb +18 -0
- data/test/interopR2/clientgSOAP.rb +18 -0
- data/test/interopR2/clientkSOAP.rb +17 -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/rwikiInteropService.rb +105 -0
- data/test/interopR2/server.cgi +270 -0
- data/test/interopR2/server.rb +275 -0
- data/test/interopR2/simonReg.rb +123 -0
- data/test/interopR2/test.sh +49 -0
- data/test/interopR4/client.rb +112 -0
- data/test/results +4810 -0
- data/test/runner.rb +7 -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 +123 -0
- data/test/soap/auth/htdigest +2 -0
- data/test/soap/auth/htpasswd +2 -0
- data/test/soap/auth/test_basic.rb +117 -0
- data/test/soap/auth/test_digest.rb +118 -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 +51 -0
- data/test/soap/calc/test_calc2.rb +55 -0
- data/test/soap/calc/test_calc_cgi.rb +71 -0
- data/test/soap/case/test_mapping.rb +57 -0
- data/test/soap/fault/test_customfault.rb +60 -0
- data/test/soap/fault/test_fault.rb +46 -0
- data/test/soap/fault/test_soaparray.rb +35 -0
- data/test/soap/filter/test_filter.rb +146 -0
- data/test/soap/header/server.cgi +119 -0
- data/test/soap/header/session.pstoredb +0 -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 +43 -0
- data/test/soap/htpasswd +2 -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 +34 -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 +235 -0
- data/test/soap/struct/test_struct.rb +70 -0
- data/test/soap/styleuse/client.rb +20 -0
- data/test/soap/styleuse/server.rb +86 -0
- data/test/soap/swa/test_file.rb +75 -0
- data/test/soap/test_basetype.rb +1090 -0
- data/test/soap/test_cookie.rb +112 -0
- data/test/soap/test_custom_ns.rb +105 -0
- data/test/soap/test_custommap.rb +110 -0
- data/test/soap/test_empty.rb +105 -0
- data/test/soap/test_envelopenamespace.rb +85 -0
- data/test/soap/test_extraattr.rb +54 -0
- data/test/soap/test_generator.rb +27 -0
- data/test/soap/test_httpconfigloader.rb +71 -0
- data/test/soap/test_mapping.rb +131 -0
- data/test/soap/test_nestedexception.rb +56 -0
- data/test/soap/test_nil.rb +57 -0
- data/test/soap/test_no_indent.rb +88 -0
- data/test/soap/test_property.rb +428 -0
- data/test/soap/test_response_as_xml.rb +117 -0
- data/test/soap/test_soapelement.rb +138 -0
- data/test/soap/test_streamhandler.rb +270 -0
- data/test/soap/test_styleuse.rb +326 -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 +71 -0
- data/test/soap/wsdlDriver/test_document.rb +71 -0
- data/test/soap/wsdlDriver/test_simpletype.rb +80 -0
- data/test/testutil.rb +54 -0
- data/test/wsdl/abstract/abstract.wsdl +176 -0
- data/test/wsdl/abstract/test_abstract.rb +159 -0
- data/test/wsdl/anonymous/expectedClassDef.rb +128 -0
- data/test/wsdl/anonymous/expectedDriver.rb +59 -0
- data/test/wsdl/anonymous/expectedMappingRegistry.rb +176 -0
- data/test/wsdl/anonymous/lp.wsdl +147 -0
- data/test/wsdl/anonymous/test_anonymous.rb +130 -0
- data/test/wsdl/any/any.wsdl +114 -0
- data/test/wsdl/any/expectedDriver.rb +68 -0
- data/test/wsdl/any/expectedEcho.rb +57 -0
- data/test/wsdl/any/expectedMappingRegistry.rb +63 -0
- data/test/wsdl/any/expectedService.rb +69 -0
- data/test/wsdl/any/test_any.rb +193 -0
- data/test/wsdl/axisArray/axisArray.wsdl +87 -0
- data/test/wsdl/axisArray/test_axisarray.rb +124 -0
- data/test/wsdl/choice/choice.wsdl +167 -0
- data/test/wsdl/choice/test_choice.rb +310 -0
- data/test/wsdl/complexcontent/complexContent.wsdl +83 -0
- data/test/wsdl/complexcontent/test_echo.rb +90 -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 +22 -0
- data/test/wsdl/datetime/test_datetime.rb +86 -0
- data/test/wsdl/document/array/double.wsdl +161 -0
- data/test/wsdl/document/array/test_array.rb +201 -0
- data/test/wsdl/document/document.wsdl +76 -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 +102 -0
- data/test/wsdl/document/test_number.rb +92 -0
- data/test/wsdl/document/test_rpc.rb +355 -0
- data/test/wsdl/emptycomplextype.wsdl +31 -0
- data/test/wsdl/fault/fault.wsdl +79 -0
- data/test/wsdl/fault/multifault.wsdl +96 -0
- data/test/wsdl/fault/test_fault.rb +119 -0
- data/test/wsdl/fault/test_multifault.rb +134 -0
- data/test/wsdl/group/expectedClassdef.rb +58 -0
- data/test/wsdl/group/expectedDriver.rb +51 -0
- data/test/wsdl/group/expectedMappingRegistry.rb +67 -0
- data/test/wsdl/group/group.wsdl +88 -0
- data/test/wsdl/group/test_rpc.rb +145 -0
- data/test/wsdl/list/list.wsdl +93 -0
- data/test/wsdl/list/test_list.rb +124 -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.rb +1 -0
- data/test/wsdl/marshal/person.wsdl +21 -0
- data/test/wsdl/marshal/person_org.rb +23 -0
- data/test/wsdl/marshal/test_wsdlmarshal.rb +76 -0
- data/test/wsdl/multiplefault.wsdl +75 -0
- data/test/wsdl/oneway/oneway.wsdl +36 -0
- data/test/wsdl/oneway/test_oneway.rb +108 -0
- data/test/wsdl/overload/expectedClient.rb +37 -0
- data/test/wsdl/overload/expectedDriver.rb +61 -0
- data/test/wsdl/overload/expectedServant.rb +35 -0
- data/test/wsdl/overload/overload.wsdl +70 -0
- data/test/wsdl/overload/test_overload.rb +131 -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 +137 -0
- data/test/wsdl/qualified/test_unqualified.rb +138 -0
- data/test/wsdl/raa/RAAService.rb +125 -0
- data/test/wsdl/raa/README.txt +8 -0
- data/test/wsdl/raa/expectedClassDef.rb +100 -0
- data/test/wsdl/raa/expectedDriver.rb +96 -0
- data/test/wsdl/raa/expectedMappingRegistry.rb +121 -0
- data/test/wsdl/raa/raa.wsdl +264 -0
- data/test/wsdl/raa/test_raa.rb +126 -0
- data/test/wsdl/ref/expectedDriver.rb +51 -0
- data/test/wsdl/ref/expectedProduct.rb +243 -0
- data/test/wsdl/ref/product.wsdl +147 -0
- data/test/wsdl/ref/test_ref.rb +268 -0
- data/test/wsdl/rpc/rpc.wsdl +109 -0
- data/test/wsdl/rpc/test-rpc-lit.wsdl +371 -0
- data/test/wsdl/rpc/test_rpc.rb +176 -0
- data/test/wsdl/rpc/test_rpc_lit.rb +470 -0
- data/test/wsdl/simplecontent/simplecontent.wsdl +84 -0
- data/test/wsdl/simplecontent/test_simplecontent.rb +102 -0
- data/test/wsdl/simpletype/rpc/echo_version.rb +1 -0
- data/test/wsdl/simpletype/rpc/echo_versionDriver.rb +10 -0
- data/test/wsdl/simpletype/rpc/echo_versionMappingRegistry.rb +4 -0
- data/test/wsdl/simpletype/rpc/echo_versionServant.rb +3 -0
- data/test/wsdl/simpletype/rpc/echo_version_service.rb +3 -0
- data/test/wsdl/simpletype/rpc/echo_version_serviceClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedClient.rb +34 -0
- data/test/wsdl/simpletype/rpc/expectedDriver.rb +58 -0
- data/test/wsdl/simpletype/rpc/expectedEchoVersion.rb +36 -0
- data/test/wsdl/simpletype/rpc/expectedMappingRegistry.rb +57 -0
- data/test/wsdl/simpletype/rpc/expectedServant.rb +32 -0
- data/test/wsdl/simpletype/rpc/expectedService.rb +55 -0
- data/test/wsdl/simpletype/rpc/rpc.wsdl +98 -0
- data/test/wsdl/simpletype/rpc/test_rpc.rb +52 -0
- data/test/wsdl/simpletype/simpletype.wsdl +114 -0
- data/test/wsdl/simpletype/test_simpletype.rb +92 -0
- data/test/wsdl/soap/soapbodyparts.wsdl +103 -0
- data/test/wsdl/soap/test_soapbodyparts.rb +79 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version.rb +1 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionDriver.rb +10 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionMappingRegistry.rb +4 -0
- data/test/wsdl/soap/wsdl2ruby/echo_versionServant.rb +3 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_service.cgi +3 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_service.rb +7 -0
- data/test/wsdl/soap/wsdl2ruby/echo_version_serviceClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClassdef.rb +21 -0
- data/test/wsdl/soap/wsdl2ruby/expectedClient.rb +34 -0
- data/test/wsdl/soap/wsdl2ruby/expectedDriver.rb +58 -0
- data/test/wsdl/soap/wsdl2ruby/expectedMappingRegistry.rb +36 -0
- data/test/wsdl/soap/wsdl2ruby/expectedServant.rb +32 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.cgi +48 -0
- data/test/wsdl/soap/wsdl2ruby/expectedService.rb +55 -0
- data/test/wsdl/soap/wsdl2ruby/rpc.wsdl +80 -0
- data/test/wsdl/soap/wsdl2ruby/section/expectedClassdef.rb +37 -0
- data/test/wsdl/soap/wsdl2ruby/section/section.xsd +31 -0
- data/test/wsdl/soap/wsdl2ruby/section/test_section.rb +53 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/soapenc.wsdl +64 -0
- data/test/wsdl/soap/wsdl2ruby/soapenc/test_soapenc.rb +83 -0
- data/test/wsdl/soap/wsdl2ruby/test_wsdl2ruby.rb +102 -0
- data/test/wsdl/soaptype/soaptype.wsdl +61 -0
- data/test/wsdl/soaptype/test_soaptype.rb +178 -0
- data/test/wsdl/test_emptycomplextype.rb +21 -0
- data/test/wsdl/test_fault.rb +50 -0
- data/test/wsdl/test_multiplefault.rb +41 -0
- data/test/xsd/codegen/test_classdef.rb +244 -0
- data/test/xsd/noencoding.xml +4 -0
- data/test/xsd/test_noencoding.rb +32 -0
- data/test/xsd/test_ns.rb +41 -0
- data/test/xsd/test_xmlschemaparser.rb +22 -0
- data/test/xsd/test_xsd.rb +1638 -0
- data/test/xsd/xmllang.xml +43 -0
- data/test/xsd/xmlschema.xml +12 -0
- data/test/xsd/xsd2ruby/expected_mysample.rb +65 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapper.rb +11 -0
- data/test/xsd/xsd2ruby/expected_mysample_mapping_registry.rb +51 -0
- data/test/xsd/xsd2ruby/section.xsd +49 -0
- data/test/xsd/xsd2ruby/test_xsd2ruby.rb +90 -0
- metadata +958 -0
@@ -0,0 +1,644 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<definitions
|
3
|
+
name="raa"
|
4
|
+
targetNamespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"
|
5
|
+
xmlns:tns="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"
|
6
|
+
xmlns:txd="http://www.ruby-lang.org/xmlns/soap/type/RAA/0.0.3/"
|
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/type/RAA/0.0.3/">
|
18
|
+
|
19
|
+
<complexType name="Gem">
|
20
|
+
<all>
|
21
|
+
<element name="id" type="xsd:int"/>
|
22
|
+
<element name="category" type="txd:Category"/>
|
23
|
+
<element name="owner" type="txd:Owner"/>
|
24
|
+
<element name="project" type="txd:Project"/>
|
25
|
+
<element name="updated" type="xsd:dateTime"/>
|
26
|
+
<element name="created" type="xsd:dateTime"/>
|
27
|
+
</all>
|
28
|
+
</complexType>
|
29
|
+
|
30
|
+
<complexType name="Category">
|
31
|
+
<all>
|
32
|
+
<element name="major" type="xsd:string"/>
|
33
|
+
<element name="minor" type="xsd:string"/>
|
34
|
+
</all>
|
35
|
+
</complexType>
|
36
|
+
|
37
|
+
<complexType name="Owner">
|
38
|
+
<all>
|
39
|
+
<element name="id" type="xsd:int"/>
|
40
|
+
<element name="email" type="xsd:anyURI"/>
|
41
|
+
<element name="name" type="xsd:string"/>
|
42
|
+
</all>
|
43
|
+
</complexType>
|
44
|
+
|
45
|
+
<complexType name="Project">
|
46
|
+
<all>
|
47
|
+
<element name="name" type="xsd:string"/>
|
48
|
+
<element name="short_description" type="xsd:string"/>
|
49
|
+
<element name="version" type="xsd:string"/>
|
50
|
+
<element name="status" type="xsd:string"/>
|
51
|
+
<element name="url" type="xsd:anyURI"/>
|
52
|
+
<element name="download" type="xsd:anyURI"/>
|
53
|
+
<element name="license" type="xsd:string"/>
|
54
|
+
<element name="description" type="xsd:string"/>
|
55
|
+
<element name="description_style" type="xsd:string"/>
|
56
|
+
<element name="updated" type="xsd:dateTime"/>
|
57
|
+
<element name="history" type="txd:ProjectArray"/>
|
58
|
+
<element name="dependency" type="txd:ProjectDependencyArray"/>
|
59
|
+
</all>
|
60
|
+
</complexType>
|
61
|
+
|
62
|
+
<complexType name="ProjectDependency">
|
63
|
+
<all>
|
64
|
+
<element name="project" type="xsd:string"/>
|
65
|
+
<element name="version" type="xsd:string"/>
|
66
|
+
<element name="description" type="xsd:string"/>
|
67
|
+
</all>
|
68
|
+
</complexType>
|
69
|
+
|
70
|
+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
|
71
|
+
<complexType name="GemArray">
|
72
|
+
<complexContent>
|
73
|
+
<restriction base="soapenc:Array">
|
74
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Gem[]"/>
|
75
|
+
</restriction>
|
76
|
+
</complexContent>
|
77
|
+
</complexType>
|
78
|
+
|
79
|
+
<complexType name="OwnerArray">
|
80
|
+
<complexContent>
|
81
|
+
<restriction base="soapenc:Array">
|
82
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Owner[]"/>
|
83
|
+
</restriction>
|
84
|
+
</complexContent>
|
85
|
+
</complexType>
|
86
|
+
|
87
|
+
<complexType name="ProjectArray">
|
88
|
+
<complexContent>
|
89
|
+
<restriction base="soapenc:Array">
|
90
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="txd:Project[]"/>
|
91
|
+
</restriction>
|
92
|
+
</complexContent>
|
93
|
+
</complexType>
|
94
|
+
|
95
|
+
<complexType name="ProjectDependencyArray">
|
96
|
+
<complexContent>
|
97
|
+
<restriction base="soapenc:Array">
|
98
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="txd:ProjectDependency[]"/>
|
99
|
+
</restriction>
|
100
|
+
</complexContent>
|
101
|
+
</complexType>
|
102
|
+
|
103
|
+
<complexType name="StringArray">
|
104
|
+
<complexContent>
|
105
|
+
<restriction base="soapenc:Array">
|
106
|
+
<attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
|
107
|
+
</restriction>
|
108
|
+
</complexContent>
|
109
|
+
</complexType>
|
110
|
+
</schema>
|
111
|
+
|
112
|
+
<!-- type definition for ApacheSOAP's Map -->
|
113
|
+
<schema
|
114
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
115
|
+
targetNamespace="http://xml.apache.org/xml-soap">
|
116
|
+
<complexType name="Map">
|
117
|
+
<sequence>
|
118
|
+
<element name="item" minOccurs="0" maxOccurs="unbounded">
|
119
|
+
<complexType>
|
120
|
+
<sequence>
|
121
|
+
<element name="key" type="xsd:anyType" />
|
122
|
+
<element name="value" type="xsd:anyType" />
|
123
|
+
</sequence>
|
124
|
+
</complexType>
|
125
|
+
</element>
|
126
|
+
</sequence>
|
127
|
+
</complexType>
|
128
|
+
</schema>
|
129
|
+
</types>
|
130
|
+
|
131
|
+
<message name="msg_empty"/>
|
132
|
+
|
133
|
+
<message name="msg_name">
|
134
|
+
<part name="name" type="xsd:string"/>
|
135
|
+
</message>
|
136
|
+
|
137
|
+
<message name="msg_index">
|
138
|
+
<part name="idx" type="xsd:int"/>
|
139
|
+
</message>
|
140
|
+
|
141
|
+
<message name="msg_category">
|
142
|
+
<part name="major" type="xsd:string"/>
|
143
|
+
<part name="minor" type="xsd:string"/>
|
144
|
+
</message>
|
145
|
+
|
146
|
+
<message name="msg_name_version">
|
147
|
+
<part name="name" type="xsd:string"/>
|
148
|
+
<part name="version" type="xsd:string"/>
|
149
|
+
</message>
|
150
|
+
|
151
|
+
<message name="msg_substring">
|
152
|
+
<part name="substring" type="xsd:string"/>
|
153
|
+
</message>
|
154
|
+
|
155
|
+
<message name="msg_owner_index">
|
156
|
+
<part name="owner_id" type="xsd:int"/>
|
157
|
+
</message>
|
158
|
+
|
159
|
+
<message name="msg_datetime_index">
|
160
|
+
<part name="date" type="xsd:dateTime"/>
|
161
|
+
<part name="idx" type="xsd:int"/>
|
162
|
+
</message>
|
163
|
+
|
164
|
+
<message name="msg_substring_index">
|
165
|
+
<part name="substring" type="xsd:string"/>
|
166
|
+
<part name="idx" type="xsd:int"/>
|
167
|
+
</message>
|
168
|
+
|
169
|
+
<message name="msg_update_request">
|
170
|
+
<part name="name" type="xsd:string"/>
|
171
|
+
<part name="pass" type="xsd:string"/>
|
172
|
+
<part name="gem" type="txd:Gem"/>
|
173
|
+
</message>
|
174
|
+
|
175
|
+
<message name="msg_update_pass_request">
|
176
|
+
<part name="name" type="xsd:string"/>
|
177
|
+
<part name="oldpass" type="xsd:string"/>
|
178
|
+
<part name="newpass" type="xsd:string"/>
|
179
|
+
</message>
|
180
|
+
|
181
|
+
<message name="msg_gem_response">
|
182
|
+
<part name="return" type="txd:Gem"/>
|
183
|
+
</message>
|
184
|
+
|
185
|
+
<message name="msg_dependency_array_response">
|
186
|
+
<part name="return" type="txd:ProjectDependencyArray"/>
|
187
|
+
</message>
|
188
|
+
|
189
|
+
<message name="msg_names_response">
|
190
|
+
<part name="return" type="txd:StringArray"/>
|
191
|
+
</message>
|
192
|
+
|
193
|
+
<message name="msg_size_response">
|
194
|
+
<part name="return" type="xsd:int"/>
|
195
|
+
</message>
|
196
|
+
|
197
|
+
<message name="msg_gem_tree_response">
|
198
|
+
<part name="return" type="apachesoap:Map"/>
|
199
|
+
</message>
|
200
|
+
|
201
|
+
<message name="msg_search_response">
|
202
|
+
<part name="return" type="apachesoap:Map"/>
|
203
|
+
</message>
|
204
|
+
|
205
|
+
<message name="msg_owner_response">
|
206
|
+
<part name="return" type="txd:Owner"/>
|
207
|
+
</message>
|
208
|
+
|
209
|
+
<message name="msg_owner_array_response">
|
210
|
+
<part name="return" type="txd:OwnerArray"/>
|
211
|
+
</message>
|
212
|
+
|
213
|
+
<portType name="raaServicePortType">
|
214
|
+
<operation name="gem">
|
215
|
+
<input message="tns:msg_name"/>
|
216
|
+
<output message="tns:msg_gem_response"/>
|
217
|
+
</operation>
|
218
|
+
|
219
|
+
<operation name="dependents">
|
220
|
+
<input message="tns:msg_name_version"/>
|
221
|
+
<output message="tns:msg_dependency_array_response"/>
|
222
|
+
</operation>
|
223
|
+
|
224
|
+
<operation name="names">
|
225
|
+
<input message="tns:msg_empty"/>
|
226
|
+
<output message="tns:msg_names_response"/>
|
227
|
+
</operation>
|
228
|
+
|
229
|
+
<operation name="size">
|
230
|
+
<input message="tns:msg_empty"/>
|
231
|
+
<output message="tns:msg_size_response"/>
|
232
|
+
</operation>
|
233
|
+
|
234
|
+
<operation name="list_by_category"
|
235
|
+
parameterOrder="ownerId">
|
236
|
+
<input message="tns:msg_category"/>
|
237
|
+
<output message="tns:msg_names_response"/>
|
238
|
+
</operation>
|
239
|
+
|
240
|
+
<operation name="tree_by_category"
|
241
|
+
parameterOrder="ownerId">
|
242
|
+
<input message="tns:msg_empty"/>
|
243
|
+
<output message="tns:msg_gem_tree_response"/>
|
244
|
+
</operation>
|
245
|
+
|
246
|
+
<operation name="list_recent_updated">
|
247
|
+
<input message="tns:msg_index"/>
|
248
|
+
<output message="tns:msg_names_response"/>
|
249
|
+
</operation>
|
250
|
+
|
251
|
+
<operation name="list_recent_created">
|
252
|
+
<input message="tns:msg_index"/>
|
253
|
+
<output message="tns:msg_names_response"/>
|
254
|
+
</operation>
|
255
|
+
|
256
|
+
<operation name="list_updated_since">
|
257
|
+
<input message="tns:msg_datetime_index"/>
|
258
|
+
<output message="tns:msg_names_response"/>
|
259
|
+
</operation>
|
260
|
+
|
261
|
+
<operation name="list_created_since">
|
262
|
+
<input message="tns:msg_datetime_index"/>
|
263
|
+
<output message="tns:msg_names_response"/>
|
264
|
+
</operation>
|
265
|
+
|
266
|
+
<operation name="list_by_owner">
|
267
|
+
<input message="tns:msg_owner_index"/>
|
268
|
+
<output message="tns:msg_names_response"/>
|
269
|
+
</operation>
|
270
|
+
|
271
|
+
<operation name="search_name">
|
272
|
+
<input message="tns:msg_substring_index"/>
|
273
|
+
<output message="tns:msg_names_response"/>
|
274
|
+
</operation>
|
275
|
+
|
276
|
+
<operation name="search_short_description">
|
277
|
+
<input message="tns:msg_substring_index"/>
|
278
|
+
<output message="tns:msg_names_response"/>
|
279
|
+
</operation>
|
280
|
+
|
281
|
+
<operation name="search_owner">
|
282
|
+
<input message="tns:msg_substring_index"/>
|
283
|
+
<output message="tns:msg_names_response"/>
|
284
|
+
</operation>
|
285
|
+
|
286
|
+
<operation name="search_version">
|
287
|
+
<input message="tns:msg_substring_index"/>
|
288
|
+
<output message="tns:msg_names_response"/>
|
289
|
+
</operation>
|
290
|
+
|
291
|
+
<operation name="search_status">
|
292
|
+
<input message="tns:msg_substring_index"/>
|
293
|
+
<output message="tns:msg_names_response"/>
|
294
|
+
</operation>
|
295
|
+
|
296
|
+
<operation name="search_description">
|
297
|
+
<input message="tns:msg_substring_index"/>
|
298
|
+
<output message="tns:msg_names_response"/>
|
299
|
+
</operation>
|
300
|
+
|
301
|
+
<operation name="search">
|
302
|
+
<input message="tns:msg_substring"/>
|
303
|
+
<output message="tns:msg_search_response"/>
|
304
|
+
</operation>
|
305
|
+
|
306
|
+
<operation name="owner">
|
307
|
+
<input message="tns:msg_owner_index"/>
|
308
|
+
<output message="tns:msg_owner_response"/>
|
309
|
+
</operation>
|
310
|
+
|
311
|
+
<operation name="list_owner">
|
312
|
+
<input message="tns:msg_index"/>
|
313
|
+
<output message="tns:msg_owner_array_response"/>
|
314
|
+
</operation>
|
315
|
+
|
316
|
+
<operation name="update">
|
317
|
+
<input message="tns:msg_update_request"/>
|
318
|
+
<output message="tns:msg_gem_response"/>
|
319
|
+
</operation>
|
320
|
+
|
321
|
+
<operation name="update_pass">
|
322
|
+
<input message="tns:msg_update_pass_request"/>
|
323
|
+
<output message="tns:msg_empty"/>
|
324
|
+
</operation>
|
325
|
+
</portType>
|
326
|
+
|
327
|
+
<binding name="raaServicePortBinding" type="tns:raaServicePortType">
|
328
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
329
|
+
|
330
|
+
<operation name="gem">
|
331
|
+
<soap:operation soapAction=""/>
|
332
|
+
<input>
|
333
|
+
<soap:body use="encoded"
|
334
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
335
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
336
|
+
</input>
|
337
|
+
<output>
|
338
|
+
<soap:body use="encoded"
|
339
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
340
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
341
|
+
</output>
|
342
|
+
</operation>
|
343
|
+
|
344
|
+
<operation name="dependents">
|
345
|
+
<soap:operation soapAction=""/>
|
346
|
+
<input>
|
347
|
+
<soap:body use="encoded"
|
348
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
349
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
350
|
+
</input>
|
351
|
+
<output>
|
352
|
+
<soap:body use="encoded"
|
353
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
354
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
355
|
+
</output>
|
356
|
+
</operation>
|
357
|
+
|
358
|
+
<operation name="names">
|
359
|
+
<soap:operation soapAction=""/>
|
360
|
+
<input>
|
361
|
+
<soap:body use="encoded"
|
362
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
363
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
364
|
+
</input>
|
365
|
+
<output>
|
366
|
+
<soap:body use="encoded"
|
367
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
368
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
369
|
+
</output>
|
370
|
+
</operation>
|
371
|
+
|
372
|
+
<operation name="size">
|
373
|
+
<soap:operation soapAction=""/>
|
374
|
+
<input>
|
375
|
+
<soap:body use="encoded"
|
376
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
377
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
378
|
+
</input>
|
379
|
+
<output>
|
380
|
+
<soap:body use="encoded"
|
381
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
382
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
383
|
+
</output>
|
384
|
+
</operation>
|
385
|
+
|
386
|
+
<operation name="list_by_category">
|
387
|
+
<soap:operation soapAction=""/>
|
388
|
+
<input>
|
389
|
+
<soap:body use="encoded"
|
390
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
391
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
392
|
+
</input>
|
393
|
+
<output>
|
394
|
+
<soap:body use="encoded"
|
395
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
396
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
397
|
+
</output>
|
398
|
+
</operation>
|
399
|
+
|
400
|
+
<operation name="tree_by_category">
|
401
|
+
<soap:operation soapAction=""/>
|
402
|
+
<input>
|
403
|
+
<soap:body use="encoded"
|
404
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
405
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
406
|
+
</input>
|
407
|
+
<output>
|
408
|
+
<soap:body use="encoded"
|
409
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
410
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
411
|
+
</output>
|
412
|
+
</operation>
|
413
|
+
|
414
|
+
<operation name="list_recent_updated">
|
415
|
+
<soap:operation soapAction=""/>
|
416
|
+
<input>
|
417
|
+
<soap:body use="encoded"
|
418
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
419
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
420
|
+
</input>
|
421
|
+
<output>
|
422
|
+
<soap:body use="encoded"
|
423
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
424
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
425
|
+
</output>
|
426
|
+
</operation>
|
427
|
+
|
428
|
+
<operation name="list_recent_created">
|
429
|
+
<soap:operation soapAction=""/>
|
430
|
+
<input>
|
431
|
+
<soap:body use="encoded"
|
432
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
433
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
434
|
+
</input>
|
435
|
+
<output>
|
436
|
+
<soap:body use="encoded"
|
437
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
438
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
439
|
+
</output>
|
440
|
+
</operation>
|
441
|
+
|
442
|
+
<operation name="list_updated_since">
|
443
|
+
<soap:operation soapAction=""/>
|
444
|
+
<input>
|
445
|
+
<soap:body use="encoded"
|
446
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
447
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
448
|
+
</input>
|
449
|
+
<output>
|
450
|
+
<soap:body use="encoded"
|
451
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
452
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
453
|
+
</output>
|
454
|
+
</operation>
|
455
|
+
|
456
|
+
<operation name="list_created_since">
|
457
|
+
<soap:operation soapAction=""/>
|
458
|
+
<input>
|
459
|
+
<soap:body use="encoded"
|
460
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
461
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
462
|
+
</input>
|
463
|
+
<output>
|
464
|
+
<soap:body use="encoded"
|
465
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
466
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
467
|
+
</output>
|
468
|
+
</operation>
|
469
|
+
|
470
|
+
<operation name="list_by_owner">
|
471
|
+
<soap:operation soapAction=""/>
|
472
|
+
<input>
|
473
|
+
<soap:body use="encoded"
|
474
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
475
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
476
|
+
</input>
|
477
|
+
<output>
|
478
|
+
<soap:body use="encoded"
|
479
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
480
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
481
|
+
</output>
|
482
|
+
</operation>
|
483
|
+
|
484
|
+
<operation name="search_name">
|
485
|
+
<soap:operation soapAction=""/>
|
486
|
+
<input>
|
487
|
+
<soap:body use="encoded"
|
488
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
489
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
490
|
+
</input>
|
491
|
+
<output>
|
492
|
+
<soap:body use="encoded"
|
493
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
494
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
495
|
+
</output>
|
496
|
+
</operation>
|
497
|
+
|
498
|
+
<operation name="search_short_description">
|
499
|
+
<soap:operation soapAction=""/>
|
500
|
+
<input>
|
501
|
+
<soap:body use="encoded"
|
502
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
503
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
504
|
+
</input>
|
505
|
+
<output>
|
506
|
+
<soap:body use="encoded"
|
507
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
508
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
509
|
+
</output>
|
510
|
+
</operation>
|
511
|
+
|
512
|
+
<operation name="search_owner">
|
513
|
+
<soap:operation soapAction=""/>
|
514
|
+
<input>
|
515
|
+
<soap:body use="encoded"
|
516
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
517
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
518
|
+
</input>
|
519
|
+
<output>
|
520
|
+
<soap:body use="encoded"
|
521
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
522
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
523
|
+
</output>
|
524
|
+
</operation>
|
525
|
+
|
526
|
+
<operation name="search_version">
|
527
|
+
<soap:operation soapAction=""/>
|
528
|
+
<input>
|
529
|
+
<soap:body use="encoded"
|
530
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
531
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
532
|
+
</input>
|
533
|
+
<output>
|
534
|
+
<soap:body use="encoded"
|
535
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
536
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
537
|
+
</output>
|
538
|
+
</operation>
|
539
|
+
|
540
|
+
<operation name="search_status">
|
541
|
+
<soap:operation soapAction=""/>
|
542
|
+
<input>
|
543
|
+
<soap:body use="encoded"
|
544
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
545
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
546
|
+
</input>
|
547
|
+
<output>
|
548
|
+
<soap:body use="encoded"
|
549
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
550
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
551
|
+
</output>
|
552
|
+
</operation>
|
553
|
+
|
554
|
+
<operation name="search_description">
|
555
|
+
<soap:operation soapAction=""/>
|
556
|
+
<input>
|
557
|
+
<soap:body use="encoded"
|
558
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
559
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
560
|
+
</input>
|
561
|
+
<output>
|
562
|
+
<soap:body use="encoded"
|
563
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
564
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
565
|
+
</output>
|
566
|
+
</operation>
|
567
|
+
|
568
|
+
<operation name="search">
|
569
|
+
<soap:operation soapAction=""/>
|
570
|
+
<input>
|
571
|
+
<soap:body use="encoded"
|
572
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
573
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
574
|
+
</input>
|
575
|
+
<output>
|
576
|
+
<soap:body use="encoded"
|
577
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
578
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
579
|
+
</output>
|
580
|
+
</operation>
|
581
|
+
|
582
|
+
<operation name="owner">
|
583
|
+
<soap:operation soapAction=""/>
|
584
|
+
<input>
|
585
|
+
<soap:body use="encoded"
|
586
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
587
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
588
|
+
</input>
|
589
|
+
<output>
|
590
|
+
<soap:body use="encoded"
|
591
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
592
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
593
|
+
</output>
|
594
|
+
</operation>
|
595
|
+
|
596
|
+
<operation name="list_owner">
|
597
|
+
<soap:operation soapAction=""/>
|
598
|
+
<input>
|
599
|
+
<soap:body use="encoded"
|
600
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
601
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
602
|
+
</input>
|
603
|
+
<output>
|
604
|
+
<soap:body use="encoded"
|
605
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
606
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
607
|
+
</output>
|
608
|
+
</operation>
|
609
|
+
|
610
|
+
<operation name="update">
|
611
|
+
<soap:operation soapAction=""/>
|
612
|
+
<input>
|
613
|
+
<soap:body use="encoded"
|
614
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
615
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
616
|
+
</input>
|
617
|
+
<output>
|
618
|
+
<soap:body use="encoded"
|
619
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
620
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
621
|
+
</output>
|
622
|
+
</operation>
|
623
|
+
|
624
|
+
<operation name="update_pass">
|
625
|
+
<soap:operation soapAction=""/>
|
626
|
+
<input>
|
627
|
+
<soap:body use="encoded"
|
628
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
629
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
630
|
+
</input>
|
631
|
+
<output>
|
632
|
+
<soap:body use="encoded"
|
633
|
+
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
|
634
|
+
namespace="http://www.ruby-lang.org/xmlns/soap/interface/RAA/0.0.4/"/>
|
635
|
+
</output>
|
636
|
+
</operation>
|
637
|
+
</binding>
|
638
|
+
|
639
|
+
<service name="raaService">
|
640
|
+
<port name="raaServicePort" binding="tns:raaServicePortBinding">
|
641
|
+
<soap:address location="http://raa.ruby-lang.org/soapsrv"/>
|
642
|
+
</port>
|
643
|
+
</service>
|
644
|
+
</definitions>
|