akrisanov
akrisanov

Reputation: 3214

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?

Upvotes: 1

Views: 142

Answers (1)

Sam Dolan
Sam Dolan

Reputation: 32532

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.

Upvotes: 1

Related Questions