Reputation: 165
I'm working on a project that runs off Google App Engine (Python) which stores various user details inside GAE's datastore. I have Flex content which users can use and once done the Flex app needs to send data to the Python backend to 'mark' the user off for that task. Any suggestions?
Upvotes: 0
Views: 190
Reputation: 938
You can use pyamf gateway for django and tipfy. I have a similar open source project with django-flex communication resting at github, so you can also check out.
Upvotes: 0
Reputation: 1160
Have a look on the following: http://fernandoacorreia.wordpress.com/2008/07/15/flex-and-python-project/
It may help.
Upvotes: 0
Reputation: 172279
Have flex send a request to the Python server. COuld be a form post or JSON data or whatever.
Upvotes: 1