> > Have you worked on XMPP or instant messenger before ?
No, I haven't had the opportunity yet to work with the IM libraries although they do seem to be straight forward. Do i need any other tool other than eclipse,GWT fro development ? Besides using nearly every kind of browser (with the gwt dev addon), you can get away with just using eclipse with the google plug-in to do everything. There are a bunch of tools and best practices out there that will make your life easier in the long run. The links below are for Windows specific utils since I'm mostly working on Windows for local and Linux for remote. * Definitely use a version control system - I recommend SVN, There are others that are as good. http://tortoisesvn.tigris.org/ (windows shell svn extensions) http://subversion.tigris.org/ * While many people are drawn to using JDO or JPA for the persistent data layers - both have a tough learning curve. I recommend using Objectify to hide much of the complexities in using Big Table's no-sql nature. http://code.google.com/p/objectify-appengine/ * As you advance, you will want to use Google Guice & GIN to simplify & document the dependencies http://code.google.com/p/google-guice/ * A local proxy service brings daylight to the way the components communicate on the network. http://www.fiddler2.com/fiddler2/ * Firefox add-ons that are invaluable Firebug! - allows you to view the GWT client logs in the browser window instead of viewing them in the eclipse dev console (also works w/ production instances) Scrapbook Plus - for literally snapshotting the current page state with live html/image/js Web Developer - for inspecting the page contents and layout View Cookies - for inspecting/editing cookies * The MVP pattern is a great way to design a medium to highly complex application's architecture. * Take the time to look at the Session Videos from the last two years of Google IO. They will change your life - they did mine. http://www.google.com/events/io/2010/sessions.html I've got an GAE/GWT application deployed that was developed using all of the above technologies. If you are a Facebook user, give it a free trial. www.ninuku.com --Andy Stevko On Wed, Dec 29, 2010 at 4:49 AM, pdzarkar <[email protected]> wrote: > Hi Andy, > I can't hire you because i am just a small developer and doing this > for learning API's and new technology. > Have you worked on XMPP or instant messenger before ? > Do i need any other tool other than eclipse,GWT fro development ? > > > On Dec 28, 10:50 pm, "A. Stevko" <[email protected]> wrote: > > Hello Piyush, > > > > re: Authentication and Authorization APIs > > Every service has their own authentication API. Many are coming to use > the > > OAuth standard although I've not seen many successful integration efforts > > yet.http://code.google.com/appengine/docs/java/oauth/ > > > > <http://code.google.com/appengine/docs/java/oauth/>There is google user > > authentication support into the appengine platform with this package: > http://code.google.com/appengine/docs/java/javadoc/com/google/appengi... > > > > The external services you are referring are out of the scope of this > forum. > > You might want to research them directly. > > I've included some links to expedite your efforts. > http://code.google.com/apis/accounts/docs/GettingStarted.htmlhttp://developers.facebook.com/docs/authentication/http://developer.yahoo.com/auth/ > > > > Another resource that is is of broader scope and therefore more > appropriate > > for many the issues you are going to face ishttp://stackoverflow.com/ > > > > BTW, I'm open for hire presently... > > > > <http://code.google.com/appengine/docs/java/javadoc/com/google/appengi.. > .> > > > > > > > > > > > > > > > > > > > > On Tue, Dec 28, 2010 at 2:14 AM, Piyush Zarkar <[email protected]> > wrote: > > > Thanks Stevko for quick reply. > > > Your suggestions are really helpful to start with. > > > I have decided to select servlets for writing code, GWT for creating > GUI as > > > you suggested. > > > But i am still confused how to authenticate google users , facebook > users > > > ,yahoo users etc. Is there any authentication API ? > > > I am just collecting requirements at this moment. Once all the > requirements > > > freezes, i will start working on code and GUI. > > > If you have any suggestion please let me know. > > > Hope you will help me. > > > > > -- > > > You received this message because you are subscribed to the Google > Groups > > > "Google App Engine for Java" group. > > > To post to this group, send email to > > > [email protected]. > > > To unsubscribe from this group, send email to > > > [email protected]<google-appengine-java%[email protected]><google-appengine-java%2B > [email protected]> > > > . > > > For more options, visit this group at > > >http://groups.google.com/group/google-appengine-java?hl=en. > > > > -- > > -- A. Stevko > > =========== > > "If everything seems under control, you're just not going fast enough." > M. > > Andretti > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine for Java" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > > -- -- A. Stevko =========== "If everything seems under control, you're just not going fast enough." M. Andretti -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
