[appengine-java] "appcfg.sh update" suddenly doesn't work

2010-01-23 Thread Thomas Wiradikusuma
Hi all, I created a new project, tested it in localhost, everything was OK. So I uploaded it: Reading application configuration data... Beginning server interaction for myapp... 0% Creating staging directory 5% Scanning for jsp files. 8%

[appengine-java] HTTPRequestPoster - problem

2010-01-23 Thread ken
Hi all, I'm working in Eclipse 3.5 using the most recent Google plugin 3.5. I am attempting to use HTTPRequestPoster to send post data from an app (with the server running on http://localhost:/) to a Tomcat server running on port 8080 the same machine (MacBook pro).I can successfully send

[appengine-java] Re: task cancel, task insert, url fetch delay, servlet context listener

2010-01-23 Thread mete
I mean programmatically. Basically I was expecting something like Queue.purgeAllTasks(). It calls contextInitialized but not contextDestroyed. Isnt it a little strange ? I cannot persist something I am doing in memory for example based on context init-destory cycle. So everything has to be done p

[appengine-java] Re: Question about inbound mail.

2010-01-23 Thread Thanasis
I would like to get the joy directly from Google Engineers (its a weird answer, not covered in the docs but directly related to the GAE setup), but you are right. Its not the first time the Google Support sucks big time... I'll try elsewhere. On Jan 23, 1:44 pm, Richard wrote: > No idea, but if y

[appengine-java] Re: App Engine cold starts and overly aggressive cycling

2010-01-23 Thread Jorge
Ikai, Me too I can report an improved response time and no datastote timeout exceptions the past couple of days. I have no measurements so far, but the improvement is noticeable. I'll certainly keep watching and let you know of any relevant issues. Thanks! Jorge Gonzalez On Jan 22, 9:10 pm, Ja

Re: [appengine-java] task cancel, task insert, url fetch delay, servlet context listener

2010-01-23 Thread John Patterson
have you tried removing the queue.xml entry and updating? Yes, apps are reloaded frequently and every time your listener will be called. On 23 Jan 2010, at 21:36, mete wrote: Hello, It seems there is no task delete/cancel operation for a queue, is there any plan for it ? Also, suppose I

[appengine-java] task cancel, task insert, url fetch delay, servlet context listener

2010-01-23 Thread mete
Hello, It seems there is no task delete/cancel operation for a queue, is there any plan for it ? Also, suppose I have some tasks, lets say A,B and C in the queue. I want to be not able to insert another A task into this queue . This is not the task name does. I can do it in other ways -actually

[appengine-java] Re: Question about inbound mail.

2010-01-23 Thread Richard
No idea, but if you're not getting any joy, maybe try at www.stackoverflow.com - there should be a bit more motivation to help because it's points- based. Regards, Richard On Jan 14, 9:06 pm, Thanasis wrote: > Anyone, pls? > > On Jan 14, 9:18 am, Thanasis wrote: > > > Hi all, > > > I guess my q

[appengine-java] Re: serious java loader problem: "Hello world" killed for latency

2010-01-23 Thread Richard
Could either of you put up an update when you figure out what's causing it? Will watch the thread. Regards, Richard -- 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...@google

[appengine-java] Async Datastore API

2010-01-23 Thread John Patterson
Hi, I know that async url fetch is expected in the next release but I was wondering if async datastore operations were expected any time soon or on the roadmap at all? Thanks, John -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" gro

[appengine-java] Re: generating sequential ids

2010-01-23 Thread Bert Peters
What you could do is something like this: public class Employee { @PrimaryKey @Persistent(valueStrategy = IdGeneratorStrategy.INCREMENT) private Long id; @Persistent private String department; @Persistent private String firstName; @Persistent private String lastName; } sta