Re: [google-appengine] Re: Upload works locally but not on server.

2011-08-29 Thread Yasuo Higa
Hi Brian, There is a blobstore sample using slim3: http://slim3demo.appspot.com/blobstore/ Yasuo Higa On Fri, Aug 26, 2011 at 9:37 PM, Brian wrote: > Adam -- > > How were you able to modify the post header?  I'm experiencing the > same issue and am using the slim3 mvc framework. > > Thanks, > >

[google-appengine] Re: Upload works locally but not on server.

2011-08-29 Thread Brian
Adam -- How were you able to modify the post header? I'm experiencing the same issue and am using the slim3 mvc framework. Thanks, Brian On Jul 14, 10:03 pm, adam wrote: > I was able to solve this. The parser in production GAE is more > sensitive than the one in the development environment, a

[google-appengine] Re: Upload works locally but not on server.

2011-07-14 Thread adam
I was able to solve this. The parser in production GAE is more sensitive than the one in the development environment, and the one in production provides no useful information to the user about why it fails. This is a known issue: http://code.google.com/p/googleappengine/issues/detail?id=3273 for t

[google-appengine] Re: Upload works locally but not on server.

2011-07-14 Thread adam
Just a bit more data: it's clear to me that the upload URL isn't being caught by the WSGIApplication on the server. I know this because when I insert a catch-all url path pattern, the upload POST request hits that handler instead of the BlobstoreUploadHandler. My WSGIApplication is instantiated lik