A lot of questions/topics in this message - re: Will it be good to use JSP ,servelet or should i use PHP. which will be > better ?
Selecting app engine limits your language options to java or python (you are asking this in a java biased forum). Java JSPs and servlets are pretty much the same although JSPs are better for serving html web pages and servlets tend to be better for writing APIs. An option I would use is to write a Web 2.0 user interface in Google Web Toolkit (GWT <http://code.google.com/webtoolkit/>) and use Channel API<http://code.google.com/appengine/docs/java/channel/>to keep it updated while writing a stateless app engine service to manage the XMPP wrangling. This will limit the complexity of both the client and the server portions while decoupling the client logic from the server logic. You do not specify which APIs you what to use. I suggest you consult these two pages for compatibility: http://code.google.com/appengine/docs/java/jrewhitelist.html http://code.google.com/p/googleappengine/wiki/WillItPlayInJava re: I came to know i have to use XMPP , Jabber server.But i dont know how to > make use of that. Have you looked at this page? http://code.google.com/appengine/docs/java/xmpp/ You seem to have a lot of ground to cover here. I suggest writing a couple of simple apps to get acquainted with the technologies and form a foundation for the user experience then link it to the 3rd party services. On Mon, Dec 27, 2010 at 5:01 AM, Piyush Zarkar <[email protected]> wrote: > Hi, I am a newbie in web development. I am trying to create a web page > which contains chatting messengers like ebuddy. i want to know that can i > use google app engine to create that kind of web page and embed all APIs. > Also i want to transport my message from Google ID to Yahoo ID kind of. I > came to know i have to use XMPP , Jabber server.But i dont know how to make > use of that. Also Will it be good to use JSP ,servelet or should i use PHP. > which will be better ? > Please help me on this topic . > Thanks in advance. > > -- > 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.
