[appengine-java] Re: Unlimited Channel Quota

2012-02-21 Thread Heiko Roth
Hello Ikai, On 17 Feb., 15:40, Heiko Roth r...@egotec.com wrote: We created a remote access solution with Java Appengine using channels. Before going live, we need unlimited channels (creations and api calls). Perhaps you can get me some information where to address to. If we're going

Re: [appengine-java] scheduling 1000 emails

2012-02-21 Thread marco
Thanks for the reply. I'll probably stick with 5/s max rate. The use case can live with that. -- 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] Re: Unlimited Channel Quota

2012-02-21 Thread Simon Knott
Hi, Have you tried filling out the quota formhttp://support.google.com/code/bin/request.py?contact_type=AppEngineCPURequest, referenced from the Quotas documentationhttp://code.google.com/appengine/docs/quotas.html#Channel ? Cheers, Simon -- You received this message because you are

[appengine-java] Re: Conversion API - Adding Assets Example Wrongly Documented

2012-02-21 Thread Millisecond
Thanks for the code Raj, saved me. If it's useful to anyone else, based on your sample I wrote a general purpose URL-PDF function that will search the HTML for any dependent images and insert them, only external dependency is commons.io -Casey String content = IOUtils.toString(new

[appengine-java] HTTP Error: 404

2012-02-21 Thread Phiến Khuất Văn
I am a newbie in Google App Engine I download the sample project in google app engine site. I imported in to Eclipse and compile success. But when i click to the link, my brower (both firefox and chrome) have a trouble. It show the error message:

[appengine-java] Re: Help, error from example - java.lang.NoClassDefFoundError: Could not initialize class guestbook.PMF

2012-02-21 Thread Vaso
1. what CLASSPATH variable must contain? I know - path to *.class, but i have them C:\!Work\Java\GoogleAE\Guestbook\war\WEB-INF\classes\guestbook, also for examle C:\Program Files (x86)\Google\google_appengine \gwt-2.4.0\samples\Validation\war\WEB-INF\classes\com\google\gwt\sample

Re: [appengine-java] max keys for memcache

2012-02-21 Thread Kesava Neeli
Hi IKai, Could you point me to the docs about the max memory for the app for MemoryCache? We have a mobile app with many user accounts and each account has a primary key. We expect to have 1-2million accounts in the datastore. We need to store many entries in mem cache to find if account

Re: [appengine-java] max keys for memcache

2012-02-21 Thread Jeff Schnitzer
Are all of these 1-2 million users going to be active at the same time? If not, why do you care if it all fits in memcache? On the other hand, if they *are* all going to be active at once, I would be very curious to know what happens... Jeff On Tue, Feb 21, 2012 at 2:07 PM, Kesava Neeli

[appengine-java] Re: SecurityException thrown by java.lang.reflect.AccessibleObject.setAccessible(boolean flag)

2012-02-21 Thread Mitch Rudominer
Emanuele, The behavior you are seeing is actually not a bug in App Engine but rather an unexpected behavior in Java itself. If you try the experiment in Java code running outside of App Engine you will see the same behavior. The source code for java.lang.reflect.AccessibleObject explains the

Re: [appengine-java] how to beata open to certain country

2012-02-21 Thread Ikai Lan (Google)
App Engine provides a geolocation header. Check this out: http://googleappengine.blogspot.com/2011/06/app-engine-151-release.html It's a best effort geo-IP mapping. Give it a try. -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com On Mon, Feb 20, 2012 at 6:12 PM,

[appengine-java] How to query the active version name

2012-02-21 Thread Emanuele Ziglioli
Hi, I'd like to force refresh of static resources using a query string, as explained here: http://groups.google.com/group/google-appengine/msg/9707b4602e0154cc But I need some global string that reflects the latest version. Is it possible to query the veriable that is printed on the

[appengine-java] Re: How to query the active version name

2012-02-21 Thread Emanuele Ziglioli
Oh cool! just tried with: ApiProxy.getCurrentEnvironment().getVersionId(); And on GAE servers it does return the full version id: 2.356983990884235673; While locally it returns: 2.1 Interesting, then I should be able to get the latest static resources with any new version! On Feb 22, 12:40