You can solve that handling GETs and POSTs with a common handler.
void doGet(... req,... resp) {
handle(req, resp);
}
void doPost(... req,... resp) {
handle(req, resp);
}
void handle(... req,... resp) {
}
On Tue, Dec 7, 2010 at 6:21 PM, Andy Haaf <[email protected]> wrote:
> My blobstore code works just great in the dev server (running on Mac) but I
> receive an error when uploading to production. I receive an Error: HTTP
> method GET is not supported by this URL even though the sample refers to
> post. As I said, works fine in Dev. Please help!
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine for Java" group.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-appengine-java%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine-java?hl=en.
>
--
Guit: Elegant, beautiful, modular and *production ready* gwt applications.
http://code.google.com/p/guit/
--
You received this message because you are subscribed to the Google Groups
"Google App Engine for Java" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine-java?hl=en.