[appengine-java] Re: Google accounts login as part of moduleLoad - CPU intensive - please comment

2011-07-20 Thread dreamer
Looks like # of app instances were zero, and GAE is load the app. => Couldn't access Thread.inheritableThreadLocals.Reference finalizer threads will inherit thread local values I did not get the meaning of this log entry. On Jul 18, 8:42 pm, dreamer wrote: > I did not give the context, I am

[appengine-java] Re: "Contains" query Low Level datastore

2011-07-20 Thread Cyrille Vincey
If you want to use the low-level API: Query query = new Query(yourClassName); query.addFilter("yourProperty", FilterOperator.IN, yourCollection); DatastoreService datastore = DatastoreServiceFactory.getDatastoreService(); PreparedQuery pq = datastore.prepare(query); -- You received this message b

[appengine-java] Two calls to userService

2011-07-20 Thread dreamer
Hi, I am using GAE "Userservice" for user auth. If user is not logged in, I create a login url using "createLoginURL" with app home page as destination url. standard stuff. After log in, Application is make another call to 'UserServervice" to find details and to check really login is successful,

[appengine-java] Datastore Replication Options - can not be changed once app id is created

2011-07-20 Thread dreamer
For now this option can not be changed once app id is created. Is there any possibility of changing this in future. I created small education site, for this "high replication" is not really necessary. Only way seems to create another application id, but I like old app id. Another issue, even if

[appengine-java] gaeom - new option for lightweight, high performance object mapping

2011-07-20 Thread Peter Murray
Greetings Java Appengine folks, I've just released the first beta of gaeom 1.0.0-b1. gaeom (google app engine object mapper) is a lightweight, easy to use, and performant object / datastore mapping framework. The framework is under active development towards 1.0, and has solidified to the point

[appengine-java] Adding new admin to the application: Verification email not received

2011-07-20 Thread kghate
I am trying to add an admin to the application, but the verification email is simply not coming through. The email account exists and is receiving emails from other users. Google Support, please help, this is a show stopper if we cannot add admins to the application! -- You received this messag

[appengine-java] Task queue locking up

2011-07-20 Thread John Patterson
I have a task which sometimes runs fine in a few seconds and other times locks up and times out after 10 mins. The logs do not show any exception just this message: 2011-07-21 01:38:06.983 A serious problem was encountered with the process that handled this request, causing it to exit. This i

Re: [appengine-java] gaeom - new option for lightweight, high performance object mapping

2011-07-20 Thread Ikai Lan (Google)
Nice logo. Did you draw that? Ikai Lan Developer Programs Engineer, Google App Engine Blog: http://googleappengine.blogspot.com Twitter: http://twitter.com/app_engine Reddit: http://www.reddit.com/r/appengine On Tue, Jul 19, 2011 at 5:41 PM, Peter Murray wrote: > > Greetings Java Appengine fo

Re: [appengine-java] gaeom - new option for lightweight, high performance object mapping

2011-07-20 Thread Peter Murray
Hi Ikai, Nah - I bought that dragon logo at a clip-art site. I think it was originally intended to be a tattoo design - it might look good on my left shoulder... Best, pete -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To

[appengine-java] Re: Python bulk loader tool with local dev server of GAE Java

2011-07-20 Thread Matt
I just wanted to say this works for me too. All you need to do is run Charles (this is on Mac OS X) and voila, it works. I spent a few hours trying to get it to work via web.xml modifications (I tried to turn off passwords) Also... the format of the python datastore is different than the jav

[appengine-java] Unable to install plugin

2011-07-20 Thread Bhupender
Hi, I have tried installing google plugins. But everytime it got failed in middle. After 45% it used to through some error ( related to some files in ...*.jar) Any idea? I am using eclipse-jee-helios for same. --Bhupender -- You received this message because you are subscribed to the Google

[appengine-java] shortblob is stored in local environment but not on googles app engine

2011-07-20 Thread meiaestro
Hi Experts, local storage of a short blob (byte array) works just fine. When I deploy the app to GAE I get a NULL Pointer Exception. Further investigation shows that the byte array (shortblob) is not stored into the datastore on GAE. What is my mistake? Thanks a lot! -- You received this mes

[appengine-java] Re: "Contains" query Low Level datastore

2011-07-20 Thread keyvez
Thanks guys that worked. The equality operator works as a contains operator for collection properties. -- 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/googl

Re: [appengine-java] Re: Python bulk loader tool with local dev server of GAE Java

2011-07-20 Thread Renan Mobile
Matt! i'm looking for this since life time!!! I have charles proxy installed, but what i should do next? You said that i can't use bulkloader.py to import my app engine datastore to the dev server. So what did you do after install charles proxy? If you could describe a step by step i'll appreciat

[appengine-java] multiple relationship fields error in JDO

2011-07-20 Thread Kesava Neeli
Hi, I have seen similar error message posted in groups. I just wanted to see if this is fixed in current release or we shouldn't use this paradigm at all.. class A{ } class B extends class A { } class MyClass { List aList; List bList; . } I get the error javax.jdo.JDOFatalUserExcep

[appengine-java] Re: gaeom - new option for lightweight, high performance object mapping

2011-07-20 Thread Roberto Saccon
Great. I am currently a happy user of slim3, but I am always interested in evaluating other approaches. Do you have somewhere a simple, but complete example app ? Is there a particular JSON encoder/decoder you recommend for using with gaeom ? -- You received this message because you are subscr

Re: [appengine-java] Re: Python bulk loader tool with local dev server of GAE Java

2011-07-20 Thread Renan Mobile
OMG! IT WORKS!!! I just download de Charles Proxy app (Mac OSX), run it and use the command line: ./appcfg.py upload_data --application=myapplicationid --filename=data/mydatastorebackup.cvs --url=http://localhost:/remote_api I don't know why and how it works! BUT WORKS! 2011/7/20 Re

[appengine-java] Re: How to use Python Bulk uploader to import data in local_db.bin ?

2011-07-20 Thread Renan
OMG! IT WORKS!!! I develop with Java SDK App Engine I just download the Charles Proxy app (Mac OSX), run it and use the command line: ./appcfg.py upload_data --application=myapplicationid --filename=data/mydatastorebackup.cvs --url=http://localhost:/remote_api I don't know why and

[appengine-java] Re: Remote_api in Java works in Development Server?

2011-07-20 Thread Renan
OMG! IT WORKS!!! I develop with Java SDK App Engine I just download the Charles Proxy app (Mac OSX), run it and use the command line: ./appcfg.py upload_data --application=myapplicationid --filename=data/mydatastorebackup.cvs --url=http://localhost:/remote_api I don't know why and