[appengine-java] Transferring app to new account

2010-11-28 Thread Kamal
Hello, Does anyone know if there is a way to transfer an app name to a new account. I have an app name reserved in one google account but would like to move it to a new account. Is that possible? Thanks.. -- You received this message because you are subscribed to the Google Groups Google App

[appengine-java] Blobstore and JUnit?

2010-11-28 Thread Gal Dolber
Hi, I am having problems testing the blobstore. I did the initialization: LocalBlobstoreServiceTestConfig blob = newLocalBlobstoreServiceTestConfig(); blob.setBackingStoreLocation(./blobs); helper = new LocalServiceTestHelper(newLocalDatastoreServiceTestConfig(), blob);

Re: [appengine-java] Install plugin failed. Missing Requirement. Eclipse Helios SR1.

2010-11-28 Thread Rajeev Dayal
When installing GPE, did you choose the option Contact available update sites to find required software checked? Also, what update sites are enabled on your installation of eclipse? You need to make sure that the Helios update site ( download.eclipse.org/releases/helios) is present and enabled.

[appengine-java] Accessing persisted/detached objects after PersistenceManager has been closed

2010-11-28 Thread tamsler
I am trying to get a collection of objects that are stored in the database using JDO. Once the objects have been retrieved, they are marshaled into JSON and sent to the client. I need some help in deciding which of the following two approaches is the better one: Approach 1: // Using

[appengine-java] Re: Accessing persisted/detached objects after PersistenceManager has been closed

2010-11-28 Thread tamsler
I just came across the following document: http://www.datanucleus.org/products/accessplatform/performance_tuning.html ..., which lists two more ways for Reading persistent objects outside a transaction and PersistenceManager. -- Thomas -- You received this message because you are

[appengine-java] Re: Blobstore and JUnit?

2010-11-28 Thread Didier Durand
Hi, Everything you need is detailed here: http://groups.google.com/group/google-appengine-java/browse_thread/thread/2bea1295a3f542de/854ea95dcd986dab regards didier On Nov 28, 6:13 pm, Gal Dolber gal.dol...@gmail.com wrote: Hi, I am having problems testing the blobstore. I did the

[appengine-java] Re: Transferring app to new account

2010-11-28 Thread Didier Durand
Hi, You have to: 1) create your new Google Account 2) From the old account authorize the new account as developper 3) check that everything is ok from the new account 4) revoke the old account as developper from the new one. Done! didier On Nov 28, 5:56 pm, Kamal kamalka...@gmail.com wrote:

[google-appengine] Eclipse - Linked Stylesheets

2010-11-28 Thread RRRaney
Hello, I am using eclipse IDE to create my AppEngine Applications. I have a Stylesheet that I have been using in all of the projects. The Stylesheet file is actually included in the war folder of each project (different copies). I have been trying to move this to a seperate folder and then

Re: [google-appengine] Re: logging seems be disabled in my app

2010-11-28 Thread Chris Copeland
Logging has ceased on two of my apps as well. Last recorded entry was at 11/26/2010 at 07:52 PST just as others have indicated. On Sat, Nov 27, 2010 at 5:17 PM, Sam G samuel.gam...@gmail.com wrote: Logging disabled in my app as well... along with the intermittent 500 errors on pages that

[google-appengine] Re: logging seems be disabled in my app

2010-11-28 Thread Philip
Logging does not work correctly for my dev app (id: d-crawl). There is already an issue, although it is very old everyone who is also affected should star it: http://code.google.com/p/googleappengine/issues/detail?id=3338 On Nov 28, 2:56 pm, Chris Copeland ch...@cope360.com wrote: Logging has

[google-appengine] Polymodels - immutable or mutable?

2010-11-28 Thread Rein Petersen
Hi all, looking for some guidance here... I often find myself using inheritance in such a way that it also indicates state. For example, we might have a PlacedOrder class that will go through an approval process before it becomes the more specialized ApprovedOrder class. The ApprovedOrder class

Re: [google-appengine] Polymodels - immutable or mutable?

2010-11-28 Thread Jeff Schwartz
You didn't mention what language you are using but generally speaking you can create either a constructor for class B taking an A object as a parameter that understands how to create itself using the fields of an A object or you can create static class factory methods that produces one class given

Re: [google-appengine] Polymodels - immutable or mutable?

2010-11-28 Thread Rein Petersen
Thanks Jeff, You're right - the way you have described is the way I should do it. But something bothers me about not being able to model relationships and state using inheritance. When I think about the problem domain, I really do want to model it the way I have described. I have achieved it on

Re: [google-appengine] Polymodels - immutable or mutable?

2010-11-28 Thread Jeff Schwartz
If it works for you then by all means go with it. From my own perspective, though, one based on my own experiences, I've found it best to adhere to tried and true OO principles. There are always exceptions of course and doing something in a prescribed manner without questioning the logic of doing

[google-appengine] Re: Polymodels - immutable or mutable?

2010-11-28 Thread Rein Petersen
It turns out that after listening to advice and doing some more reading that I have corrections to make and an admission that what I have suggestied is probably a bad idea (although there is a strong likelihood I will do it anyway). I found in Python documentation that an object's type may not be

[google-appengine] Nature-focused startup seeking Python App Engine Developer

2010-11-28 Thread Martin Ceperley
Software Developer + Nature Lover We're seeking a code monkey who loves monkeys Company Background: We launched Networked Organisms earlier this year with the mission of using fun and engaging technology solutions to help people reconnect with the planet. Our award-winning application,

[google-appengine] Re: Polymodels - immutable or mutable?

2010-11-28 Thread Jay Young
Just remember that IE doesn't expose an object's __proto__ attribute, so this won't work on IE. Test thoroughly. On Nov 28, 1:21 pm, Rein Petersen rein.peter...@gmail.com wrote: I just want to end saying that if you are reading this post - please don't think that I am endorsing the use of