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,37 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# This file is a sample based on AmazonSearchServiceClient.rb, which can be
|
4
|
+
# generated by WSDL file and wsdl2ruby.rb.
|
5
|
+
#
|
6
|
+
# $ wsdl2ruby.rb --type client --force \
|
7
|
+
# --wsdl http://soap.amazon.com/schemas3/AmazonWebServices.wsdl
|
8
|
+
#
|
9
|
+
# See wsdlDriver.rb to use WSDL file directly (slow).
|
10
|
+
require 'AmazonSearchDriver.rb'
|
11
|
+
|
12
|
+
endpoint_url = ARGV.shift
|
13
|
+
obj = AmazonSearchPort.new(endpoint_url)
|
14
|
+
|
15
|
+
# Uncomment the below line to see SOAP wiredumps.
|
16
|
+
# obj.wiredump_dev = STDERR
|
17
|
+
|
18
|
+
# SYNOPSIS
|
19
|
+
# KeywordSearchRequest(keywordSearchRequest)
|
20
|
+
#
|
21
|
+
# ARGS
|
22
|
+
# keywordSearchRequest KeywordRequest - {urn:PI/DevCentral/SoapService}KeywordRequest
|
23
|
+
#
|
24
|
+
# RETURNS
|
25
|
+
# return ProductInfo - {urn:PI/DevCentral/SoapService}ProductInfo
|
26
|
+
#
|
27
|
+
# RAISES
|
28
|
+
# N/A
|
29
|
+
#
|
30
|
+
keywordSearchRequest = KeywordRequest.new("Ruby Object", "1", "books", "webservices-20", "lite", "", "+salesrank")
|
31
|
+
obj.keywordSearchRequest(keywordSearchRequest).Details.each do |detail|
|
32
|
+
puts "== #{detail.ProductName}"
|
33
|
+
puts "Author: #{detail.Authors.join(", ")}"
|
34
|
+
puts "Release date: #{detail.ReleaseDate}"
|
35
|
+
puts "List price: #{detail.ListPrice}, our price: #{detail.OurPrice}"
|
36
|
+
puts
|
37
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
require 'soap/wsdlDriver'
|
2
|
+
|
3
|
+
book = ARGV.shift || "Ruby"
|
4
|
+
|
5
|
+
# AmazonSearch.rb is generated from WSDL.
|
6
|
+
# Run "wsdl2ruby.rb --wsdl http://soap.amazon.com/schemas3/AmazonWebServices.wsdl --classdef --force"
|
7
|
+
# http://soap.amazon.com/schemas3/AmazonWebServices.wsdl
|
8
|
+
require 'AmazonSearch.rb'
|
9
|
+
|
10
|
+
=begin
|
11
|
+
Or, define the class by yourself like this.
|
12
|
+
|
13
|
+
class KeywordRequest
|
14
|
+
def initialize(keyword = nil,
|
15
|
+
page = nil,
|
16
|
+
mode = nil,
|
17
|
+
tag = nil,
|
18
|
+
type = nil,
|
19
|
+
devtag = nil,
|
20
|
+
sort = nil)
|
21
|
+
@keyword = keyword
|
22
|
+
@page = page
|
23
|
+
@mode = mode
|
24
|
+
@tag = tag
|
25
|
+
@type = type
|
26
|
+
@devtag = devtag
|
27
|
+
@sort = sort
|
28
|
+
end
|
29
|
+
end
|
30
|
+
=end
|
31
|
+
|
32
|
+
# You must get 'developer's token" from http://associates.amazon.com/exec/panama/associates/ntg/browse/-/1067662 to use Amazon Web Services 2.0.
|
33
|
+
#devtag = File.open(File.expand_path("~/.amazon_key")) { |f| f.read }.chomp
|
34
|
+
devtag = nil
|
35
|
+
|
36
|
+
# v2: AMAZON_WSDL = 'http://soap.amazon.com/schemas2/AmazonWebServices.wsdl'
|
37
|
+
AMAZON_WSDL = 'http://soap.amazon.com/schemas3/AmazonWebServices.wsdl'
|
38
|
+
amazon = SOAP::WSDLDriverFactory.new(AMAZON_WSDL).create_rpc_driver
|
39
|
+
p "WSDL loaded"
|
40
|
+
amazon.generate_explicit_type = true
|
41
|
+
amazon.mandatorycharset = 'utf-8' # AWS should fix this bug.
|
42
|
+
#amazon.wiredump_dev = STDERR
|
43
|
+
|
44
|
+
# Show sales rank.
|
45
|
+
req = KeywordRequest.new(book, "1", "books", "webservices-20", "lite", devtag, "+salesrank")
|
46
|
+
amazon.KeywordSearchRequest(req).Details.each do |detail|
|
47
|
+
puts "== #{detail.ProductName}"
|
48
|
+
puts "Author: #{detail.Authors.join(", ")}"
|
49
|
+
puts "Release date: #{detail.ReleaseDate}"
|
50
|
+
puts "List price: #{detail.ListPrice}, our price: #{detail.OurPrice}"
|
51
|
+
puts
|
52
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'soap/wsdlDriver'
|
2
|
+
|
3
|
+
wsdl = 'http://webservices.amazon.com/AWSECommerceService/JP/AWSECommerceService.wsdl'
|
4
|
+
wsdl = 'AWSECommerceService.wsdl'
|
5
|
+
|
6
|
+
require 'default'
|
7
|
+
drv = SOAP::WSDLDriverFactory.new(wsdl).create_rpc_driver
|
8
|
+
drv.wiredump_dev = STDOUT if $DEBUG
|
9
|
+
|
10
|
+
# I don't have an account of AWSECommerce so the following code is not tested.
|
11
|
+
# Please tell me (nahi@ruby-lang.org) if you will get good/bad result in
|
12
|
+
# communicating with AWSECommerce Server...
|
13
|
+
p drv.ItemSearch(ItemSearch.new("123", "tag", "Double", "validate"))
|
@@ -0,0 +1,60 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
# This client sample is contributed by Garry Dolley at soap4r ML.
|
4
|
+
# You need to generate default.rb and defaultDriver.rb by wsdl2ruby.rb tool.
|
5
|
+
#
|
6
|
+
# % ruby wsdl2ruby.rb --wsdl http://developer.ebay.com/webservices/latest/eBaySvc.wsdl --type client --force
|
7
|
+
#
|
8
|
+
# You may need to get eBaySvc.wsdl and patch it with eBaySvc.wsdl.diff in the
|
9
|
+
# same directory to avoid eBaySvc.wsdl's namespace usage problem.
|
10
|
+
|
11
|
+
require 'defaultDriver.rb'
|
12
|
+
require 'soap/header/simplehandler'
|
13
|
+
|
14
|
+
class RequesterCredentialsHandler < SOAP::Header::SimpleHandler
|
15
|
+
HeaderName = XSD::QName.new('urn:ebay:apis:eBLBaseComponents', 'RequesterCredentials')
|
16
|
+
Credentials = XSD::QName.new('urn:ebay:apis:eBLBaseComponents', 'Credentials')
|
17
|
+
|
18
|
+
EbayAuthToken = XSD::QName.new(nil, 'eBayAuthToken')
|
19
|
+
DevId = XSD::QName.new(nil, 'DevId')
|
20
|
+
AppId = XSD::QName.new(nil, 'AppId')
|
21
|
+
AuthCert = XSD::QName.new(nil, 'AuthCert')
|
22
|
+
|
23
|
+
def initialize(eBayAuthToken, devId, appId, authCert)
|
24
|
+
super(HeaderName)
|
25
|
+
@token, @devId, @appId, @cert = eBayAuthToken, devId, appId, authCert
|
26
|
+
end
|
27
|
+
|
28
|
+
def on_simple_outbound
|
29
|
+
{ EbayAuthToken => @token,
|
30
|
+
Credentials => { DevId => @devId, AppId => @appId, AuthCert => @cert } }
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
callName = 'GeteBayOfficialTime'
|
35
|
+
siteId = '0'
|
36
|
+
appId = '__appid__'
|
37
|
+
devId = '__devid__'
|
38
|
+
certId = '__certid__'
|
39
|
+
version = '433'
|
40
|
+
|
41
|
+
authToken = '__authtoken__'
|
42
|
+
|
43
|
+
endpoint_url = 'https://api.sandbox.ebay.com/wsapi'
|
44
|
+
|
45
|
+
request_url = endpoint_url + '?callname=' + callName +
|
46
|
+
'&siteid=' + siteId +
|
47
|
+
'&appid=' + appId +
|
48
|
+
'&version=' + version +
|
49
|
+
'&routing=default'
|
50
|
+
|
51
|
+
service = EBayAPIInterface.new(request_url)
|
52
|
+
service.headerhandler << RequesterCredentialsHandler.new(authToken,
|
53
|
+
devId, appId, certId)
|
54
|
+
|
55
|
+
request = GeteBayOfficialTimeRequestType.new()
|
56
|
+
request.version = version
|
57
|
+
|
58
|
+
response = service.geteBayOfficialTime(request)
|
59
|
+
|
60
|
+
puts response.timestamp
|
@@ -0,0 +1,785 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<wsdl:definitions targetNamespace="https://adwords.google.com/api/adwords/v2" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="https://adwords.google.com/api/adwords/v2" xmlns:intf="https://adwords.google.com/api/adwords/v2" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
3
|
+
<!--WSDL created by Apache Axis version: 1.2beta
|
4
|
+
Built on Sep 16, 2004 (04:43:18 PDT)-->
|
5
|
+
<wsdl:types>
|
6
|
+
<schema elementFormDefault="qualified" targetNamespace="https://adwords.google.com/api/adwords/v2" xmlns="http://www.w3.org/2001/XMLSchema"><element name="email">
|
7
|
+
<simpleType>
|
8
|
+
<restriction base="xsd:string"/>
|
9
|
+
</simpleType>
|
10
|
+
</element><element name="password">
|
11
|
+
<simpleType>
|
12
|
+
<restriction base="xsd:string"/>
|
13
|
+
</simpleType>
|
14
|
+
</element><element name="useragent">
|
15
|
+
<simpleType>
|
16
|
+
<restriction base="xsd:string"/>
|
17
|
+
</simpleType>
|
18
|
+
</element><element name="token">
|
19
|
+
<simpleType>
|
20
|
+
<restriction base="xsd:string"/>
|
21
|
+
</simpleType>
|
22
|
+
</element><element name="clientEmail">
|
23
|
+
<simpleType>
|
24
|
+
<restriction base="xsd:string"/>
|
25
|
+
</simpleType>
|
26
|
+
</element>
|
27
|
+
<element name="responseTime">
|
28
|
+
<simpleType>
|
29
|
+
<restriction base="xsd:long"/>
|
30
|
+
</simpleType>
|
31
|
+
</element>
|
32
|
+
<element name="operations">
|
33
|
+
<simpleType>
|
34
|
+
<restriction base="xsd:long"/>
|
35
|
+
</simpleType>
|
36
|
+
</element>
|
37
|
+
|
38
|
+
<element name="getCampaign">
|
39
|
+
<complexType>
|
40
|
+
<sequence>
|
41
|
+
<element name="id" type="xsd:int"/>
|
42
|
+
</sequence>
|
43
|
+
</complexType>
|
44
|
+
</element>
|
45
|
+
<element name="getCampaignResponse">
|
46
|
+
<complexType>
|
47
|
+
<sequence>
|
48
|
+
<element name="getCampaignReturn" type="impl:Campaign"/>
|
49
|
+
</sequence>
|
50
|
+
</complexType>
|
51
|
+
</element>
|
52
|
+
<!-- Keyword Status -->
|
53
|
+
<simpleType name="KeywordStatus">
|
54
|
+
<restriction base="string">
|
55
|
+
<enumeration value="Normal"/>
|
56
|
+
<enumeration value="InTrial"/>
|
57
|
+
<enumeration value="OnHold"/>
|
58
|
+
<enumeration value="Disabled"/>
|
59
|
+
<enumeration value="Disapproved"/>
|
60
|
+
<enumeration value="Deleted"/>
|
61
|
+
</restriction>
|
62
|
+
</simpleType>
|
63
|
+
<!-- Keyword Type -->
|
64
|
+
<simpleType name="KeywordType">
|
65
|
+
<restriction base="string">
|
66
|
+
<enumeration value="Broad"/>
|
67
|
+
<enumeration value="Exact"/>
|
68
|
+
<enumeration value="Phrase"/>
|
69
|
+
</restriction>
|
70
|
+
</simpleType>
|
71
|
+
<complexType name="Keyword">
|
72
|
+
<sequence>
|
73
|
+
<element name="type" nillable="true" type="impl:KeywordType"/>
|
74
|
+
<element name="maxCpc" type="xsd:long"/>
|
75
|
+
<element name="adGroupId" type="xsd:int"/>
|
76
|
+
<element name="language" nillable="true" type="xsd:string"/>
|
77
|
+
<element name="status" nillable="true" minOccurs="0" type="impl:KeywordStatus"/>
|
78
|
+
<element name="negative" type="xsd:boolean"/>
|
79
|
+
<element name="destinationUrl" nillable="true" type="xsd:string"/>
|
80
|
+
<element name="text" nillable="true" type="xsd:string"/>
|
81
|
+
<element name="id" type="xsd:int"/>
|
82
|
+
</sequence>
|
83
|
+
</complexType>
|
84
|
+
<complexType name="LanguageTarget">
|
85
|
+
<sequence>
|
86
|
+
<element maxOccurs="unbounded" name="languages" nillable="true" type="xsd:string"/>
|
87
|
+
</sequence>
|
88
|
+
</complexType>
|
89
|
+
<complexType name="GeoTarget">
|
90
|
+
<sequence>
|
91
|
+
<element maxOccurs="unbounded" name="countries" nillable="true" type="xsd:string"/>
|
92
|
+
<element maxOccurs="unbounded" name="regions" nillable="true" type="xsd:string"/>
|
93
|
+
<element maxOccurs="unbounded" name="metros" nillable="true" type="xsd:string"/>
|
94
|
+
<element maxOccurs="unbounded" name="cities" nillable="true" type="xsd:string"/>
|
95
|
+
</sequence>
|
96
|
+
</complexType>
|
97
|
+
<!-- Campaign Status -->
|
98
|
+
<simpleType name="CampaignStatus">
|
99
|
+
<restriction base="string">
|
100
|
+
<enumeration value="Active"/>
|
101
|
+
<enumeration value="Pending"/>
|
102
|
+
<enumeration value="Ended"/>
|
103
|
+
<enumeration value="Paused"/>
|
104
|
+
<enumeration value="Deleted"/>
|
105
|
+
<enumeration value="Suspended"/>
|
106
|
+
</restriction>
|
107
|
+
</simpleType>
|
108
|
+
<complexType name="Campaign">
|
109
|
+
<sequence>
|
110
|
+
<element name="id" type="xsd:int"/>
|
111
|
+
<element name="name" nillable="true" type="xsd:string"/>
|
112
|
+
<element name="status" nillable="true" type="impl:CampaignStatus"/>
|
113
|
+
<element name="startDate" nillable="true" type="xsd:dateTime"/>
|
114
|
+
<element name="endDate" nillable="true" type="xsd:dateTime"/>
|
115
|
+
<element name="dailyBudget" type="xsd:long"/>
|
116
|
+
<element name="optInSearchNetwork" nillable="true" type="xsd:boolean"/>
|
117
|
+
<element name="optInContentNetwork" nillable="true" type="xsd:boolean"/>
|
118
|
+
<element maxOccurs="unbounded" name="campaignNegativeKeywords" nillable="true" type="impl:Keyword"/>
|
119
|
+
<element name="languageTargeting" nillable="true" type="impl:LanguageTarget"/>
|
120
|
+
<element name="geoTargeting" nillable="true" type="impl:GeoTarget"/>
|
121
|
+
</sequence>
|
122
|
+
</complexType>
|
123
|
+
<complexType name="ApiException">
|
124
|
+
<sequence>
|
125
|
+
<element name="code" type="xsd:int"/>
|
126
|
+
<element name="internal" type="xsd:boolean"/>
|
127
|
+
<element name="message" nillable="true" type="xsd:string"/>
|
128
|
+
<element name="trigger" nillable="true" type="xsd:string"/>
|
129
|
+
</sequence>
|
130
|
+
</complexType>
|
131
|
+
<element name="fault" type="impl:ApiException"/>
|
132
|
+
<element name="getCampaignList">
|
133
|
+
<complexType>
|
134
|
+
<sequence>
|
135
|
+
<element maxOccurs="unbounded" name="ids" type="xsd:int"/>
|
136
|
+
</sequence>
|
137
|
+
</complexType>
|
138
|
+
</element>
|
139
|
+
<element name="getCampaignListResponse">
|
140
|
+
<complexType>
|
141
|
+
<sequence>
|
142
|
+
<element maxOccurs="unbounded" name="getCampaignListReturn" type="impl:Campaign"/>
|
143
|
+
</sequence>
|
144
|
+
</complexType>
|
145
|
+
</element>
|
146
|
+
<element name="getAllAdWordsCampaigns">
|
147
|
+
<complexType>
|
148
|
+
<sequence>
|
149
|
+
<element name="dummy" type="xsd:int"/>
|
150
|
+
</sequence>
|
151
|
+
</complexType>
|
152
|
+
</element>
|
153
|
+
<element name="getAllAdWordsCampaignsResponse">
|
154
|
+
<complexType>
|
155
|
+
<sequence>
|
156
|
+
<element maxOccurs="unbounded" name="getAllAdWordsCampaignsReturn" type="impl:Campaign"/>
|
157
|
+
</sequence>
|
158
|
+
</complexType>
|
159
|
+
</element>
|
160
|
+
<element name="addCampaign">
|
161
|
+
<complexType>
|
162
|
+
<sequence>
|
163
|
+
<element name="campaign" type="impl:Campaign"/>
|
164
|
+
</sequence>
|
165
|
+
</complexType>
|
166
|
+
</element>
|
167
|
+
<element name="addCampaignResponse">
|
168
|
+
<complexType>
|
169
|
+
<sequence>
|
170
|
+
<element name="addCampaignReturn" type="impl:Campaign"/>
|
171
|
+
</sequence>
|
172
|
+
</complexType>
|
173
|
+
</element>
|
174
|
+
<element name="addCampaignList">
|
175
|
+
<complexType>
|
176
|
+
<sequence>
|
177
|
+
<element maxOccurs="unbounded" name="campaigns" type="impl:Campaign"/>
|
178
|
+
</sequence>
|
179
|
+
</complexType>
|
180
|
+
</element>
|
181
|
+
<element name="addCampaignListResponse">
|
182
|
+
<complexType>
|
183
|
+
<sequence>
|
184
|
+
<element maxOccurs="unbounded" name="addCampaignListReturn" type="impl:Campaign"/>
|
185
|
+
</sequence>
|
186
|
+
</complexType>
|
187
|
+
</element>
|
188
|
+
<element name="updateCampaign">
|
189
|
+
<complexType>
|
190
|
+
<sequence>
|
191
|
+
<element name="campaign" type="impl:Campaign"/>
|
192
|
+
</sequence>
|
193
|
+
</complexType>
|
194
|
+
</element>
|
195
|
+
<element name="updateCampaignResponse">
|
196
|
+
<complexType/>
|
197
|
+
</element>
|
198
|
+
<element name="updateCampaignList">
|
199
|
+
<complexType>
|
200
|
+
<sequence>
|
201
|
+
<element maxOccurs="unbounded" name="campaigns" type="impl:Campaign"/>
|
202
|
+
</sequence>
|
203
|
+
</complexType>
|
204
|
+
</element>
|
205
|
+
<element name="updateCampaignListResponse">
|
206
|
+
<complexType/>
|
207
|
+
</element>
|
208
|
+
<element name="getOptimizeAdServing">
|
209
|
+
<complexType>
|
210
|
+
<sequence>
|
211
|
+
<element name="campaignId" type="xsd:int"/>
|
212
|
+
</sequence>
|
213
|
+
</complexType>
|
214
|
+
</element>
|
215
|
+
<element name="getOptimizeAdServingResponse">
|
216
|
+
<complexType>
|
217
|
+
<sequence>
|
218
|
+
<element name="getOptimizeAdServingReturn" type="xsd:boolean"/>
|
219
|
+
</sequence>
|
220
|
+
</complexType>
|
221
|
+
</element>
|
222
|
+
<element name="setOptimizeAdServing">
|
223
|
+
<complexType>
|
224
|
+
<sequence>
|
225
|
+
<element name="campaignId" type="xsd:int"/>
|
226
|
+
<element name="enable" type="xsd:boolean"/>
|
227
|
+
</sequence>
|
228
|
+
</complexType>
|
229
|
+
</element>
|
230
|
+
<element name="setOptimizeAdServingResponse">
|
231
|
+
<complexType/>
|
232
|
+
</element>
|
233
|
+
<element name="getCampaignStats">
|
234
|
+
<complexType>
|
235
|
+
<sequence>
|
236
|
+
<element maxOccurs="unbounded" name="campaignIds" type="xsd:int"/>
|
237
|
+
<element name="start" type="xsd:dateTime"/>
|
238
|
+
<element name="end" type="xsd:dateTime"/>
|
239
|
+
</sequence>
|
240
|
+
</complexType>
|
241
|
+
</element>
|
242
|
+
<element name="getCampaignStatsResponse">
|
243
|
+
<complexType>
|
244
|
+
<sequence>
|
245
|
+
<element maxOccurs="unbounded" name="getCampaignStatsReturn" type="impl:StatsRecord"/>
|
246
|
+
</sequence>
|
247
|
+
</complexType>
|
248
|
+
</element>
|
249
|
+
<complexType name="StatsRecord">
|
250
|
+
<sequence>
|
251
|
+
<element name="averagePosition" type="xsd:double"/>
|
252
|
+
<element name="clicks" type="xsd:long"/>
|
253
|
+
<element name="conversionRate" type="xsd:double"/>
|
254
|
+
<element name="conversions" type="xsd:long"/>
|
255
|
+
<element name="cost" type="xsd:long"/>
|
256
|
+
<element name="id" type="xsd:long"/>
|
257
|
+
<element name="impressions" type="xsd:long"/>
|
258
|
+
</sequence>
|
259
|
+
</complexType>
|
260
|
+
</schema>
|
261
|
+
</wsdl:types>
|
262
|
+
|
263
|
+
<wsdl:message name="token">
|
264
|
+
<wsdl:part element="impl:token" name="token"/>
|
265
|
+
</wsdl:message><wsdl:message name="useragent">
|
266
|
+
<wsdl:part element="impl:useragent" name="useragent"/>
|
267
|
+
</wsdl:message><wsdl:message name="password">
|
268
|
+
<wsdl:part element="impl:password" name="password"/>
|
269
|
+
</wsdl:message><wsdl:message name="email">
|
270
|
+
<wsdl:part element="impl:email" name="email"/>
|
271
|
+
</wsdl:message><wsdl:message name="clientEmail">
|
272
|
+
<wsdl:part element="impl:clientEmail" name="clientEmail"/>
|
273
|
+
</wsdl:message><wsdl:message name="responseTime">
|
274
|
+
<wsdl:part element="impl:responseTime" name="responseTime"/>
|
275
|
+
</wsdl:message><wsdl:message name="operations">
|
276
|
+
<wsdl:part element="impl:operations" name="operations"/>
|
277
|
+
</wsdl:message>
|
278
|
+
|
279
|
+
<wsdl:message name="updateCampaignRequest">
|
280
|
+
|
281
|
+
<wsdl:part element="impl:updateCampaign" name="parameters"/>
|
282
|
+
|
283
|
+
</wsdl:message>
|
284
|
+
|
285
|
+
<wsdl:message name="setOptimizeAdServingResponse">
|
286
|
+
|
287
|
+
<wsdl:part element="impl:setOptimizeAdServingResponse" name="parameters"/>
|
288
|
+
|
289
|
+
</wsdl:message>
|
290
|
+
|
291
|
+
<wsdl:message name="addCampaignListResponse">
|
292
|
+
|
293
|
+
<wsdl:part element="impl:addCampaignListResponse" name="parameters"/>
|
294
|
+
|
295
|
+
</wsdl:message>
|
296
|
+
|
297
|
+
<wsdl:message name="getCampaignListResponse">
|
298
|
+
|
299
|
+
<wsdl:part element="impl:getCampaignListResponse" name="parameters"/>
|
300
|
+
|
301
|
+
</wsdl:message>
|
302
|
+
|
303
|
+
<wsdl:message name="getCampaignResponse">
|
304
|
+
|
305
|
+
<wsdl:part element="impl:getCampaignResponse" name="parameters"/>
|
306
|
+
|
307
|
+
</wsdl:message>
|
308
|
+
|
309
|
+
<wsdl:message name="getOptimizeAdServingRequest">
|
310
|
+
|
311
|
+
<wsdl:part element="impl:getOptimizeAdServing" name="parameters"/>
|
312
|
+
|
313
|
+
</wsdl:message>
|
314
|
+
|
315
|
+
<wsdl:message name="getAllAdWordsCampaignsRequest">
|
316
|
+
|
317
|
+
<wsdl:part element="impl:getAllAdWordsCampaigns" name="parameters"/>
|
318
|
+
|
319
|
+
</wsdl:message>
|
320
|
+
|
321
|
+
<wsdl:message name="ApiException">
|
322
|
+
|
323
|
+
<wsdl:part element="impl:fault" name="fault"/>
|
324
|
+
|
325
|
+
</wsdl:message>
|
326
|
+
|
327
|
+
<wsdl:message name="getCampaignListRequest">
|
328
|
+
|
329
|
+
<wsdl:part element="impl:getCampaignList" name="parameters"/>
|
330
|
+
|
331
|
+
</wsdl:message>
|
332
|
+
|
333
|
+
<wsdl:message name="updateCampaignListRequest">
|
334
|
+
|
335
|
+
<wsdl:part element="impl:updateCampaignList" name="parameters"/>
|
336
|
+
|
337
|
+
</wsdl:message>
|
338
|
+
|
339
|
+
<wsdl:message name="getAllAdWordsCampaignsResponse">
|
340
|
+
|
341
|
+
<wsdl:part element="impl:getAllAdWordsCampaignsResponse" name="parameters"/>
|
342
|
+
|
343
|
+
</wsdl:message>
|
344
|
+
|
345
|
+
<wsdl:message name="getCampaignRequest">
|
346
|
+
|
347
|
+
<wsdl:part element="impl:getCampaign" name="parameters"/>
|
348
|
+
|
349
|
+
</wsdl:message>
|
350
|
+
|
351
|
+
<wsdl:message name="setOptimizeAdServingRequest">
|
352
|
+
|
353
|
+
<wsdl:part element="impl:setOptimizeAdServing" name="parameters"/>
|
354
|
+
|
355
|
+
</wsdl:message>
|
356
|
+
|
357
|
+
<wsdl:message name="updateCampaignResponse">
|
358
|
+
|
359
|
+
<wsdl:part element="impl:updateCampaignResponse" name="parameters"/>
|
360
|
+
|
361
|
+
</wsdl:message>
|
362
|
+
|
363
|
+
<wsdl:message name="addCampaignRequest">
|
364
|
+
|
365
|
+
<wsdl:part element="impl:addCampaign" name="parameters"/>
|
366
|
+
|
367
|
+
</wsdl:message>
|
368
|
+
|
369
|
+
<wsdl:message name="getOptimizeAdServingResponse">
|
370
|
+
|
371
|
+
<wsdl:part element="impl:getOptimizeAdServingResponse" name="parameters"/>
|
372
|
+
|
373
|
+
</wsdl:message>
|
374
|
+
|
375
|
+
<wsdl:message name="addCampaignResponse">
|
376
|
+
|
377
|
+
<wsdl:part element="impl:addCampaignResponse" name="parameters"/>
|
378
|
+
|
379
|
+
</wsdl:message>
|
380
|
+
|
381
|
+
<wsdl:message name="updateCampaignListResponse">
|
382
|
+
|
383
|
+
<wsdl:part element="impl:updateCampaignListResponse" name="parameters"/>
|
384
|
+
|
385
|
+
</wsdl:message>
|
386
|
+
|
387
|
+
<wsdl:message name="addCampaignListRequest">
|
388
|
+
|
389
|
+
<wsdl:part element="impl:addCampaignList" name="parameters"/>
|
390
|
+
|
391
|
+
</wsdl:message>
|
392
|
+
|
393
|
+
<wsdl:message name="getCampaignStatsRequest">
|
394
|
+
|
395
|
+
<wsdl:part element="impl:getCampaignStats" name="parameters"/>
|
396
|
+
|
397
|
+
</wsdl:message>
|
398
|
+
|
399
|
+
<wsdl:message name="getCampaignStatsResponse">
|
400
|
+
|
401
|
+
<wsdl:part element="impl:getCampaignStatsResponse" name="parameters"/>
|
402
|
+
|
403
|
+
</wsdl:message>
|
404
|
+
|
405
|
+
<wsdl:portType name="CampaignService">
|
406
|
+
|
407
|
+
<wsdl:operation name="getCampaign">
|
408
|
+
|
409
|
+
<wsdl:input message="impl:getCampaignRequest" name="getCampaignRequest"/>
|
410
|
+
|
411
|
+
<wsdl:output message="impl:getCampaignResponse" name="getCampaignResponse"/>
|
412
|
+
|
413
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
414
|
+
|
415
|
+
</wsdl:operation>
|
416
|
+
|
417
|
+
<wsdl:operation name="getCampaignList">
|
418
|
+
|
419
|
+
<wsdl:input message="impl:getCampaignListRequest" name="getCampaignListRequest"/>
|
420
|
+
|
421
|
+
<wsdl:output message="impl:getCampaignListResponse" name="getCampaignListResponse"/>
|
422
|
+
|
423
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
424
|
+
|
425
|
+
</wsdl:operation>
|
426
|
+
|
427
|
+
<wsdl:operation name="getAllAdWordsCampaigns">
|
428
|
+
|
429
|
+
<wsdl:input message="impl:getAllAdWordsCampaignsRequest" name="getAllAdWordsCampaignsRequest"/>
|
430
|
+
|
431
|
+
<wsdl:output message="impl:getAllAdWordsCampaignsResponse" name="getAllAdWordsCampaignsResponse"/>
|
432
|
+
|
433
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
434
|
+
|
435
|
+
</wsdl:operation>
|
436
|
+
|
437
|
+
<wsdl:operation name="addCampaign">
|
438
|
+
|
439
|
+
<wsdl:input message="impl:addCampaignRequest" name="addCampaignRequest"/>
|
440
|
+
|
441
|
+
<wsdl:output message="impl:addCampaignResponse" name="addCampaignResponse"/>
|
442
|
+
|
443
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
444
|
+
|
445
|
+
</wsdl:operation>
|
446
|
+
|
447
|
+
<wsdl:operation name="addCampaignList">
|
448
|
+
|
449
|
+
<wsdl:input message="impl:addCampaignListRequest" name="addCampaignListRequest"/>
|
450
|
+
|
451
|
+
<wsdl:output message="impl:addCampaignListResponse" name="addCampaignListResponse"/>
|
452
|
+
|
453
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
454
|
+
|
455
|
+
</wsdl:operation>
|
456
|
+
|
457
|
+
<wsdl:operation name="updateCampaign">
|
458
|
+
|
459
|
+
<wsdl:input message="impl:updateCampaignRequest" name="updateCampaignRequest"/>
|
460
|
+
|
461
|
+
<wsdl:output message="impl:updateCampaignResponse" name="updateCampaignResponse"/>
|
462
|
+
|
463
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
464
|
+
|
465
|
+
</wsdl:operation>
|
466
|
+
|
467
|
+
<wsdl:operation name="updateCampaignList">
|
468
|
+
|
469
|
+
<wsdl:input message="impl:updateCampaignListRequest" name="updateCampaignListRequest"/>
|
470
|
+
|
471
|
+
<wsdl:output message="impl:updateCampaignListResponse" name="updateCampaignListResponse"/>
|
472
|
+
|
473
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
474
|
+
|
475
|
+
</wsdl:operation>
|
476
|
+
|
477
|
+
<wsdl:operation name="getOptimizeAdServing">
|
478
|
+
|
479
|
+
<wsdl:input message="impl:getOptimizeAdServingRequest" name="getOptimizeAdServingRequest"/>
|
480
|
+
|
481
|
+
<wsdl:output message="impl:getOptimizeAdServingResponse" name="getOptimizeAdServingResponse"/>
|
482
|
+
|
483
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
484
|
+
|
485
|
+
</wsdl:operation>
|
486
|
+
|
487
|
+
<wsdl:operation name="setOptimizeAdServing">
|
488
|
+
|
489
|
+
<wsdl:input message="impl:setOptimizeAdServingRequest" name="setOptimizeAdServingRequest"/>
|
490
|
+
|
491
|
+
<wsdl:output message="impl:setOptimizeAdServingResponse" name="setOptimizeAdServingResponse"/>
|
492
|
+
|
493
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
494
|
+
|
495
|
+
</wsdl:operation>
|
496
|
+
|
497
|
+
<wsdl:operation name="getCampaignStats">
|
498
|
+
|
499
|
+
<wsdl:input message="impl:getCampaignStatsRequest" name="getCampaignStatsRequest"/>
|
500
|
+
|
501
|
+
<wsdl:output message="impl:getCampaignStatsResponse" name="getCampaignStatsResponse"/>
|
502
|
+
|
503
|
+
<wsdl:fault message="impl:ApiException" name="ApiException"/>
|
504
|
+
|
505
|
+
</wsdl:operation>
|
506
|
+
|
507
|
+
</wsdl:portType>
|
508
|
+
|
509
|
+
<wsdl:binding name="CampaignServiceSoapBinding" type="impl:CampaignService">
|
510
|
+
|
511
|
+
<wsdlsoap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
|
512
|
+
|
513
|
+
<wsdl:operation name="getCampaign">
|
514
|
+
|
515
|
+
<wsdlsoap:operation soapAction=""/>
|
516
|
+
|
517
|
+
<wsdl:input name="getCampaignRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
518
|
+
|
519
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
520
|
+
|
521
|
+
</wsdl:input>
|
522
|
+
|
523
|
+
<wsdl:output name="getCampaignResponse">
|
524
|
+
|
525
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
526
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
527
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
528
|
+
|
529
|
+
</wsdl:output>
|
530
|
+
|
531
|
+
<wsdl:fault name="ApiException">
|
532
|
+
|
533
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
534
|
+
|
535
|
+
</wsdl:fault>
|
536
|
+
|
537
|
+
</wsdl:operation>
|
538
|
+
|
539
|
+
<wsdl:operation name="getCampaignList">
|
540
|
+
|
541
|
+
<wsdlsoap:operation soapAction=""/>
|
542
|
+
|
543
|
+
<wsdl:input name="getCampaignListRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
544
|
+
|
545
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
546
|
+
|
547
|
+
</wsdl:input>
|
548
|
+
|
549
|
+
<wsdl:output name="getCampaignListResponse">
|
550
|
+
|
551
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
552
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
553
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
554
|
+
|
555
|
+
</wsdl:output>
|
556
|
+
|
557
|
+
<wsdl:fault name="ApiException">
|
558
|
+
|
559
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
560
|
+
|
561
|
+
</wsdl:fault>
|
562
|
+
|
563
|
+
</wsdl:operation>
|
564
|
+
|
565
|
+
<wsdl:operation name="getAllAdWordsCampaigns">
|
566
|
+
|
567
|
+
<wsdlsoap:operation soapAction=""/>
|
568
|
+
|
569
|
+
<wsdl:input name="getAllAdWordsCampaignsRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
570
|
+
|
571
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
572
|
+
|
573
|
+
</wsdl:input>
|
574
|
+
|
575
|
+
<wsdl:output name="getAllAdWordsCampaignsResponse">
|
576
|
+
|
577
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
578
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
579
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
580
|
+
|
581
|
+
</wsdl:output>
|
582
|
+
|
583
|
+
<wsdl:fault name="ApiException">
|
584
|
+
|
585
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
586
|
+
|
587
|
+
</wsdl:fault>
|
588
|
+
|
589
|
+
</wsdl:operation>
|
590
|
+
|
591
|
+
<wsdl:operation name="addCampaign">
|
592
|
+
|
593
|
+
<wsdlsoap:operation soapAction=""/>
|
594
|
+
|
595
|
+
<wsdl:input name="addCampaignRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
596
|
+
|
597
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
598
|
+
|
599
|
+
</wsdl:input>
|
600
|
+
|
601
|
+
<wsdl:output name="addCampaignResponse">
|
602
|
+
|
603
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
604
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
605
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
606
|
+
|
607
|
+
</wsdl:output>
|
608
|
+
|
609
|
+
<wsdl:fault name="ApiException">
|
610
|
+
|
611
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
612
|
+
|
613
|
+
</wsdl:fault>
|
614
|
+
|
615
|
+
</wsdl:operation>
|
616
|
+
|
617
|
+
<wsdl:operation name="addCampaignList">
|
618
|
+
|
619
|
+
<wsdlsoap:operation soapAction=""/>
|
620
|
+
|
621
|
+
<wsdl:input name="addCampaignListRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
622
|
+
|
623
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
624
|
+
|
625
|
+
</wsdl:input>
|
626
|
+
|
627
|
+
<wsdl:output name="addCampaignListResponse">
|
628
|
+
|
629
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
630
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
631
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
632
|
+
|
633
|
+
</wsdl:output>
|
634
|
+
|
635
|
+
<wsdl:fault name="ApiException">
|
636
|
+
|
637
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
638
|
+
|
639
|
+
</wsdl:fault>
|
640
|
+
|
641
|
+
</wsdl:operation>
|
642
|
+
|
643
|
+
<wsdl:operation name="updateCampaign">
|
644
|
+
|
645
|
+
<wsdlsoap:operation soapAction=""/>
|
646
|
+
|
647
|
+
<wsdl:input name="updateCampaignRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
648
|
+
|
649
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
650
|
+
|
651
|
+
</wsdl:input>
|
652
|
+
|
653
|
+
<wsdl:output name="updateCampaignResponse">
|
654
|
+
|
655
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
656
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
657
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
658
|
+
|
659
|
+
</wsdl:output>
|
660
|
+
|
661
|
+
<wsdl:fault name="ApiException">
|
662
|
+
|
663
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
664
|
+
|
665
|
+
</wsdl:fault>
|
666
|
+
|
667
|
+
</wsdl:operation>
|
668
|
+
|
669
|
+
<wsdl:operation name="updateCampaignList">
|
670
|
+
|
671
|
+
<wsdlsoap:operation soapAction=""/>
|
672
|
+
|
673
|
+
<wsdl:input name="updateCampaignListRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
674
|
+
|
675
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
676
|
+
|
677
|
+
</wsdl:input>
|
678
|
+
|
679
|
+
<wsdl:output name="updateCampaignListResponse">
|
680
|
+
|
681
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
682
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
683
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
684
|
+
|
685
|
+
</wsdl:output>
|
686
|
+
|
687
|
+
<wsdl:fault name="ApiException">
|
688
|
+
|
689
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
690
|
+
|
691
|
+
</wsdl:fault>
|
692
|
+
|
693
|
+
</wsdl:operation>
|
694
|
+
|
695
|
+
<wsdl:operation name="getOptimizeAdServing">
|
696
|
+
|
697
|
+
<wsdlsoap:operation soapAction=""/>
|
698
|
+
|
699
|
+
<wsdl:input name="getOptimizeAdServingRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
700
|
+
|
701
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
702
|
+
|
703
|
+
</wsdl:input>
|
704
|
+
|
705
|
+
<wsdl:output name="getOptimizeAdServingResponse">
|
706
|
+
|
707
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
708
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
709
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
710
|
+
|
711
|
+
</wsdl:output>
|
712
|
+
|
713
|
+
<wsdl:fault name="ApiException">
|
714
|
+
|
715
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
716
|
+
|
717
|
+
</wsdl:fault>
|
718
|
+
|
719
|
+
</wsdl:operation>
|
720
|
+
|
721
|
+
<wsdl:operation name="setOptimizeAdServing">
|
722
|
+
|
723
|
+
<wsdlsoap:operation soapAction=""/>
|
724
|
+
|
725
|
+
<wsdl:input name="setOptimizeAdServingRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
726
|
+
|
727
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
728
|
+
|
729
|
+
</wsdl:input>
|
730
|
+
|
731
|
+
<wsdl:output name="setOptimizeAdServingResponse">
|
732
|
+
|
733
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
734
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
735
|
+
<wsdlsoap:body namespace="https://adwords.google.com/api/adwords/v2" use="literal"/>
|
736
|
+
|
737
|
+
</wsdl:output>
|
738
|
+
|
739
|
+
<wsdl:fault name="ApiException">
|
740
|
+
|
741
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
742
|
+
|
743
|
+
</wsdl:fault>
|
744
|
+
|
745
|
+
</wsdl:operation>
|
746
|
+
|
747
|
+
<wsdl:operation name="getCampaignStats">
|
748
|
+
|
749
|
+
<wsdlsoap:operation soapAction=""/>
|
750
|
+
|
751
|
+
<wsdl:input name="getCampaignStatsRequest"><wsdlsoap:header message="impl:email" part="email" use="literal"/><wsdlsoap:header message="impl:clientEmail" part="clientEmail" use="literal"/><wsdlsoap:header message="impl:password" part="password" use="literal"/><wsdlsoap:header message="impl:useragent" part="useragent" use="literal"/><wsdlsoap:header message="impl:token" part="token" use="literal"/>
|
752
|
+
|
753
|
+
<wsdlsoap:body use="literal"/>
|
754
|
+
|
755
|
+
</wsdl:input>
|
756
|
+
|
757
|
+
<wsdl:output name="getCampaignStatsResponse">
|
758
|
+
|
759
|
+
<wsdlsoap:header message="impl:responseTime" part="responseTime" use="literal"/>
|
760
|
+
<wsdlsoap:header message="impl:operations" part="operations" use="literal"/>
|
761
|
+
<wsdlsoap:body use="literal"/>
|
762
|
+
|
763
|
+
</wsdl:output>
|
764
|
+
|
765
|
+
<wsdl:fault name="ApiException">
|
766
|
+
|
767
|
+
<wsdlsoap:fault name="ApiException" use="literal"/>
|
768
|
+
|
769
|
+
</wsdl:fault>
|
770
|
+
|
771
|
+
</wsdl:operation>
|
772
|
+
|
773
|
+
</wsdl:binding>
|
774
|
+
|
775
|
+
<wsdl:service name="CampaignServiceService">
|
776
|
+
|
777
|
+
<wsdl:port binding="impl:CampaignServiceSoapBinding" name="CampaignService">
|
778
|
+
|
779
|
+
<wsdlsoap:address location="https://adwords.google.com/api/adwords/v2/CampaignService"/>
|
780
|
+
|
781
|
+
</wsdl:port>
|
782
|
+
|
783
|
+
</wsdl:service>
|
784
|
+
|
785
|
+
</wsdl:definitions>
|