My flash-pyamf-gae works nice. Now I would like to create a classic Django form by following the google tutorial : http://code.google.com/appengine/articles/djangoforms.html I did but when I post the data entered in my form i get the following message from pyamf :
Malformed stream (amfVersion=110)
400 Bad Request The request body was unable to be successfully decoded.
Traceback:
Traceback (most recent call last):
File "C:\Users\Giil\Documents\dev\gae\moviesbuilder\pyamf\remoting\gateway\google.py", line 79, in post logger=self.logger, timezone_offset=timezone_offset)
File "C:\Users\Giil\Documents\dev\gae\moviesbuilder\pyamf\remoting_init_.py", line 640, in decode msg.amfVersion) DecodeError: Malformed stream (amfVersion=110)Malformed stream (amfVersion=110)
Now that make sens to me because what I send from my form is not amf. How can I deal with this ?
Note : I have the feeling that the problems come from my app.yaml I have no special handler to tell the application to process this form differently...Malformed stream (amfVersion=110)