The book about integration Django and Flex
There is a remarkable book "Flexible Rails" http://www.manning.com/armstrong/ about how to use Ruby on Rails and Adobe Flex to build next-generation rich Internet applications (RIAs). Does anybody know any similar resource 开发者_开发技巧about integrating Django and Flex?
I'm not aware of any similar books, but all you really need is an API integration from your flex app to your django app.
I've used the following 2 methods with success:
- REST API with simple HTTP access on the flex side. See django-piston and flex's mx.rpc.http.HTTPService/built-in XML deserializer.
- AMF protocol: See django-amf-gateway w/ pyamf for examples.
精彩评论