diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-27 10:14:04 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-09-27 10:14:04 +0000 |
commit | 12f88b1f722811ad7716261ba6ba653d69b5f64c (patch) | |
tree | 362112ec8ad9b11deb029184edcc6e0fb795d3d7 /sample/wsdl | |
parent | 5334d202530d25c5ff18be092b19be0d0261882a (diff) | |
download | ruby-12f88b1f722811ad7716261ba6ba653d69b5f64c.tar.gz ruby-12f88b1f722811ad7716261ba6ba653d69b5f64c.tar.xz ruby-12f88b1f722811ad7716261ba6ba653d69b5f64c.zip |
* sample/wsdl/amazon/wsdlDriver.rb: syntax error fixed (variable devtag not
declared)
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4613 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'sample/wsdl')
-rw-r--r-- | sample/wsdl/amazon/wsdlDriver.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/wsdl/amazon/wsdlDriver.rb b/sample/wsdl/amazon/wsdlDriver.rb index baf55a496..3abf40bb3 100644 --- a/sample/wsdl/amazon/wsdlDriver.rb +++ b/sample/wsdl/amazon/wsdlDriver.rb @@ -30,6 +30,7 @@ end # You must get 'developer's token" from http://associates.amazon.com/exec/panama/associates/ntg/browse/-/1067662 to use Amazon Web Services 2.0. #devtag = File.open(File.expand_path("~/.amazon_key")).read.chomp +devtag = nil AMAZON_WSDL = 'http://soap.amazon.com/schemas2/AmazonWebServices.wsdl' amazon = SOAP::WSDLDriverFactory.new(AMAZON_WSDL).create_driver |