views:

56

answers:

1
+1  Q: 

Flexible Django

There is a remarkable book "Flexible Rails" http://www.manning.com/armstrong/. Is there something similar about integration Django and Flex?

+1  A: 

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.
sdolan