[appengine-java] Re: App Engine and Spring slow start up

2010-04-25 Thread tazdevil78
I am still new to GAE, but could we not push an instance of DispatcherServlet into MemCache or the datastore? Then when the application idles we can pull the instance back out of storage instead of creating a new instance. Is that not what Google is trying to say in their FAQ, Share expensive

[appengine-java] Re: Can't decide: JDO, Twig-Persist or Objectify?

2010-04-25 Thread David Sowerby
hi jbdhl I wish there was an easy answer too - but I suppose at least we have choice! My experience, which I hope will at least help you a bit For back ground I am transferring a prototype developed using a db4o back end, but had little done for the UI. There are a lot of

[appengine-java] Guice filter

2010-04-25 Thread Timofey Koolin
On local machine I use guice for servlet-injection and map url to servlets: serve(/api).with(RemoteAPIImpl.class); serve(/shoplist/api).with(RemoteAPIImpl.class); and it work. On appengine servers it serve don't work and I have 404 error. -- You received this

Re: [appengine-java] Guice filter

2010-04-25 Thread seleronm
Hi, On local machine I use guice for servlet-injection and map url to servlets: serve(/api).with(RemoteAPIImpl.class); serve(/shoplist/api).with(RemoteAPIImpl.class); and it work. On appengine servers it serve don't work and I have 404 error. What is the version

Re: [appengine-java] Re: Can't decide: JDO, Twig-Persist or Objectify?

2010-04-25 Thread Christian Goudreau
I have one question in mind after reading what you wrote, in wich way you have better control in Objectify than Twig ? I'm interested since I moved from Objectify to Twig and didn't end up in that situation, yet. For the cons of only one Developper, he may be alone, but he answer every single one

[appengine-java] Javascript source files loaded on GAE have escape '\' escaped '\\'

2010-04-25 Thread Thatcher
This is new behavior I haven't seen before and have serveral apps running with javascript on gae that dont display this symptom. The symptom only occurs only on new deployment, not locally. A brief summary is in this thread.

[appengine-java] Re: Update to GAE/J 1.3.2 - Project in Eclipse broken

2010-04-25 Thread spartan.the
Problem is due to libraries required when project is run are in war/ WEB-INF/lib and libraries used during build are from java library path (project settings). And there are no easy ways to sync unless you are Eclipse guru and can manage to write Ant script to update web libraries using project

[appengine-java] Classloader that uses datastore as backend?

2010-04-25 Thread Patrick Cornelißen
Hi! I have just subscribed to this list, so please be gentle. ;-) I am trying to build a portal server like app engine application (inspired by JSR168/286) as an open source project. In the last few weeks, I was playing around a lot with different aspects like request dispatching to allow

[appengine-java] Discussion on will-it-play-in-app-engine

2010-04-25 Thread linhares
JDOM 1.1 seems to be compatible if you put xerces.jar together with the jdom.jar. -- 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

[appengine-java] Re: ApiProxyLocalImpl class not public

2010-04-25 Thread mvsoares
Indeed, ApiProxyLocalImpl is not public anymore in newer versions of google app engine. Find below one solution to the problem: import java.io.File; import java.util.Properties; import javax.jdo.JDOHelper; import javax.jdo.PersistenceManager; import javax.jdo.PersistenceManagerFactory; import

[appengine-java] does gae4java 1.3.3 not suppote flag --use_sqlite.

2010-04-25 Thread zimmem
I got error --- Usage: dev-appserver [options] war directory Options: --help, -h Show this help message and exit. --server=SERVERThe server to use to determine the latest -s SERVER SDK version. --address=ADDRESS The

[appengine-java] Facing problem with using EL and jsp:include tag

2010-04-25 Thread devashish
Following code snippet is not working for me after uploading, whereas its working in my local server. I have added %@ page isELIgnored=false % as well on top of the jsp page. % pageContext.setAttribute(page, home.jsp); % jsp:include page = /page/${page} / Does anyone know

Re: [appengine-java] does gae4java 1.3.3 not suppote flag --use_sqlite.

2010-04-25 Thread m seleron
Hi, I think the offer only to SDK of the python edition of [--use_sqlite]. thanks. I got error --- Usage: dev-appserver [options] war directory Options:  --help, -h                 Show this help message and exit.  --server=SERVER            The server to use to

[appengine-java] Re: Utility for checking compatibility of existing java app

2010-04-25 Thread Didier Durand
HI Bruce, I don't know an off-the-shelf tool to solve your question but you can combine existing parts to get what you need: - a dependency analyzer like http://www.dependency-analyzer.org/ - the JRE while list of allowed classes for GAE java at

[appengine-java] Request was aborted after waiting too long to attempt to service your request: Request queued for less than 30 seconds

2010-04-25 Thread Wong
I get Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster is under unexpectedly high or uneven load. If you see this message frequently, please contact the App Engine team. when there is another request

[appengine-java] Is appstats work on appengine servers?

2010-04-25 Thread Timofey Koolin
I install appstat for my application and i see stats for my development server, but i don't see stat for my application in appengine. -- 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] Re: Guice filter

2010-04-25 Thread Timofey Koolin
I use 1.3.3.1 On 25 апр, 14:40, seleronm seler...@gmail.com wrote: Hi, On local machine I use guice for servlet-injection and map url to servlets:            serve(/api).with(RemoteAPIImpl.class);            serve(/shoplist/api).with(RemoteAPIImpl.class); and it work. On appengine

[appengine-java] Re: TaskOptions.countdownMillis not used

2010-04-25 Thread Fabrizio
Hello Max, I noticed it because I got wrong data. So I checked the logs. But, now, I'm trying to reprocude the issue but I cannot. The delay is good. I'll continue the test and I'll let you know. Thank you for your help. fabrizio On Apr 23, 10:40 pm, Max Ross (Google)

[google-appengine] Re: Invalid URL exception on appengine server

2010-04-25 Thread Maxime
Just an update in case others run into the same problem: I POSTed the query instead of GETing it and it runs ok. Maxime. On 22 abr, 09:52, Maxime mgosm...@gmail.com wrote: Hi, Thanks for your answer Jody, I will try to shorten the URL to check, but I thought that URL max length was a kind of

[google-appengine] Re: Idempotence multiple task execution

2010-04-25 Thread hawkett
Wondering if I haven't asked the question clearly enough. Regarding the statement that we need to assume tasks may be executed multiple times (i.e. ensure idempotence): is that multiple times serially, or possibly multiple times concurrently? I've gone ahead and coded my idempotence solution to

[google-appengine] Re: Google Apps for Domain Account issue: Dashboard/Permission is missing Invite for new devs

2010-04-25 Thread Delacroy
I just spent about 30 minutes looking for the option to invite a developer Couldn't find it! I'm using Apps authentication. -- 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-appengine] Re: Datastore Transaction problems in App Engine 1.3.2

2010-04-25 Thread AdamM
Hi, I have upgraded to App Engine 1.3.3 . The Problem persisted, it does not seem to be fixed in this new version either. Can some one from Google please comment? Regards, Adam On Apr 11, 12:27 am, AdamM mautner.a...@gmail.com wrote: Hi, I am developing an application, that operates on

[google-appengine] Re: Project name availability

2010-04-25 Thread Florent Georges
On Apr 23, 1:22 pm, Juan González wrote: well, I have an app and a project on google code with the same name and had no problem with it (maybe it's because I created the app before the google code project...) Ah ok, that's maybe why. an official answer from the big G guys would be nice..

[google-appengine] Re: Upload files larger than 10MB?

2010-04-25 Thread Niklasro(.appspot)
On Apr 25, 7:39 am, Magnus O. mag...@magnusottosson.se wrote: Hi, I'm using the MaxMind GeoLiteCity.dat (http://www.maxmind.com/app/ geolitecity) file to get the geolocation of my visitors. It works great in the development environment but I can not deploy it since the dat file is about

[google-appengine] Triggering CapabilityDisabledException in LocalServiceTestHelper for unit testing

2010-04-25 Thread Frizb
Hello Google App Group! Long time reader, first time poster. I would like to insure that my JAVA application is Gracefully Degrading During Scheduled Maintenance. It would be ideal if I could capture this failure in my application's unit tests. PersistenceManager pm =

[google-appengine] Re: Upload files larger than 10MB?

2010-04-25 Thread Tim Hoffman
No. Also you probably want to rethink your approach, loading a 30MB file is probably going to make your instance startup times very long, - startup times is one of the biggest issues people face when starting out. Rgds T On Apr 25, 3:39 pm, Magnus O. mag...@magnusottosson.se wrote: Hi, I'm

[google-appengine] Re: Unable to sign this Google Account up for Google App Engine

2010-04-25 Thread richardhenry
I'm still unable to sign up for App Engine, two days later. Could anyone from Google look into this? Richard On Apr 24, 5:55 am, richardhenry richardhe...@me.com wrote: Hey guys, I'm hoping someone from the Google team can help me with this. I'm trying to sign this Google Account up for

[google-appengine] Re: Long-Lived GET Requests on App Engine

2010-04-25 Thread Timofey Koolin
Youк response for user request can be up to 10MB http://googleappengine.blogspot.com/2009_05_01_archive.html, but your request/response to/from API - 1MB (include URLFetch). On 24 апр, 23:50, samwyse samw...@gmail.com wrote: I'm also interested in being able to return more than 1MB, but not for

[google-appengine] Re: Upload files larger than 10MB?

2010-04-25 Thread Timofey Koolin
You can upload your file in blobstore, than instances of your app can read it by 1 MB pieces http://code.google.com/intl/en/appengine/docs/java/javadoc/com/google/appengine/api/blobstore/BlobstoreService.html#fetchData(com.google.appengine.api.blobstore.BlobKey, long, long) On 25 апр, 11:39,

[google-appengine] How to stop a task in the code

2010-04-25 Thread gxtiou
I create a Task and add it to the default queue,,and how to stop running this task after it run once! -- 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

[google-appengine] Re: How to stop a task in the code

2010-04-25 Thread gxtiou
I use python! On Apr 26, 12:35 pm, gxtiou gxt...@gmail.com wrote: I  create a Task and add it to the default queue,,and how to  stop running this task after it run once! -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this

[google-appengine] Re: How to stop a task in the code

2010-04-25 Thread gxtiou
I use python! On Apr 26, 12:35 pm, gxtiou gxt...@gmail.com wrote: I  create a Task and add it to the default queue,,and how to  stop running this task after it run once! -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this