[appengine-java] Re: Ecryption best practices (server side, client side, password handling)?

2010-08-01 Thread Luis Daniel Mesa Velasquez
I use both... but i guess it's just my case... my app is connected to Facebook and since something in their API catches fire daily over there, i decided to use one thing for something and another for the rest... i have to do a HmacSHA256 verification to ensure the data comes from FB and there's

[appengine-java] How to change meta data of class

2010-08-01 Thread Erencie
I was reading this post http://www.datanucleus.org/products/accessplatform_1_1/jdo/fetchgroup.html about fetch group because I encountered problem in accesseing a ListEvaluation field when I use pm.getObjectbyID(Course.class, myKey), in which Course contains a ListEvaluation field So I change

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

2010-08-01 Thread Jan
Hi, I still did not find any solution to use the bulk uploader (now version 1.3.5) locally with GAE/Java. Communication with the production server works fine. As I cannot find any information about this issue, I assume that nobody else faces this problem. Can someone please post the steps

[appengine-java] problem in auto-generate index after deploy application

2010-08-01 Thread Erencie
I think someone has posted this before but the post is not written in English so I don't understand. I tested thoroughly in my local machine and there is no problem in persisting one of my user objects. After I upload it to Google App Engine, and do the same thing, the following errors occurs:

Re: [appengine-java] problem in auto-generate index after deploy application

2010-08-01 Thread Alfred Fuller
What query are you running that produces this exception? On Sun, Aug 1, 2010 at 8:06 AM, Erencie xiaoni@gmail.com wrote: I think someone has posted this before but the post is not written in English so I don't understand. I tested thoroughly in my local machine and there is no problem in

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

2010-08-01 Thread John Patterson
Hi Jan, I have used the Java RemoteDatastore to upload and download data in bulk. It allows you to use the low-level API, JDO, Twig, Objectify or whatever to store your data remotely or locally. http://code.google.com/p/remote-datastore/ On 1 Aug 2010, at 19:49, Jan wrote: Hi, I still

Re: [appengine-java] java.net.Proxy not on the JRE Class White List but I can reference it runtime!!

2010-08-01 Thread Toby Reyelts
Hi Marcel, The GAE sandbox tries to be very lenient with regards to references to classes that aren't on the whitelist. Generally speaking, SecurityExceptions are only thrown if the calling code would have caused the static initializer of the non-whitelisted class to execute. So, for example,

[appengine-java] Re: java.net.Proxy not on the JRE Class White List but I can reference it runtime!!

2010-08-01 Thread Marcel Overdijk
Thanks for the explanation Toby, This means I can use the java.net.Proxy class without problems in my library. Cheers, Marcel On Aug 1, 10:13 pm, Toby Reyelts to...@google.com wrote: Hi Marcel, The GAE sandbox tries to be very lenient with regards to references to classes that aren't on the

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

2010-08-01 Thread emmanuel harel
John, could you give more information about how to use your library please ? I am not sure it is obvious for anyone. What are the dependencies of your project : the jar used. Thanks a lot 2010/8/1 John Patterson jdpatter...@gmail.com Hi Jan, I have used the Java RemoteDatastore to upload and

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

2010-08-01 Thread John Patterson
You need to check out the source code (or even just copy and past the classes) into your own project - no downloads or jars (as stated on the project homepage) http://code.google.com/p/remote-datastore/source/checkout To insert data locally just call: RemoteDatastore.install(myAppId,

[appengine-java] Re: problem in auto-generate index after deploy application

2010-08-01 Thread Erencie
Firstly, I call this to persiste a Coordinator object. Coordinator coordinator, boolean active) { Course course = new Course(id, courseName, coordinator, active); PersistenceManager pm = PMF.get().getPersistenceManager(); try

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

2010-08-01 Thread Jan
Hi John, your remote-datastore tool looks great! Thank you very much for pointing me to it! I will have a look. It would still be a great improvement if Google's App Engine team could improve on the bulk loader or maybe even provide a Java version. That would complete an already excellent app