[appengine-java] Re: multiple GAE apps under one Google Apps domain

2011-10-18 Thread MasterGaurav
Yes. The combo is possible... multiple domains pointing to the same App ID. I have a couple of apps already doing stuff... just ensure that you've got the domain mappings done correctly. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Oct 18, 4:30 pm, Eliot Stock <1...@eliotstock.

[appengine-java] Re: doPost with ID and email to save Blob (image)

2010-10-21 Thread MasterGaurav
Instead of saving it in DataStore, I would recommend using BlobStore. I do it something like this: - Retrieve all data uploaded using BlobstoreService::getUploadedBlobs - Do all the validation, as may be required (with other form data) - if !valid => BlobstoreService::delete(...) else =>

[appengine-java] Re: Automatic logout via Google Login Service ?

2010-10-21 Thread MasterGaurav
Hi, I assume that your application can distinguish between the user who is logged (as Google Accounts user) is a part of your application or not. You can try doing something like this (for automatic logout)... String link = userService.createLo