[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

[google-appengine] Re: Body of a GET request

2010-11-12 Thread MasterGaurav
Hi Anton, I do not see anything in the request that suggests it has a body! What makes you suspect that... -- Happy Hacking, Gaurav Vaish www.mastergaurav.com On Nov 12, 2:25 pm, anton.belyaev anton.bely...@gmail.com wrote: Hello all, Sometimes I see in the logs GET requests with body!

[google-appengine] Re: Body of a GET request

2010-11-12 Thread MasterGaurav
IMHO, : is permitted in the URL and need not be escaped. However, '/' definitely needs to be escaped. -- Happy Hacking, Gaurav Vaish www.mastergaurav.com On Nov 13, 4:33 am, djidjadji djidja...@gmail.com wrote: I don't think that '/' and ':' are allowed characters in a GET parameter. You

[google-appengine] Re: Support for scope in OAuth API

2010-11-12 Thread MasterGaurav
Have a look at https://github.com/mohangk/appengine_oauth_provider -- Happy Hacking, Gaurav Vaish www.mastergaurav.com On Nov 12, 9:02 pm, Vladimir Prudnikov pru...@gmail.com wrote: Is there any chance to get support for scope in OAuth API or should I make custom OAuth Provider functionality

[google-appengine] Re: Support for scope in OAuth API

2010-11-12 Thread MasterGaurav
Oops! Pressed the send button accidentally... Additionally, you may want to explore: http://code.google.com/p/oauth/ -- Happy Hacking, Gaurav Vaish www.mastergaurav.com On Nov 13, 6:50 am, MasterGaurav gaurav.va...@gmail.com wrote: Have a look athttps://github.com/mohangk

[google-appengine] Re: Reset memcache immediately after deployment?

2010-11-02 Thread MasterGaurav
. On Mon, Nov 1, 2010 at 6:27 PM, MasterGaurav gaurav.va...@gmail.com wrote: If you are using a Java application, you can do a memcache reset in the context startup. Look at the description of the interface javax.servlet.ServletContextListener. -- Happy Hacking, Gaurav Vaish http

[google-appengine] Re: Do static files count towards bandwidth quota?

2010-11-02 Thread MasterGaurav
They do count towards bandwidth. In the log (I'm assuming the access logs), look at the response code. If it's 304 then in that case the browser used its local cache. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 2, 8:25 pm, pdknsk pdk...@googlemail.com wrote: I've

[google-appengine] Re: One big Model or several Models?

2010-11-02 Thread MasterGaurav
Hi Kaan, Have you looked into namespace support in modeling? I would personally vouch for one application with multi-tenancy. As for your load balancing over severs, it doesn't matter with GAE. You always point your DNS to ghs.google.com... so, the domain, application ID etc don't matter for

[google-appengine] Re: Reset memcache immediately after deployment?

2010-11-01 Thread MasterGaurav
If you are using a Java application, you can do a memcache reset in the context startup. Look at the description of the interface javax.servlet.ServletContextListener. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 1, 11:05 pm, pdknsk pdk...@googlemail.com wrote: I'd like

[google-appengine] Re: HTTP ERROR 403

2010-11-01 Thread MasterGaurav
Did you look at the server logs? -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 1, 4:01 am, jargon kotleat...@gmail.com wrote: I was following the jsp tutorial for google app engine and the following error occurred . HTTP ERROR 403 Problem accessing /. Reason:    

[google-appengine] Thread Support on GAE

2010-10-22 Thread MasterGaurav
Hi, Wondering is support for Thread is somewhere down the roadmap at GAE? The following structure is something that would be awesome: - Ability to start / control child threads in the app - Definitely, an upper cap on the maximum count - May be an upper limit on the time duration for which the

[google-appengine] Re: Thread Support on GAE

2010-10-22 Thread MasterGaurav
, but that's probably a mute point. -Original Message- From: google-appengine@googlegroups.com [mailto:google-appeng...@googlegroups.com] On Behalf Of MasterGaurav Sent: Friday, October 22, 2010 4:57 PM To: Google App Engine Subject: [google-appengine] Thread Support on GAE Hi

[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 =

[google-appengine] Re: Total Files - Limit

2010-10-21 Thread MasterGaurav
20, 10:52 pm, MasterGaurav gaurav.va...@gmail.com wrote: Hi, I have 2079 files in my war folder. When I do a appcfg update war, I get a file-limit error for having 4141 files. How can 2079 files turn into 4141 files... where am I missing out? I remember having read somewhere that each

[google-appengine] Re: Total Files - Limit

2010-10-21 Thread MasterGaurav
=ce2427885a6af79c774e7f084ae28339 Original issue info at http://code.google.com/p/googleappengine/issues/detail?id=161 -Gaurav www.mastergaurav.com On Oct 21, 11:36 am, MasterGaurav gaurav.va...@gmail.com wrote: Point taken. But then, why are 2000 files being counted at 4000+ files? -Gaurav On Oct

[google-appengine] Total Files Limit (3000) and Zip/Unzip solution

2010-10-21 Thread MasterGaurav
Hi, I have put up an updated Unzippper servlet to serve static files (actually based on http://code.google.com/p/googleappengine/issues/detail?id=161#c68)... just in case you are looking for a solution. http://code.google.com/p/googleappengine/issues/detail?id=161#c88 My addendum: - Respond

[google-appengine] Re: Total Files Limit (3000) and Zip/Unzip solution

2010-10-21 Thread MasterGaurav
And now, added support for If-None-Match and ETag as well. Spawned a new project at Github - http://github.com/gvaish/gae-utils As before, any critics, feedback, inputs and bugs/issues are more than welcome :) -Gaurav http://www.mastergaurav.com On Oct 21, 5:09 pm, MasterGaurav gaurav.va

[google-appengine] Total Files - Limit

2010-10-20 Thread MasterGaurav
Hi, I have 2079 files in my war folder. When I do a appcfg update war, I get a file-limit error for having 4141 files. How can 2079 files turn into 4141 files... where am I missing out? I remember having read somewhere that each file is counted twice in some conditions... don't remember what's

[google-appengine] Re: Is App Engine Ok now for others? Too many errors in 8:21 AM

2010-10-19 Thread MasterGaurav
And at this point in time, I am unable to upload files to Blobstore :( -Gaurav www.mastergaurav.com On Oct 19, 9:34 pm, Col Wilson terse...@gmail.com wrote: Mine seems to have improved too. So far. Let's hope... On Oct 19, 5:05 pm, Rafael Sierra rafaeljs...@gmail.com wrote: On Tue, Oct

[google-appengine] Blobstore Service Problem!

2010-10-19 Thread MasterGaurav
Hi, Not sure if it's an outage / issue with other apps as well. I am unable to upload files to the blobstore since last 1hr or so. On the URL /_ah/upload/blah, the does get submitted. The servlet's doPost does get invoked. I do get proper MapString, BlobKey using getUploadedBlobs but then, I

[google-appengine] Re: Blobstore Service Problem!

2010-10-19 Thread MasterGaurav
Ok... so, I am not alone in this universe. It's working now. Thanks all for responding and consoling me. :-D -Gaurav www.mastergaurav.com On Oct 20, 3:02 am, Charlie charlieev...@mac.com wrote: I'm seeing the same problem. On Oct 19, 4:25 pm, MasterGaurav gaurav.va...@gmail.com wrote

[google-appengine] Re: Announcing the Matcher API for Trusted Testers

2010-10-19 Thread MasterGaurav
Hi Ikai, That's a fantastic news! btw wondering if processing pipeline architecture is somewhere down the line in the roadmap? I have been working with FAST and OpenPipe, to name a couple, for document processing... and it will be great to have such a feature incorporated. Is something in

[google-appengine] GAE File Upload in IE8

2010-10-19 Thread MasterGaurav
Hi, I am facing a strange problem while uploading file using GWT + GAE. I am using IE8. I get an Access Denied error for the URL:

[google-appengine] Datastore and File Upload Size

2010-10-18 Thread MasterGaurav
Hi, I trying to upload file onto Blob Store. I am able to upload files only upto 1MB. Anything beyond 1MB doesn't reach the servlet. Is it a hard limit or am I doing something wrong? I'm using simple code... --- BlobstoreService blobSvc =

[google-appengine] Blobstore Billing

2010-10-18 Thread MasterGaurav
Hi, The billing quotas page at http://code.google.com/appengine/docs/quotas.html#Blobstore reads that the Free Default Quota is 1GB and Billing Enabled Default Quota is 1GB. Is this per-day quota? If so, it should get reset everyday... am I correct in my understanding? Or is the pricing of

[google-appengine] Re: Eclipse deletes my images upon deploying

2010-10-18 Thread MasterGaurav
Where are the images located? In the war folder? That's the only one uploaded onto the server. Just recheck and ensure that the images do get copied within the war folder (base or sub-folder). -Gaurav www.mastergaurav.com On Oct 18, 3:59 pm, Michael mike.mo...@gmail.com wrote: Hi, my