[google-appengine] Re: Generating invite link

2010-11-18 Thread Gaurav Vaish
handler at "/invite/*" Grab the path-info (HttpServletRequest::getPathInfo). Remove leading "/". Remainder part is your code. Search in DB using this code. Get the email/invitationTime to do futher processing (your invitation has been expired or welcome). Hope that helps.

[google-appengine] Re: JSP return binary data

2010-11-18 Thread Gaurav Vaish
;download" stuff as a "download servlet" rather than a "download JSP"... and doing that should be pretty straight-forward. Furthermore (just an addition for download), you may want to add a header "Content-Disposition: attachment; filename=filename.mp3". -- Hap

[google-appengine] Re: Do I use GET or POST sending mail?

2010-11-18 Thread Gaurav Vaish
Post. And I'd recommend doing a redirect (302) after the mail is sent so that if the user accidently presses the refresh button, mail is not resent. -- Happy Hacking, Gaurav Vaish www.mastergaurav.com On Nov 19, 7:25 am, Zeynel wrote: > The tutorial > herehttp://code.google.com/app

[google-appengine] Re: Store Image to Blobstore withou Upload FORM

2010-11-21 Thread Gaurav Vaish
You cannot. There's not API other than to use BlobStoreService. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 21, 6:51 pm, acellam guy wrote: > how can i store an image to blobstore without using a form -- You received this message because you are subscribe

[google-appengine] Re: PDF to Image - Impossible

2010-11-21 Thread Gaurav Vaish
If you are working with the Java version, PDFBox is pretty decent one... http://pdfbox.apache.org/commandlineutilities/PDFToImage.html I've not tried it out personally but have heard about it a lot. And comes from Apache stable! :) -- Happy Hacking, Gaurav Vaish http://www.mastergaura

[google-appengine] Re: PROBLEM: Deploying new version. Checking if new version is ready to serve. Checking if new version is ready to serve. Will check again in 60 seconds.

2010-11-21 Thread Gaurav Vaish
Now? Do a rollback. Delete the version on the server. Try again... have seen this issue popping up several times, specially on the weekend. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 21, 6:26 pm, Dmitry wrote: > experience the same issues last 3 hours... > >

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Gaurav Vaish
+1. Dashboard (https://appengine.google.com) gives 500. -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 24, 2:14 am, "Ikai Lan (Google)" wrote: > Looking at it. > > -- > Ikai Lan > Developer Programs Engineer, Google App Engine > Blogger:http://

[google-appengine] Re: app dashboard not accessible

2010-11-23 Thread Gaurav Vaish
Up now! Thanks Ikai... -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On Nov 24, 2:33 am, "A. Stevko" wrote: > @Krishna > what is the link to that console? its not in my bookmarks, > > On Tue, Nov 23, 2010 at 1:24 PM, dflorey wrote: > > It would

[google-appengine] Re: Cannot deploy my app to the GAE

2010-11-23 Thread Gaurav Vaish
because the java.sun.com server was not available (after aquisition by Oracle). You can change the "" lines to one line as follows follows: http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";> -- Happy Hacking, Gaurav Vaish

[google-appengine] Re: Version 1.4.0 is out!

2010-12-04 Thread Gaurav Vaish
I'm loving it! -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this gr

[google-appengine] Re: google apps wildcard subdomains at godaddy

2010-12-14 Thread Gaurav Vaish
Hi, If you map abcd.xyz.com to ghs.google.com, automatically, *.abcd.xyz.com will be served by ghs.google.com I think all you need to do is map "@" to ghs.google.com (which by default is mapped to "www"). -- Happy Hacking, Gaurav Vaish http://www.mastergaurav.com On De

[google-appengine] Re: Post a multipart-form with binary data from GAE to Facebook

2011-04-17 Thread Gaurav Vaish
Hi, Not sure what do you mean by the streaming request, but GAE does allow connecting to other servers (outbound request) using HTTP on port 80. You can use any library, for example, http://hc.apache.org (for Java) to make a request to another HTTP server, port 80. -- Cheers, Gaurav Vaish http