<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://groups.google.com/group/typica</id>
  <title type="text">typica Google Group</title>
  <subtitle type="text">
  this is a forum for users of typica - A Java client library for Amazon&#39;s SQS REST web service
  </subtitle>
  <link href="/group/typica/feed/atom_v1_0_msgs.xml" rel="self" title="typica feed"/>
  <updated>2011-06-25T17:32:09Z</updated>
  <generator uri="http://groups.google.com" version="1.99">Google Groups</generator>
  <entry>
  <author>
  <name>Daniel Rinehart</name>
  <email>dani...@neophi.com</email>
  </author>
  <updated>2011-06-25T17:32:09Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/db8e6d4f774ad13f/33e73cf0ed5d06c9?show_docid=33e73cf0ed5d06c9</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/db8e6d4f774ad13f/33e73cf0ed5d06c9?show_docid=33e73cf0ed5d06c9"/>
  <title type="text">Re: [typica] Ec2 instance Help please</title>
  <summary type="html" xml:space="preserve">
  While typica can be used to start and stop instances, it doesn&#39;t &lt;br&gt; handle installing or running software on those instances. You&#39;ll need &lt;br&gt; to use some other process to get the software you want to run onto &lt;br&gt; them. Based on what you are doing custom images, a company like &lt;br&gt; RightScale, or scripting with ssh might work, combined with a generic
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Kavanagh</name>
  <email>dkavan...@gmail.com</email>
  </author>
  <updated>2011-06-21T19:07:30Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/7307a0f694ea43f3/45fe4250b92734e1?show_docid=45fe4250b92734e1</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/7307a0f694ea43f3/45fe4250b92734e1?show_docid=45fe4250b92734e1"/>
  <title type="text">Release and GitHub</title>
  <summary type="html" xml:space="preserve">
  I&#39;m working on a set of changes to support tagging and filtering in EC2. &lt;br&gt; Once that&#39;s complete and I&#39;ve looked over the issues (and solved what I &lt;br&gt; can), I&#39;ll generate another release. I have some newer simpleDB features &lt;br&gt; already checked in. &lt;br&gt; Post release, I&#39;d like to get the code moved to github.com. Toward that end,
  </summary>
  </entry>
  <entry>
  <author>
  <name>varsha</name>
  <email>varshu...@gmail.com</email>
  </author>
  <updated>2011-06-22T02:58:50Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/db8e6d4f774ad13f/921e86d089cf741e?show_docid=921e86d089cf741e</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/db8e6d4f774ad13f/921e86d089cf741e?show_docid=921e86d089cf741e"/>
  <title type="text">Ec2 instance Help please</title>
  <summary type="html" xml:space="preserve">
  Hi all, &lt;br&gt; &lt;p&gt;I&#39;m doing my graduation Masters project on Graph Mining. &lt;br&gt; So the plan is to deploy the project on Amazon&#39;s EC2 and I&#39;m coding in &lt;br&gt; Java. &lt;br&gt; I have already set up the account with Amazon and half way through in &lt;br&gt; my project. &lt;br&gt; &lt;p&gt;I figured out the ways to start the instances from the command line
  </summary>
  </entry>
  <entry>
  <author>
  <name>project2501</name>
  <email>darreng5...@gmail.com</email>
  </author>
  <updated>2011-06-12T17:11:50Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/37889a0cb2cab32d/43926f89047eebc5?show_docid=43926f89047eebc5</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/37889a0cb2cab32d/43926f89047eebc5?show_docid=43926f89047eebc5"/>
  <title type="text">Re: describe images</title>
  <summary type="html" xml:space="preserve">
  Hi David, &lt;br&gt; Thanks for the reply. How can I get the current owner though? &lt;br&gt; I run my application from a AMI itself and input the keys at runtime. &lt;br&gt; So the code needs to know how to get the owner of the keys. &lt;br&gt; &lt;p&gt;I couldn&#39;t see how to do that. &lt;br&gt; &lt;p&gt;Thanks for a great API! &lt;br&gt; &lt;p&gt;Darren
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Kavanagh</name>
  <email>dkavan...@gmail.com</email>
  </author>
  <updated>2011-06-11T21:21:00Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/37889a0cb2cab32d/f81d9d74c4ce10a8?show_docid=f81d9d74c4ce10a8</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/37889a0cb2cab32d/f81d9d74c4ce10a8?show_docid=f81d9d74c4ce10a8"/>
  <title type="text">Re: [typica] describe images</title>
  <summary type="html" xml:space="preserve">
  Darren, &lt;br&gt; You can call &amp;quot;describeImagesByOwner&amp;quot;. Something like this; &lt;br&gt; List&amp;lt;String&amp;gt; params = new ArrayList&amp;lt;String&amp;gt;(); &lt;br&gt; params.add(&amp;quot;365812321051&amp;quot;); &lt;br&gt; List&amp;lt;ImageDescription&amp;gt; images = ec2.describeImagesByOwner(para ms); &lt;br&gt; logger.info(&amp;quot;Available Images&amp;quot;); &lt;br&gt; for (ImageDescription img : images) { &lt;br&gt; if (img.getImageState().equals(&amp;quot;a vailable&amp;quot;)) {
  </summary>
  </entry>
  <entry>
  <author>
  <name>project2501</name>
  <email>darreng5...@gmail.com</email>
  </author>
  <updated>2011-06-11T17:10:50Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/37889a0cb2cab32d/dc127607162ca68f?show_docid=dc127607162ca68f</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/37889a0cb2cab32d/dc127607162ca68f?show_docid=dc127607162ca68f"/>
  <title type="text">describe images</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; I want to describe the images owned by me. How is this possible? I &lt;br&gt; couldn&#39;t see how. &lt;br&gt; The API allows to set the owner, but my Jec2() instance already is &lt;br&gt; made from my keys, &lt;br&gt; so how can I get only my private AMI&#39;s? &lt;br&gt; &lt;p&gt;thanks, &lt;br&gt; Darren &lt;br&gt; &lt;p&gt;PS. Also, there is a bug when listing server instances belonging to
  </summary>
  </entry>
  <entry>
  <author>
  <name>Carlos Eduardo Paulino</name>
  <email>kdu...@gmail.com</email>
  </author>
  <updated>2011-06-03T12:05:44Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/e3dc8ae4a9cbf8f6/05b2c4adb6061066?show_docid=05b2c4adb6061066</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/e3dc8ae4a9cbf8f6/05b2c4adb6061066?show_docid=05b2c4adb6061066"/>
  <title type="text">Re: [typica] ec2-describe-tags</title>
  <summary type="html" xml:space="preserve">
  Thanks for the reply Patrick. I have been researching the Java SDK from &lt;br&gt; Amazon. &lt;br&gt; Carlos Eduardo Paulino &lt;br&gt; 2011/6/3 Patrick Lightbody &amp;lt;patr...@lightbody.net&amp;gt;
  </summary>
  </entry>
  <entry>
  <author>
  <name>Patrick Lightbody</name>
  <email>patr...@lightbody.net</email>
  </author>
  <updated>2011-06-03T05:07:46Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/e3dc8ae4a9cbf8f6/8d71f7f75814ff63?show_docid=8d71f7f75814ff63</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/e3dc8ae4a9cbf8f6/8d71f7f75814ff63?show_docid=8d71f7f75814ff63"/>
  <title type="text">Re: [typica] ec2-describe-tags</title>
  <summary type="html" xml:space="preserve">
  I don&#39;t know if it does, since that&#39;s a recent API that Typica hasn&#39;t been refreshed in a while. I love Typica but now that Amazon has it&#39;s own Java SDK I expect you&#39;ll see less activity, so you might want to look in that direction.
  </summary>
  </entry>
  <entry>
  <author>
  <name>Carlos Eduardo Paulino</name>
  <email>kdu...@gmail.com</email>
  </author>
  <updated>2011-06-02T10:11:05Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/e3dc8ae4a9cbf8f6/b98c21f995800875?show_docid=b98c21f995800875</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/e3dc8ae4a9cbf8f6/b98c21f995800875?show_docid=b98c21f995800875"/>
  <title type="text">ec2-describe-tags</title>
  <summary type="html" xml:space="preserve">
  I have a question about Typica. The device supports Typica ec2- &lt;br&gt; describe-tags of the images? &lt;br&gt; &lt;p&gt;Greetings. &lt;br&gt; &lt;p&gt;Carlos Eduardo Paulino
  </summary>
  </entry>
  <entry>
  <author>
  <name>Daniel Rinehart</name>
  <email>dani...@neophi.com</email>
  </author>
  <updated>2011-04-24T13:10:52Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/030f59b5804a4194/1c74faa64ce0ec3f?show_docid=1c74faa64ce0ec3f</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/030f59b5804a4194/1c74faa64ce0ec3f?show_docid=1c74faa64ce0ec3f"/>
  <title type="text">Re: [typica] Private URLs?</title>
  <summary type="html" xml:space="preserve">
  To use SimpleDB with a different server, construct your SimpleDB &lt;br&gt; instance using the version that takes additional arguments: &lt;br&gt; public SimpleDB(String awsAccessId, &lt;br&gt; String awsSecretKey, &lt;br&gt; boolean isSecure, &lt;br&gt; String server, &lt;br&gt; int port) &lt;br&gt; -- Daniel R. &amp;lt;dani...@neophi.com&amp;gt; [&lt;a target=&quot;_blank&quot; rel=nofollow href=&quot;http://danielr.neophi.com/&quot;&gt;[link]&lt;/a&gt;]
  </summary>
  </entry>
  <entry>
  <author>
  <name>project2501</name>
  <email>darreng5...@gmail.com</email>
  </author>
  <updated>2011-04-23T13:28:45Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/030f59b5804a4194/d1512a3ffdd8b737?show_docid=d1512a3ffdd8b737</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/030f59b5804a4194/d1512a3ffdd8b737?show_docid=d1512a3ffdd8b737"/>
  <title type="text">Private URLs?</title>
  <summary type="html" xml:space="preserve">
  Hi, &lt;br&gt; How do you change the AWS service URLs for say SimpleDB? to use a &lt;br&gt; private reference implementation? &lt;br&gt; &lt;p&gt;thanks, &lt;br&gt; Darren
  </summary>
  </entry>
  <entry>
  <author>
  <name>Christopher Merrill</name>
  <email>chris.l.merr...@gmail.com</email>
  </author>
  <updated>2011-04-15T12:59:20Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/148294854edb3c6a/78e174ab374c2767?show_docid=78e174ab374c2767</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/148294854edb3c6a/78e174ab374c2767?show_docid=78e174ab374c2767"/>
  <title type="text">Re: [typica] Set AMI public?</title>
  <summary type="html" xml:space="preserve">
  Ahh....I see it now. I googled all the wrong keywods! I think I may &lt;br&gt; have run across this API previously, but didn&#39;t associate it with the &lt;br&gt; task at hand. &lt;br&gt; Thanks!
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Kavanagh</name>
  <email>dkavan...@gmail.com</email>
  </author>
  <updated>2011-04-14T18:19:23Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/148294854edb3c6a/548e2b4e2119808f?show_docid=548e2b4e2119808f</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/148294854edb3c6a/548e2b4e2119808f?show_docid=548e2b4e2119808f"/>
  <title type="text">Re: [typica] Set AMI public?</title>
  <summary type="html" xml:space="preserve">
  Yes, look for Jec2.modifyImageAttribute(imag eId, attribute, opType)
  </summary>
  </entry>
  <entry>
  <author>
  <name>Chris Merrill</name>
  <email>chris.l.merr...@gmail.com</email>
  </author>
  <updated>2011-04-13T18:12:33Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/148294854edb3c6a/39a50ed030cd8936?show_docid=39a50ed030cd8936</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/148294854edb3c6a/39a50ed030cd8936?show_docid=39a50ed030cd8936"/>
  <title type="text">Set AMI public?</title>
  <summary type="html" xml:space="preserve">
  Does typica have an API for making an AMI public?
  </summary>
  </entry>
  <entry>
  <author>
  <name>David Kavanagh</name>
  <email>dkavan...@gmail.com</email>
  </author>
  <updated>2011-01-11T16:39:31Z</updated>
  <id>http://groups.google.com/group/typica/browse_thread/thread/7df8876b7568e567/fb97514c74c70744?show_docid=fb97514c74c70744</id>
  <link href="http://groups.google.com/group/typica/browse_thread/thread/7df8876b7568e567/fb97514c74c70744?show_docid=fb97514c74c70744"/>
  <title type="text">Re: [typica] Re: batchPutAttributes return code</title>
  <summary type="html" xml:space="preserve">
  Hey guys, &lt;br&gt; I&#39;ve been wondering what to do with typica for a while. My new employeer &lt;br&gt; endorsed me spending some time on it, so long as I got my other work done. &lt;br&gt; Haven&#39;t been too sure when to do that, but I&#39;ve pulled down new WSDL to get &lt;br&gt; started on getting new features in there. &lt;br&gt; I&#39;ve done a little work with jClouds, helping them test against Eucalyptus.
  </summary>
  </entry>
</feed>
