Re: [appengine-java] Re: appengine unaware code!

2010-05-22 Thread Muhammad Ijaz Khan
Thanks all. This was quick :) On Sat, May 22, 2010 at 8:46 AM, Vaclav Bartacek vaclav.barta...@spolecne.cz wrote: As for the datastore - you can create abstract DAO layer which hides the actual implementation. Try AuDAO tool (http://audao.spoledge.com) to generate an abstract DAO layer +

[appengine-java] Set all dashboard times to local time

2010-05-22 Thread Didier Durand
Hi there, The time of day for all dashboard infos / logs seems to be set to US West Coast time. Is it possible to change it to my local time (Europe) to avoid delta calculations each time I read time infos or want to set cron jobs at night for me? regards didier -- You received this message

[appengine-java] Re: working in local host but not in GAE after deployment

2010-05-22 Thread Ian Marshall
Have you got any example output and related code (if relevant)? -- 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 google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email

Re: [appengine-java] Re: working in local host but not in GAE after deployment

2010-05-22 Thread drift elysium
http://deepmhn.appspot.com/ The goal is to find the intersection of edges of two graphs. For simplicity I have generated 10 random edges for each graph. On pressing the compute button, another servlet should run which displays the intersection of the edges. It is displaying in the localhost but

[appengine-java] Re: working in local host but not in GAE after deployment

2010-05-22 Thread bufferings
hi drift elysium If you use GAE 1.3.3, the servlet filter does not work on the production server. The bug is fixed in GAE 1.3.3.1. http://code.google.com/p/googleappengine/issues/detail?id=3138 hth - bufferings On May 22, 10:15 pm, drift elysium drift2elys...@gmail.com wrote:

[appengine-java] Re: Development mode for HttpServlet

2010-05-22 Thread bufferings
hi drift elysium You can use SystemProperty.environment.value(). http://code.google.com/intl/en/appengine/docs/java/javadoc/com/google/appengine/api/utils/SystemProperty.html - bufferings On May 22, 2:23 pm, drift elysium drift2elys...@gmail.com wrote:

[appengine-java] Best method to set up nested classes in Objectify

2010-05-22 Thread Michael
Hi, I am new to app engine (using it with GWT). I have a class with a lot of data in it. nearly 100% of the time my program only needs two of the fields. I want to break it up in to two classes: A (with the data needed often) and B (less common data). Class A is also sent back and fourth from

[appengine-java] Re: is createFederatedLoginURL() working?

2010-05-22 Thread Drasko
Thanks for your reply Ravi ;-) I have forgotten to configure the service for the other OpenID providers. I hoped there would be a generic service to resolve the authDomain and the federatedIdentity. Currently, it is hardcoded as following: MapProviderEnum, String authDomainMap = new

[appengine-java] AppEngine gets very slow when not used for some time

2010-05-22 Thread Rahul
I have an application running on appengine and no doubt it works great. but when the application is not used for some time. it goes very slow. Suppose i don;t use the application for around 5 hours or so, then next time when i try to use it, the response is very slow. Is there any thing specific

[appengine-java] JDO QUery to filter on List property

2010-05-22 Thread Ravi Sharma
Hi All JDO Experts, I am trying to write JDO query to query on List property but didnt find in documentaion on google app site. Class InterestedParty { Key id; ListKey parties; } So basically now i want to query all IntrestedParties where parties list contain User(1) or User(5) etc. So i expect

Re: [appengine-java] AppEngine gets very slow when not used for some time

2010-05-22 Thread Chau Huynh
It seems like loading request... http://code.google.com/appengine/kb/java.html#What_Is_A_Loading_Request On Sun, May 23, 2010 at 4:55 AM, Rahul rahul.jun...@gmail.com wrote: I have an application running on appengine and no doubt it works great. but when the application is not used for some

[appengine-java] Re: AppEngine gets very slow when not used for some time

2010-05-22 Thread Rahul
Chau, Thanks for pointing to the link. I did go through the link and i think, what i thought was right. Also i was going through the following point in the section you provided : How can I speed up loading requests? and the second point mentioned is Share expensive initialization between JVMs.