[appengine-java] bandwidth consumption

2011-09-18 Thread senderj
My app needs to gather info from web pages. I use cron job to trigger tasks in task queue. Each queue entry does some URL fetch for the job. I've tried two methods: one use 4 queue entries, each of which covers 10 URL fetches; another one use 40 entries each of which covers only 1 URL fetches. I

[appengine-java] min. charge under new pricing

2011-09-05 Thread senderj
I read many here trying to keep their apps free by reducing instance and storage. But I think I read the FAQ of the new pricing that there is a min of $9 per app. So as long as I own an app, even if it is totally idle (no request at all), I still need to pay $9? Or I misunderstood the paragraph?

[appengine-java] Re: min. charge under new pricing

2011-09-05 Thread senderj
Can anyone confirm that there is a min of $9 no matter what? On Sep 5, 6:06 pm, senderj send...@hotmail.com wrote: I read many here trying to keep their apps free by reducing instance and storage. But I think I read the FAQ of the new pricing that there is a min of $9 per app. So as long as I

[appengine-java] Re: min. charge under new pricing

2011-09-05 Thread senderj
The reason I need to check is that this $9 is NOT in the estimation bill. It's misleading. On Sep 6, 8:56 am, senderj send...@hotmail.com wrote: Can anyone confirm that there is a min of $9 no matter what? On Sep 5, 6:06 pm, senderj send...@hotmail.com wrote: I read many here trying

[appengine-java] Re: deploy app but no effect

2011-01-28 Thread senderj
Thanks for all the replies. I finally figured out what's wrong. I expected deployment includes a build before actual deployment. But it's not. If I build the project before deployment, it works fine. If otherwise, I am in fact deploying the old coding again. Sorry for wasting everybody's time. By

[appengine-java] deploy app but no effect

2011-01-21 Thread senderj
I've been working on my app for a while. Everytime I redeploy the app from Eclipse to GAE, I can immediately check the result by calling my servlet. But this seems not the case recently. Even after a day or two, my servlet is still the old version. The last few lines of the deployment log showed:

[appengine-java] java.lang.ClassNotFoundException

2010-11-09 Thread senderj
I encountered this exception even with the simplest project - a new project in Eclipse for GAE with the generated Hello! World servlet. Here is what I got in my logs in one run: Warning: java.lang.ClassNotFoundException: my.package.MypackageServlet . Error: javax.servlet.ServletContext log:

[appengine-java] too many info log

2010-07-20 Thread senderj
Everytime when my servlet use EntityManager I got a lot of info level log like this: org.datanucleus.plugin.NonManagedPluginRegistry resolveConstraints: Bundle org.datanucleus.jpa has an optional dependency to org.datanucleus.enhancer but it cannot be resolved There are many of them, saying the

[appengine-java] error when persist more than 1 object

2010-07-19 Thread senderj
I am trying to learn GAE by writing simple java programs. This is the coding I use to try JPA: EntityManager em = null; try { em = EMF.get().createEntityManager(); int i = 6; Trade5min t5 = new Trade5min(); t5.setStkCode(i); t5.settDate(2010-07-15); t5.setTradeRec(this is

[appengine-java] Re: Eclipse Plugin and Proxy Server

2010-07-15 Thread senderj
In Eclipse, goto WindowPerferenceGeneralNetwork Connection, set up the proxy host name and port there. But for Netbeans, although I set up similarly, I still have connection timeout when I deploy. I don't know if the proxy setup is incorrect or the google credential is incorrect. So I need help

[appengine-java] deploy through proxy

2010-07-13 Thread senderj
I am using Netbeans 6.8 with GAE plug-in. I need to deploy to GAE through a proxy. I've specified the correct proxy host and port in NB but still I got connection timeout in every deployment. The proxy host and prot is correct because they works in Eclipse. But not in NB. Seems the NB plug-in has