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

2011-10-04 Thread Uwe Maurer
On Sep 11, 9:33 pm, realdope rte...@gmail.com wrote: Here's rest of the code:     private static boolean has(String key) {         return MemcacheServiceFactory.getMemcacheService().contains(key) get(key).length()0;     } ...         if (Memcache.hasById(id)) return Memcache.getById(id);

[google-appengine] Re: blobstore image serving giving 500 errors

2010-09-29 Thread Uwe Maurer
Yes, we have the same problem on http://www.appbrain.com (the icons, not all of them though) Google please investigate. Also please add the image serving status to the AppEngine System Status page. Uwe On Sep 28, 11:49 am, Karl R kros...@gmail.com wrote: I started using the blobstore /

[appengine-java] Re: Security issue with Google account on Gwt-client site

2010-08-27 Thread Uwe Maurer
The User object contains just the email address of the user. Just send it to the client in a String and null if the user is not logged in. Then you can just check with (username != null) if the user is logged in. Uwe On Aug 27, 6:25 pm, androidDeveloper stepmas...@googlemail.com wrote: Hi all,

[appengine-java] GWT code splitting + I18N = too many files

2010-08-26 Thread Uwe Maurer
solution otherwise? Serve the static files from datastore or blobstore? Or an external CDN? Thanks, Uwe Maurer -- 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

[appengine-java] Re: GWT code splitting + I18N = too many files

2010-08-26 Thread Uwe Maurer
from the there. 2010/8/26 Uwe Maurer uwe.mau...@gmail.com Hi, we have a quite big GWT project on Java Appengine, which uses code splitting and also multiple locales. We just added another locale and now it generates so many static files (900) that it runs over the 3000 static files

[appengine-java] Re: Problem in sending out UTF-8 POST data (only in production, works fine in development)

2010-08-22 Thread Uwe Maurer
Try OutputStreamWriter w = new OutputStreamWriter(c.getOutputStream(), UTF-8); On Aug 19, 12:33 pm, आलोक (Alok) alok.ku...@gmail.com wrote: I am having trouble with sending out a POST request that contains UTF-8 data. Here's what I'm doing: ... 01                       String s = some

[appengine-java] Re: Reusing GWT Localization on Server Side

2010-08-22 Thread Uwe Maurer
Maybe this project can help http://code.google.com/p/gwt-i18n-server/ It provides a GWTI18N.create which replaces the GWT.create FooMessages msg = GWTI18N.create(FooMessages.class); msg.fooBar(...); Uwe On Aug 16, 9:18 pm, Casey j.casey.one...@gmail.com wrote: I figured that I was going to

[appengine-java] Getting Unittest with Task queue working (NPE in QueueImpl)

2010-05-11 Thread Uwe Maurer
Hi, I am trying to get a unittest working. The code I am trying to test is using task queues and it keeps crashing with NullPointerException in QueueImpl. java.lang.NullPointerException at com.google.appengine.api.labs.taskqueue.QueueImpl.fillAddRequest(QueueImpl.java: 150) at

[google-appengine] Re: vanity URL

2010-05-11 Thread Uwe Maurer
I am not sure if users would like to have a vanity URL on xxx.com But other than that you can just map any URL to a servlet which then parses the username from the URL and looks up the corresponding user and shows his page. Thanks, Uwe On May 11, 12:23 pm, Herbert herber...@gmail.com wrote: hi

[google-appengine] Re: Connect users to Google profiles

2010-05-11 Thread Uwe Maurer
I suggest to use the Google Friend connect API. This API gives you the profile, avatar image, and you can also get the friends of the user who are also using your app. (quite nice to add some social aspects) It would be great if Google would integrate this with the AppEngine UserService API

[google-appengine] Admin dashboard chart shows only last 18 hours instead of 24

2009-11-08 Thread Uwe Maurer
Hi, since a couple of days I can only see the last 18 hours in the dashboard chart instead of the last 24 hours. ( even when I select the 24 hours chart) This is on all our apps. Anybody else have this problem too? Can it be fixed? Thanks, Uwe