"The GAE is a joke" - I have the same feeling when the 1st time the timeout problem hits me. Not only java, the timeout problem also happens to GAE/Python. Now I have two service that running on GAE. Because I think that I have found a solution to get ride of the problem. At least that solution works for me. The solution is to utilize the power of client side. It is: 1. Break the request to several small chunk of requests. 2. Use the flash to retrieve the data from datastore. If the request failed, retrieve it again.
A simple example site: http://beautyg.webbs.tw The site shows the articles in forum. For every page,10~20 enteries. (that is the 1st request, 4.1% failure) Then for every entry, the client make another request to get the images back when mouse over. (this time, one 1 entry was requested, 0% failure) The key point is: use the flash to work-around the timeout problem. A more complex example: http://www.webbs.tw The two works well. The GAE no more is a joke to me. Hopes it helps. 2010/1/12 mateusz <mateusz.r...@gmail.com>: > Standard servlet, sometimes work sometimes not throwing: "Request was > aborted after waiting too long to attempt to service your request." - > I think it's when application is waken up from sleeping, but no > pattern - strange; > Another joke, when I am sending emails from appliacation, it's > sometimes send sometimes NOT, without exceptions; if I send to google > account - it's delivered in a second; when I send to other account > (not gmail), I have to wait long time to be delivered; > > It's wasting time to think that you can use google app engine as > production environment event for the smallest form based application. > > Do sth with it or close that business; > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To post to this group, send email to google-appeng...@googlegroups.com. > To unsubscribe from this group, send email to > google-appengine+unsubscr...@googlegroups.com. > For more options, visit this group at > http://groups.google.com/group/google-appengine?hl=en. > > > >
-- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.