Re: [appengine-java] Re: Slow cold starts

2012-03-09 Thread Arun Ramanujapuram
Even we are finding these slow cold starts, very similar to what Jeff described earlier. Can someone from Google please respond? Thanks, Arun From: Anders Testson To: google-appengine-java@googlegroups.com Sent: Friday, 9 March 2012 7:24 PM Subject: Re: [app

Re: [appengine-java] Re: Datastore Admin

2011-10-12 Thread Arun Ramanujapuram
Even I see this problem occurring - when you click on the Datastore Admin link, nothing shows up. I wonder if it is a bug with the URL (I can see an & immediately after the ?): https://appengine.google.com/datastore/admin?&app_id=XXX&version_id=XXX. Thanks, Arun _

[appengine-java] All prices being shown as $0.00 under Billing History

2011-09-26 Thread Arun Ramanujapuram
Hi, All prices are being shown as $0.00 under the Billing History page on the admin. console as of 9:20pm PST. If this is not the correct forum to raise, please let me know. Thanks, Arun -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java

Re: [appengine-java] Re: How to create excel file in servlet for google app engine application?

2011-09-06 Thread Arun Ramanujapuram
We had a need for a simple (single-sheet) spreadsheet. So, I just generated a CSV output streamwith the following content-type or headers, and this works fine (at least in Firefox, where it opens the file in XLS). response.setContentType( "text/csv" ); response.addHeader( "Content-Disposition",

Re: [appengine-java] Mutation pool bug?

2011-01-18 Thread Arun Ramanujapuram
Thank you, Stephen. This works. I could not locate this earlier in the mapreduce documentation. Regards, Arun From: Stephen Johnson To: google-appengine-java@googlegroups.com Sent: Sun, 16 January, 2011 1:33:31 AM Subject: Re: [appengine-java] Mutation pool

Re: [appengine-java] Implementing custom login

2010-09-26 Thread Arun Ramanujapuram
Spring Security is one good option for custom login implementation. Arun From: Stakka To: Google App Engine for Java Sent: Sat, 25 September, 2010 9:14:00 PM Subject: [appengine-java] Implementing custom login Anyone have tips on how to best implement custom

Re: [appengine-java] Using the Python bulk exporter tool with a Java application

2010-09-19 Thread Arun Ramanujapuram
Seems like the account credentials you are using to login may not have admin privileges (i.e. should be a valid user/developer account in your app.), or there is some other authentication mechanism (e.g. spring security) that is invalidating the login. Arun