<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Experimenting with Google AppEngine for Java</title>
	<atom:link href="http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/</link>
	<description>Mr Blog.  Very technical, or silly, sometimes absurd.</description>
	<lastBuildDate>Wed, 16 May 2012 18:11:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: MrBlog</title>
		<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/comment-page-1/#comment-5398</link>
		<dc:creator>MrBlog</dc:creator>
		<pubDate>Sun, 17 Jan 2010 17:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://mrblog.org/?p=933#comment-5398</guid>
		<description>@Mohammad Have a look at the code in &quot;Quick Bit Notes&quot; which is on Google code.

http://quickbitnotes.appspot.com/about/download

It&#039;s pretty small and includes Restlets that access the GAE datastore.</description>
		<content:encoded><![CDATA[<p>@Mohammad Have a look at the code in &#8220;Quick Bit Notes&#8221; which is on Google code.</p>
<p><a href="http://quickbitnotes.appspot.com/about/download" rel="nofollow">http://quickbitnotes.appspot.com/about/download</a></p>
<p>It&#8217;s pretty small and includes Restlets that access the GAE datastore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammad Abdurraafay</title>
		<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/comment-page-1/#comment-5397</link>
		<dc:creator>Mohammad Abdurraafay</dc:creator>
		<pubDate>Sat, 16 Jan 2010 07:44:44 +0000</pubDate>
		<guid isPermaLink="false">http://mrblog.org/?p=933#comment-5397</guid>
		<description>Hey,

I just wanna know how to access datastore using Restlet. Please, help.</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>I just wanna know how to access datastore using Restlet. Please, help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr Blog &#187; Blog Archive &#187; Twitmart ported OFF of Google App Engine</title>
		<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/comment-page-1/#comment-5365</link>
		<dc:creator>Mr Blog &#187; Blog Archive &#187; Twitmart ported OFF of Google App Engine</dc:creator>
		<pubDate>Fri, 16 Oct 2009 16:39:58 +0000</pubDate>
		<guid isPermaLink="false">http://mrblog.org/?p=933#comment-5365</guid>
		<description>[...] discussed a few weeks ago how I had ported the Twitmart.org site to Google App Engine for Java as an experiment.  This was an excellent learning experience.  Unfortunately, the performance on [...]</description>
		<content:encoded><![CDATA[<p>[...] discussed a few weeks ago how I had ported the Twitmart.org site to Google App Engine for Java as an experiment.  This was an excellent learning experience.  Unfortunately, the performance on [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mr Blog &#187; Blog Archive &#187; Introducing Quick Bit Notes</title>
		<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/comment-page-1/#comment-5364</link>
		<dc:creator>Mr Blog &#187; Blog Archive &#187; Introducing Quick Bit Notes</dc:creator>
		<pubDate>Tue, 13 Oct 2009 05:00:10 +0000</pubDate>
		<guid isPermaLink="false">http://mrblog.org/?p=933#comment-5364</guid>
		<description>[...] service is running on Google App Engine for Java and is available as open-source on Google code: http://code.google.com/p/quickbitnotes. It should [...]</description>
		<content:encoded><![CDATA[<p>[...] service is running on Google App Engine for Java and is available as open-source on Google code: <a href="http://code.google.com/p/quickbitnotes" rel="nofollow">http://code.google.com/p/quickbitnotes</a>. It should [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MrBlog</title>
		<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/comment-page-1/#comment-5362</link>
		<dc:creator>MrBlog</dc:creator>
		<pubDate>Tue, 06 Oct 2009 14:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://mrblog.org/?p=933#comment-5362</guid>
		<description>You need to define the ImageFile class and of course populate it with the image data.  I use the following class:

&lt;code&gt;public class ImageFile implements Serializable {
    private byte[] content;
    private String filename;
    private String mimeType;

    public ImageFile(byte[] content, String filename, String mimeType) {
        this.content = content;
        this.filename = filename;
        this.mimeType = mimeType;
    }

    public byte[] getContent() {
        return content;
    }

    public String getFilename() {
        return filename;
    }

    public String getMimeType() {
        return mimeType;
    }
}
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>You need to define the ImageFile class and of course populate it with the image data.  I use the following class:</p>
<p><code>public class ImageFile implements Serializable {<br />
    private byte[] content;<br />
    private String filename;<br />
    private String mimeType;</p>
<p>    public ImageFile(byte[] content, String filename, String mimeType) {<br />
        this.content = content;<br />
        this.filename = filename;<br />
        this.mimeType = mimeType;<br />
    }</p>
<p>    public byte[] getContent() {<br />
        return content;<br />
    }</p>
<p>    public String getFilename() {<br />
        return filename;<br />
    }</p>
<p>    public String getMimeType() {<br />
        return mimeType;<br />
    }<br />
}<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin Joshi</title>
		<link>http://mrblog.org/2009/10/01/experimenting-with-google-appengine-for-java/comment-page-1/#comment-5361</link>
		<dc:creator>Nitin Joshi</dc:creator>
		<pubDate>Mon, 05 Oct 2009 13:20:57 +0000</pubDate>
		<guid isPermaLink="false">http://mrblog.org/?p=933#comment-5361</guid>
		<description>I want to store image file in google app engine&#039;s datastore, 
but i am not getting how to do it.

I tried following but the &quot;ImageFile&quot; class doesn&#039;t exist.
@Persistent(serialized = &quot;true&quot;)
private ImageFile imgfile1;

please help.

Thanks,
Nitin Joshi.</description>
		<content:encoded><![CDATA[<p>I want to store image file in google app engine&#8217;s datastore,<br />
but i am not getting how to do it.</p>
<p>I tried following but the &#8220;ImageFile&#8221; class doesn&#8217;t exist.<br />
@Persistent(serialized = &#8220;true&#8221;)<br />
private ImageFile imgfile1;</p>
<p>please help.</p>
<p>Thanks,<br />
Nitin Joshi.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

