[appengine-java] Re: Jetty reload and scanIntervalSeconds?

2010-07-03 Thread Rob Roland
Oh, great idea. I'll give that shot. Thanks much, Rob On Jun 29, 8:34 am, Nacho Coloma icol...@gmail.com wrote: You can use Jrebel with GAE:http://www.zeroturnaround.com/jrebel/ You will have to combine both instrumentation agents in the launcher, but it works fine. On Jun 27, 6:22 pm,

[appengine-java] Re: Eclipse Helios 3.6 - plugin appenginge

2010-07-03 Thread Daniela
Thank you On Jul 2, 3:28 am, Wilson MacGyver wmacgy...@gmail.com wrote: it's available now http://code.google.com/eclipse/docs/getting_started.html On Wed, Jun 30, 2010 at 8:21 PM, Daniela daniela.fernan...@gmail.com wrote: Hi, just wondering if there's going to be an upgrade to the

[appengine-java] TaskQueue: How reliable is ETA?

2010-07-03 Thread Jaroslav Záruba
Hi I knew that ETA does not guarantee exact time for a task to be run, but I was under impression that a task won't be run sooner than ETA. But now I'm adding task with etaMillis(31) and it is run right away, on a production server. Could anyone enlighten me, please? Regards J. Záruba --

[appengine-java] Re: TaskQueue: How reliable is ETA?

2010-07-03 Thread Jaroslav Záruba
Oh lord, seems like i'm ready to bed... etaMillis(long etaMillis) Sets the approximate absolute time to execute. vs. countdownMillis(long countdownMillis) Set the number of milliseconds delay before execution of the task. Nevermind. On Jul 3, 11:28 am, Jaroslav Záruba

[appengine-java] Re: Application not running in latest sdk

2010-07-03 Thread Ian Marshall
Hi Vik, It looks like that java.lang.ClassNotFoundException: vik.sakshum.sakshumweb.server.SubscriberServiceImpl at java.net.URLClassLoader$1.run(URLClassLoader.java:200) ... is your core problem. Your local instance of the dev app server cannot find your above class. I presume that the

[appengine-java] Re: Limiting the number of requests per IP each minute

2010-07-03 Thread Fabrizio
Hello, I also used memcache to limit the max number of requests/minute. It works very well. Key: ipaddress Value: counter (int) I put the items in memcache with an expiration of 60 seconds. Map props = new HashMap(); props.put(GCacheFactory.EXPIRATION_DELTA, 60); CacheFactory

[appengine-java] How to see the list of my applications?

2010-07-03 Thread tleroy
Hi everybody, maybe it's a basic question but I can't see the list of my applications. The only things I see when i log in my gae account is : Welcome to Google App Engine Before getting started, you want to learn more about developing and deploying applications. Learn more about Google App

Re: [appengine-java] Re: Entity class is not enhanced!!

2010-07-03 Thread Marthen NCS
hi Hariharan Anantharaman, Didier Durand Jonathan He * * *Thanks for the clue, i've resolved this issue.* *I'm using IntelliJ actually.* *Yeah it needs extra configuration to get rid of this issue.* * * *It is nothing todo with entity class.* * * *I think the main reason is, why don't they create

[appengine-java] regarding the keys in the datastore

2010-07-03 Thread Deepika M
Hi, I have a question about the keys in the datastore. The keys are in sorted order when I view in the local datastore. For example, when I initially store say 10 entities and the keys range from 8000 to 8009, then next time when I store 10 entities, the keys range from 8010-8019. That is the

[appengine-java] GAE + Server-side Speed Traces?

2010-07-03 Thread Jaroslav Záruba
http://code.google.com/webtoolkit/doc/latest/ReleaseNotes.html#ServerSideSpeedTraces With Speed Tracer 1.0 M1, you can now view sever-side timing data for apps running on Google App Engine... I have upgraded, re-deployed to GAE, but I can't see no Speed Trace above Summary in the Network

[appengine-java] app engine and db server elsewhere...

2010-07-03 Thread emigrant
hi all, can i put my java app in google app engine and have conneciton to mysql database server outside? thanks a lot/ -- 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

[appengine-java] Updating a client

2010-07-03 Thread genjlc
I wrote an executable jar that counts down to a specific point in time. Problem is that some people have problems executing it. I am trying to write a GWT app that does the same thing. So is there a way to execute the server logic and automatically update the client's display? Or, is the

[appengine-java] Saving my own JSPs to blobs - URLFetch Timeout

2010-07-03 Thread Jaroslav Záruba
Hi I'd like to serve blobs created of JSPs. So the idea was to use TaskQueue+URLFetch on partcilar JSP whenever the blob should get updated. But only very rarely I succeed, usually I end with connection timeout. (Even when the timeout is raised to 10s.) When I call the JSP directly it loads way

[appengine-java] Re: app engine and db server elsewhere...

2010-07-03 Thread Robert Lancer
You can, it just depends how you connecting to the DB, you might want to create a restful interface on your database server that can server data to app engines using the URL fetch service. On Jul 3, 6:43 pm, Jaroslav Záruba jaroslav.zar...@gmail.com wrote: No. On Jul 3, 9:47 pm, emigrant

[appengine-java] Eclipse/Ant/SDK best practice

2010-07-03 Thread Roy
I do all my development in Eclipse, and then use ant for automated test and building my distros. Whenever there is a new G plugin for eclipes, I tend to have to download the SDKs twice; Once as part of the eclipse plugin and then a second time so I can include them in the classpaths in my ant