[appengine-java] Re: A question about google service dashboard

2011-05-02 Thread Didier Durand
Hi, It may be only a partial response to your needs but at least you can use AppStats (http://code.google.com/appengine/docs/java/tools/ appstats.html) to get a programmatic view of the health of your application regards didier On Apr 30, 8:02 am, uronn wrote: > Hello,everyone. I am new to goo

[appengine-java] Re: web application migration to the cloud using GAE

2011-05-02 Thread Didier Durand
Hi, to reduce the initial effort suggested by Luca, you could try the sql support offered by GAE: see http://code.google.com/appengine/business/#features That could get you up and running on GAE more quickly. Then, you could decide if it is worth the refactoring or not because it's clear that dat

Re: [appengine-java] Objectify: IllegalAccessError

2011-05-02 Thread Jeff Schnitzer
Are you running with a very old GAE SDK... something before 1.4.0, perhaps? Make sure you are using the latest. Jeff On Mon, May 2, 2011 at 3:16 PM, GeneralSlaine wrote: > Hi all, > > I'm a first time user of objectify and  I'm implementing the > intorduction (with slightly modified classes). W

[appengine-java] Objectify: IllegalAccessError

2011-05-02 Thread GeneralSlaine
Hi all, I'm a first time user of objectify and I'm implementing the intorduction (with slightly modified classes). When calling ObjectifyService.begin() I already run into trouble: an IllegalAccessError is thrown: //Some objectify Test code ObjectifyService.register(Website.class

Re: [appengine-java] web application migration to the cloud using GAE

2011-05-02 Thread Luca Matteis
If you're using standard APIs for your data layer like JDO or JPA then it should work out of the box... otherwise you're pretty much stuck having to re-write many layers. The I/O layer for example needs to be completely abstracted out because no I/O operations (other than reading resources) are all

Re: [appengine-java] Re: Some details on how GAE actually works

2011-05-02 Thread Ikai Lan (Google)
We're going to talk a bit about this at Google I/O. The sessions will be posted online shorted after they are delivered. It's this session: Life in Production (Michael Handler, Alan Green) http://www.google.com/events/io/2011/sessions.html Our data centers currently are located in North America,

[appengine-java] web application migration to the cloud using GAE

2011-05-02 Thread Sherif Amer
Dears, I have web application and want to migrate this web application to the cloud using GAE any idea how to do this ? Note: my application developed using JSF framework and connecting to Oracle DB. -- You received this message because you are subscribed to the Google Groups "Google App Engine

[appengine-java] A question about google service dashboard

2011-05-02 Thread uronn
Hello,everyone. I am new to google app engine. I want to know the google service status from my code. As you know , We can go to the site [http://www.google.com/ appsstatus#hl=en] and view the result. But I would like to get status from my google app code. And which google api should I use for

[appengine-java] How to get google service status from my code?

2011-05-02 Thread uronn
Hello. I am new to google app engine. I want to know the google service status from my code. As you know , We can go to the site [http://www.google.com/ appsstatus#hl=en] and view the result. But I would like to get status from my google app code. And which google api should I use for getting t

[appengine-java] Relationship between Federated Login, Cookie Expiration in App Engine Application Settings, ACSID

2011-05-02 Thread Jeremy Brown
I'm using Federated Login in my application. In the App Engine admin page, under Application Settings, I have Cookie Expiration set to 1 Day. When I authenticate with OpenID, I see that an ACSID cookie is created for my application's domain. It has an expiration time of just 2 hours after its creat

[appengine-java] Re: Security constraint not working

2011-05-02 Thread Kaamel
Did you get to the root cause? I am having exactly the same problem. Thanks, On Mar 21, 9:17 am, Don Schwarz wrote: > Can you reply privately with your app id? > > > > > > > > On Sat, Mar 19, 2011 at 1:23 PM, Rob wrote: > > Hi folks, > > > I'm sure this is just me being foolish, but I have the

[appengine-java] req.getContentLength() returns -1, what is wrong ???

2011-05-02 Thread Manvel Saroyan
Hi. I'm using current validation code on my HTTPServlet to check if the user uploads big files: public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { long maxSize = 1024*1024 * 1; //Limit 50 MB int contentLength = req.getContentLength(); if

[appengine-java] req.getContentLength() returns -1, what is wrong ???

2011-05-02 Thread Manvel Saroyan
Hi. I'm using current validation on my HTTPServlet to check if the user uploads big files: int contentLength = req.getContentLength(); if (contentLength < 0 || contentLength > maxSize) { res.sendError(509, "CHAP@: "+contentLength+" BYTE-a");

[appengine-java] Re: com.google.appengine.api.datastore.Key serialization issues

2011-05-02 Thread Matija
And this GAE Key serialization issue is now so evident problem because in objectify 3.0 Key class is simple wrapper around GAE Key (it holds raw pointer to it) and you can't serialize it properly on any java client or in android application. -- You received this message because you are subscri

[appengine-java] Re: GAE Teams Content-Transfer-Encoding: base64 data uploads don't work.

2011-05-02 Thread Brandon Donnelson
I've been trying to find a work around for base64 upload to see if I could get it to upload and I can't find one yet. I previously was able to get some base64 to upload but for some reason I can't anymore. -- You received this message because you are subscribed to the Google Groups "Google App

[appengine-java] com.google.appengine.api.datastore.Key serialization issues

2011-05-02 Thread dilbert
I use an application on a non-GAE server to backup some data (via a Hessian-service implemented on GAE) from my APP engine application datastore. The data is loaded from the datastore as objects which are then serialized by Hessian and sent to the non-GAE service. The data is then stored in an

[appengine-java] logs: Column-Description, URL-Parameter in POST-Request

2011-05-02 Thread Stefan Krecher
Hi, developing a facebook-app hosted on gae, i encounter the following kind of log-entry (app-name/ ip obscured): 1.2.3.4 - - [02/May/2011:00:14:10 -0700] "POST /myapp/name HTTP/1.1" 200 188 "http://myapp.appspot.com/name.html?bla&auth_token=e79cca5370383a89deaeca05a8cc3e23"; "Mozilla/5.0 (W