views:

36

answers:

1

I have a actionscript 3 based desktop Flash app which has its own event model(GUI component) and another native c++ application(business logic) which has its own model. I want to connect them and have a middleware module which can act like an arbiter between the two and dispatch events across the two components according to some model logic required for my domain specific app. What would be a good methodology to achieve this? Can i use some standard customizable existing middleware like Windows workflow foundation etc ?

A: 

The best you're probably going to find for now is the Native Process connection capabilities in AIR 2.0.

http://stackoverflow.com/questions/672021/adobe-air-to-execute-program

SomeJerk