[appengine-java] Re: Help: Memcache - not hitting at all

2011-09-12 Thread Nichole
The javadocs for MemcacheService suggest a pattern that you would use if the backing cache used soft references: foo = memcache.get(key); if (foo == null) { if (memcache.contains(key)) { // continue, assuming foo had the real value null } else { // continue; foo may

[appengine-java] Re: Delete Lots Of Data

2011-09-12 Thread Cyrille Vincey
you MUST have a look at http://ikaisays.com/2010/07/09/using-the-java-mapper-framework-for-app-engine/ There's a special section at the end of the post delete all entities of a given kind. You can delete 35M entities in a few minutes using mapreduce. -- You received this message because you are

[appengine-java] Re: Can't set URL Fetch Timeout to a value higher than 5 seconds

2011-09-12 Thread Killian
I was a bad boy and didn't do as I was told in the tutorials ! lol No in all fairness, I only had seen this tutorial http://code.google.com/appengine/docs/java/urlfetch/overview.html And hadn't seen the other one mentioned which showed how to prepare the url call properly, hence my mistake

[appengine-java] Re: Strange error after deployment

2011-09-12 Thread Sudhakar Abraham
Please check whether all class files are in /war/WEB-INF/classes directory. You have to change the application id version of your project. For this, edit appengine.web.xml file accordingly and clear the cache ( in Windows C:\Program Files\Windows\temp ) directory and upload the application to

[appengine-java] Re: receiving mail demo

2011-09-12 Thread Sven Busse
Hi Dom, i have tried your solution, but i am getting a java.lang.OutOfMemoryError: Java heap space error. Did you have that as well? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Error on site (JAVA)

2011-09-12 Thread Summit
Error: com.caucho.quercus.QuercusModuleException: java.lang.NoClassDefFoundError: java.io.FileOutputStream is a restricted class. Please see the Google App Engine developer's guide for more details. Site: http://greenlieforums.appspot.com Please help me. -- You received this message because

[appengine-java] Re: sending pdf

2011-09-12 Thread Jean-Marc Truillet
Thanks for the info. I was about to use iText, but without guarantee it works in GAE context. JM On 9 sep, 23:52, Francois Masurel f.masu...@gmail.com wrote: Hi Vik, I'm using PDFJet to generate simple PDFs on GAE/Java. Francois -- You received this message because you are subscribed to

[appengine-java] 404 on Ganymede plug-in zip

2011-09-12 Thread ac cat
I am having problems installing the GWT Eclipse plug-in for Eclipse 3.4 (Ganymede). I get site not found when I use http://dl.google.com/eclipse/plugin/3.4 from the Eclipse software update. So I tried to download the zip file from

Re: [appengine-java] Help: Memcache - not hitting at all

2011-09-12 Thread Jens Stoltenberg
How is your memcache configured? Are you using HTTP or HTTPS? On Sat, Sep 10, 2011 at 9:21 PM, realdope rte...@gmail.com wrote: Hi, I have a Memcache wrapper class with a set of public static methods for getting and setting application-specific key:value pairs. They use a set of private

[appengine-java] input Data in DataStore from External Server ?

2011-09-12 Thread Kb
I have written a GWT app which uses Datagram Packets in Server Side. So i cannot server side code in Googe App Engine. I want to use GAE for its faster speed than other webhosts (and free). My Code is like this Server-Database- and then Database-Client Now can i copy *Data stored in External

[appengine-java] Re: input Data in DataStore from External Server ?

2011-09-12 Thread gk
Hey Kb, upload another special version of your GAE app. Use that special version to run Java code that imports the data. All versions of an GAE app use the same datastore. Possibly write and run localy a utility application to POST each record to your GAE datastore / or GET each record from an

[appengine-java] Re: input Data in DataStore from External Server ?

2011-09-12 Thread Kb
I Have around 100,000 entries in database(MySQL) that updates every 10 minutes. If i use GAE DataStore in Server Application(hosted somewhere) and Again GAE Datastore on Client will it fit the QUOTA Limits? On Sep 13, 12:39 am, gk goran.kar...@googlemail.com wrote: Hey Kb, upload another

Re: [appengine-java] Help Impossible to have some Cached Reqest

2011-09-12 Thread Guillaume B.
Thanks Bruno your solution works well -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/U9IUs43_P9AJ. To post to this group, send email

[appengine-java] Re: 404 on Ganymede plug-in zip

2011-09-12 Thread ac cat
I found my answer in another thread (https://groups.google.com/group/ google-plugin-eclipse/browse_thread/thread/ f17485cb3fb8bc87/2e7964a5ceb81fc6) It is no longer supported and has been removed. On Sep 12, 8:33 am, ac cat pcfea...@gmail.com wrote: I am having problems installing the GWT

[appengine-java] App Engine SDK 1.5.4 released!

2011-09-12 Thread Ikai Lan (Google)
Hey everyone, Just wanted to let you all know that App Engine SDK 1.5.4 has been released. The official announcement is here: http://googleappengine.blogspot.com/2011/09/app-engine-154-sdk-release.html The full release notes are below: Java 1.5.4 = - You can now specify the maximum

Re: [appengine-java] App Engine SDK 1.5.4 released!

2011-09-12 Thread Jens Stoltenberg
Is there an ETA on when this release will be available in Maven? On Mon, Sep 12, 2011 at 10:31 PM, Ikai Lan (Google) ikai.l+gro...@google.com wrote: Hey everyone, Just wanted to let you all know that App Engine SDK 1.5.4 has been released. The official announcement is here:

Re: [appengine-java] App Engine SDK 1.5.4 released!

2011-09-12 Thread David Chandler
ETA: tomorrow noon PST /dmc On Mon, Sep 12, 2011 at 7:52 PM, Jens Stoltenberg jstolt...@gmail.comwrote: Is there an ETA on when this release will be available in Maven? On Mon, Sep 12, 2011 at 10:31 PM, Ikai Lan (Google) ikai.l+gro...@google.com wrote: Hey everyone, Just wanted to let

Re: [appengine-java] App Engine SDK 1.5.4 released!

2011-09-12 Thread Jens Stoltenberg
Cool. Thanks. Will datanucleus-appengine for Maven also need upgrading? I think it's at 1.0.9 at the moment. dependency groupIdcom.google.appengine.orm/groupId artifactIddatanucleus-appengine/artifactId version1.0.9/version /dependency On

Re: [appengine-java] App Engine SDK 1.5.4 released!

2011-09-12 Thread David Chandler
Nope, still 1.0.9 On Mon, Sep 12, 2011 at 9:11 PM, Jens Stoltenberg jstolt...@gmail.comwrote: Cool. Thanks. Will datanucleus-appengine for Maven also need upgrading? I think it's at 1.0.9 at the moment. dependency groupIdcom.google.appengine.orm/groupId

Re: [appengine-java] App Engine SDK 1.5.4 released!

2011-09-12 Thread Marcelo Liberato
Any directions about where to specify HTTP_X_APPENGINE_INBOUND_APPID? Besides, can you give us additional information about a classloading improvement? For instance, shall we still jar our classes trying to reduce timeouts during loading spikes? -- Marcelo On Mon, Sep 12, 2011 at 6:31 PM, Ikai