<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0">
<channel>
	<title>Amazon Web Services Book Forum</title>
	<description><![CDATA[O'Reilly's Amazon Web Services Book Forum]]></description>
	<link>http://forums.oreilly.com/index.php</link>
	<pubDate>Fri, 20 Nov 2009 15:04:23 -0500</pubDate>
	<ttl>120</ttl>
	<item>
		<title>Aws::s3 Library</title>
		<link>http://forums.oreilly.com/index.php?showtopic=4982</link>
		<description><![CDATA[Hi,<br /><br />On page 143 of the book, it is stated:<br />"You may experience problems using 0.4.0 of the AWS::S3 library..."<br /><br />Would you tell us which version(s) don't have problems?<br /><br />FYI: I am using aws-s3-0.6.2 and I emulated the usage of s3backup.rb from the bottom of page 142 and didn't experience anything disagreeable.<br /><br />Regards,<br /><br />Tena Sakai]]></description>
		<pubDate>Sun, 02 Aug 2009 01:14:25 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=4982</guid>
	</item>
	<item>
		<title>Still On Page 21...</title>
		<link>http://forums.oreilly.com/index.php?showtopic=4690</link>
		<description><![CDATA[Hi folks,<br /><br />I am still on page 21.  I typed a few lines into a file named example.xml, which looks like:<br /><br />&lt;?xml version='1.0' encoding='UTF-8'?&gt;<br />&lt;ListAllMyBucketsResult xmlns='http://s3.amazon.com/doc/2006-03-01/'&gt;<br />  &lt;Owner&gt;<br />    &lt;ID&gt;1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d5e6f1a2b&lt;/ID&gt;<br />    &lt;DisplayName&gt;jamesmurty&lt;/DisplayName&gt;<br />  &lt;/Owner&gt;<br />  &lt;Buckets&gt;<br />    &lt;Bucket&gt;<br />      &lt;Name&gt;oreilly-aws&lt;/Name&gt;<br />      &lt;CreationDate&gt;2007-09-24T08:20:49.000Z&lt;/CreationDate&gt;<br />    &lt;/Bucket&gt;<br />    &lt;Bucket&gt;<br />      &lt;Name&gt;my-bucket&lt;/Name&gt;<br />      &lt;CreationDate&gt;2007-09-24T08:39:30.000Z&lt;/CreationDate&gt;<br />    &lt;/Bucket&gt;<br />  &lt;/Buckets&gt;<br />&lt;/ListAllMyBucketsResult&gt;<br /><br /><br />Then I typed a few lines like:<br /><br />  [tsakai]$ irb<br />  irb(main):001:0&gt; xml_text = File.new('example.xml','r').read<br />  =&gt; "&lt;?xml version='1.0' encoding='UTF-8'?&gt;&#092;n&lt;ListAllMyBucketsResult xmlns='http://s3.amazon.com/doc/2006-03-01/'&gt;&#092;n  &lt;Owner&gt;&#092;n    &lt;ID&gt;1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d5e6f1a2b&lt;/ID&gt;&#092;n    &lt;DisplayName&gt;jamesmurty&lt;/DisplayName&gt;&#092;n  &lt;/Owner&gt;&#092;n  &lt;Buckets&gt;&#092;n    &lt;Bucket&gt;&#092;n      &lt;Name&gt;oreilly-aws&lt;/Name&gt;&#092;n      &lt;CreationDate&gt;2007-09-24T08:20:49.000Z&lt;/CreationDate&gt;&#092;n    &lt;/Bucket&gt;&#092;n    &lt;Bucket&gt;&#092;n      &lt;Name&gt;my-bucket&lt;/Name&gt;&#092;n      &lt;CreationDate&gt;2007-09-24T08:39:30.000Z&lt;/CreationDate&gt;&#092;n    &lt;/Bucket&gt;&#092;n  &lt;/Buckets&gt;&#092;n&lt;/ListAllMyBucketsResult&gt;&#092;n"<br />  irb(main):002:0&gt; require 'rexml/document'<br />  =&gt; true<br />  irb(main):003:0&gt; xml_doc = REXML::Document.new(xml_text)<br />  =&gt; &lt;UNDEFINED&gt; ... &lt;/&gt;<br />  irb(main):004:0&gt; <br /><br />What I don't understand is the response from my last line:<br />  &lt;UNDEFINED&gt; ... &lt;/&gt;<br /><br />Can someone please tell me what this means?<br /><br />Regards,<br /><br />Tena Sakai]]></description>
		<pubDate>Thu, 02 Jul 2009 00:24:26 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=4690</guid>
	</item>
	<item>
		<title>Trouble With Aws.rb</title>
		<link>http://forums.oreilly.com/index.php?showtopic=4687</link>
		<description><![CDATA[Greetings,<br /><br />I am trying to emulate what's on page 21 of the book, but I can't even get there.  Maybe the code in AWS.rb is incompatible with the version of ruby I am using (ruby-1.9.1-p129)?  Here's what the capture of my screen:<br /><br />[tsakai@vixen ruby]$ irb<br />irb(main):001:0&gt; require 'AWS'<br />SyntaxError: /home/tsakai/Notes/ec2/PAWS/PAWS_examples/ruby/AWS.rb:203: syntax error, unexpected ',', expecting tASSOC<br />...ww-form-urlencoded',{'charset', 'utf-8'})<br />...                               ^<br />/home/tsakai/Notes/ec2/PAWS/PAWS_examples/ruby/AWS.rb:203: syntax error, unexpected '}', expecting keyword_end<br />...rlencoded',{'charset', 'utf-8'})<br />...                               ^<br />/home/tsakai/Notes/ec2/PAWS/PAWS_examples/ruby/AWS.rb:474: syntax error, unexpected keyword_end, expecting $end<br />        from (irb):1:in &#96;require'<br />        from (irb):1<br />        from /usr/local/bin/irb:12:in &#96;&lt;main&gt;'<br />irb(main):002:0&gt; [tsakai@vixen ruby]$ <br />[tsakai@vixen ruby]$ <br /><br />Regards,<br /><br />Tena Sakai]]></description>
		<pubDate>Wed, 01 Jul 2009 19:36:45 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=4687</guid>
	</item>
	<item>
		<title>Amazon Api - Pulling Member Order History</title>
		<link>http://forums.oreilly.com/index.php?showtopic=4612</link>
		<description><![CDATA[Just wondering on this,  I can't find this being possible, and I just want to know if it is because I just am not searching for it correctly, or because they don't allow it.<br /><br />I want to be able to pull in an Amazon customers order history (not just for "my" store(s), but, their entire order history).  Basically having access to this information in the same way you can get access to a Google members information... you have them log into their account, and they grant your site API access.  <br /><br />Is this possible, or is their API basically only built around doing things with your own "store", not general member data (when permission is granted)?<br /><br />]]></description>
		<pubDate>Wed, 24 Jun 2009 10:53:47 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=4612</guid>
	</item>
	<item>
		<title><![CDATA[Can't Get Past Example 2-2]]></title>
		<link>http://forums.oreilly.com/index.php?showtopic=3865</link>
		<description><![CDATA[I set up AWS.rb with Examples 2-1 and 2-2 and inputed the example then get the error message -<br /><br />NoMethodError: undefined method 'encode_base64' for #&lt;Object:0xb7c709a4 @aws_secret_key="MySecretKey"&gt; from .... in 'generate_signature'<br /><br />Any thoughts?<br /><br />]]></description>
		<pubDate>Fri, 27 Mar 2009 16:50:20 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=3865</guid>
	</item>
	<item>
		<title>Win A Free Copy Of This Book, Dedicated By Amazon Cto Werner Vogels</title>
		<link>http://forums.oreilly.com/index.php?showtopic=371</link>
		<description><![CDATA[At <a href="http://virtualization.com/interviews-interview-talk/2008/07/31/virtualization.com-contest-guess-whats-on-werner-vogels-mind-and-win-a-dedicated-book/" target="_blank">virtualization.com</a> we are giving away a free copy of this book, signed by Werner Vogels (amazon CTO). Follow these simple rules. Prior to the 15th of August 2008, you can guess what Vogels has written in this book and provide your answer in the comment section. You don’t necessarily have to get it right, but the funniest, most original, most in-depth or closest comment on this post will be picked out by our editors on the 15th of August 2008. The lucky winner will get a free copy of O’Reilly’s Programming Amazon Web Services: S3, EC2, SQS, FPS, and SimpleDB (Programming) by James Murty, with the hand-signed note from Amazon’s CTO Werner Vogels inside!<br /><br />If you are really creative, we throw in a second freeby, for the funniest fake job title. Get inspired by “Werner Vogels, System Admin at a Small Bookshop (aka CTO Amazon)”<br /><br />More details <a href="http://virtualization.com/interviews-interview-talk/2008/07/31/virtualization.com-contest-guess-whats-on-werner-vogels-mind-and-win-a-dedicated-book/" target="_blank">here</a>.]]></description>
		<pubDate>Thu, 31 Jul 2008 19:01:31 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=371</guid>
	</item>
	<item>
		<title>Trouble Accessing With Paws Python Code</title>
		<link>http://forums.oreilly.com/index.php?showtopic=278</link>
		<description><![CDATA[I'm running Python 2.5.2 with the latest version of lxml.<br /><br />When I try to connect to AWS with the python PAWS code, I receive the following error.  Any idea what I'm doing wrong?  I have environment variables set for AWS_ACCESS_KEY and AWS_SECRET_KEY.<br /><br />Thanks in advance for any assistance...<br /><br /><br />&gt;&gt;&gt; import S3<br />&gt;&gt;&gt; svc = S3.S3()<br />&gt;&gt;&gt; svc.list_buckets()<br />Body:<br />&lt;ListAllMyBucketsResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/"&gt;<br />  &lt;Owner&gt;<br />    &lt;ID&gt;[snipped]&lt;/ID&gt;<br />    &lt;DisplayName&gt;allan&lt;/DisplayName&gt;<br />  &lt;/Owner&gt;<br />  &lt;Buckets/&gt;<br />&lt;/ListAllMyBucketsResult&gt;<br /><br /><br />Traceback (most recent call last):<br />  File "&lt;stdin&gt;", line 1, in &lt;module&gt;<br />  File "S3.py", line 95, in list_buckets<br />    for node in self.xpath_list('//ns:Buckets/ns:Bucket', xmldoc):<br />  File "AWS.py", line 448, in xpath_list<br />    return xml_object.xpath(query, {'ns':self.XML_NAMESPACE})<br />TypeError: function takes at most 1 positional arguments (2 given)<br />]]></description>
		<pubDate>Wed, 11 Jun 2008 12:07:17 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=278</guid>
	</item>
	<item>
		<title>Follow-up Articles</title>
		<link>http://forums.oreilly.com/index.php?showtopic=206</link>
		<description><![CDATA[Hello all,<br /><br />The Amazon Web Services offering is constantly evolving as the services are updated and improved. <br /><br />From time to time, I will publish articles that discuss these changes in depth, with a view to keeping readers of Programming Amazon Web Services up-to-date with major improvements. <br /><br />I will add links to these articles in this topic, so keep an eye on it.<br /><br />Cheers,<br />James]]></description>
		<pubDate>Tue, 29 Apr 2008 04:10:15 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=206</guid>
	</item>
	<item>
		<title><![CDATA[Are Ec2 Elastic Ip's And Availability Zones Covered]]></title>
		<link>http://forums.oreilly.com/index.php?showtopic=159</link>
		<description><![CDATA[James<br /><br />Thanks for this book. It looks excellent! Can't wait to get my hands on one.<br /><br />I was wondering if the book covers the newly announced EC2 elastic IP's and availability zones, seeing that this enhances the nature of the EC2 offering quit substantially. <br /><br />(The predicament of any "dead tree" book is that it can not always reflect all the latest advancements in the topics that it covers. Therefore, even if one could get some sort of online additional info to the book's content regarding elastic IP's, it would be very helpful.)<br /><br />BTW, I am looking forward to getting my copy (and I am very happy that it uses Ruby)<br /><br />Best regards<br />Willem]]></description>
		<pubDate>Wed, 09 Apr 2008 03:56:50 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=159</guid>
	</item>
	<item>
		<title>Sending Email From Ec2</title>
		<link>http://forums.oreilly.com/index.php?showtopic=138</link>
		<description><![CDATA[Hi<br /><br />Does this book discuss the problems with sending email successfully from an EC2 instance?<br /><br />I am currently finding that EC2 is not a solid option since any emails generated by my sites or apps are either being marked as spam or just point blank refused.<br /><br />I am yet to find a reliable solution for this!<br /><br />Lewis]]></description>
		<pubDate>Wed, 02 Apr 2008 06:41:05 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=138</guid>
	</item>
	<item>
		<title>Toc Not Complete?</title>
		<link>http://forums.oreilly.com/index.php?showtopic=137</link>
		<description><![CDATA[I can only see 3 chapters in the TOC section.<br /><br />Where are the chapters for SimpleDB, etc?<br /><br />Thanks.]]></description>
		<pubDate>Tue, 01 Apr 2008 22:26:47 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=137</guid>
	</item>
	<item>
		<title>Having Trouble Finding The Book</title>
		<link>http://forums.oreilly.com/index.php?showtopic=129</link>
		<description><![CDATA[I realize I could pay the full $50 and get an official O'Reilly copy but I'm not rich and Amazon is selling this thing for $32. But even though the release date was Tuesday, Amazon shows your book only available as a "pre-order." So that has me frustrated.<br /><br />Also I don't see an option to buy the PDF anywhere on O'Reilly. Is that an option for your book? <br /><br />Will any of the code you use in the book be available for d/l?<br /><br />The O'Reilly previews suggest the book is very well written. Four services, That was a lot to take on. I'd be impressed with a scope of just one service. Do you plan on publishing more volumes, to accommodate mturk and all the rest?]]></description>
		<pubDate>Thu, 27 Mar 2008 20:57:30 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=129</guid>
	</item>
	<item>
		<title>Welcome</title>
		<link>http://forums.oreilly.com/index.php?showtopic=112</link>
		<description><![CDATA[Welcome to the forum for Programming Amazon Web Services!<br /><br />This forum is the ideal place to discuss the explanations, examples and code included in this book, and to find out how you can use these resources to build your own applications. Please participate so we can all learn from and help each other.<br /><br /><br />If you need answers to general questions about AWS services, you should visit the AWS Discussion Forums to search through past discussions or ask advice of the large developer community: <br /><a href="http://developer.amazonwebservices.com/connect/forumindex.jspa" target="_blank">http://developer.amazonwebservices.com/con...forumindex.jspa</a><br /><br />To find additional code samples, libraries and examples, or to refer to the latest service API documentation, visit Amazon's Developer Connection start page:<br /><a href="http://developer.amazonwebservices.com/connect" target="_blank">http://developer.amazonwebservices.com/connect</a><br /><br />James Murty (author)]]></description>
		<pubDate>Thu, 20 Mar 2008 21:36:39 -0400</pubDate>
		<guid>http://forums.oreilly.com/index.php?showtopic=112</guid>
	</item>
</channel>
</rss>