How to install fluorinefx with support for .net framework 4.0?
I'm trying to integrate Flex and .net framework 4.0 classes, weborb is way too expensive and the only other option I have stumbled开发者_StackOverflow中文版 upon is fluorinefx but the installer on it's website doesn't support .net 4.0 and after downloading it's source code there is no clue about how to integrate it, no documentation at all and no answer on it's forum.
Have anyone been able to do this? and if so, how?
note: XML, JSON and such are not useful for me as the apps are data intensive, I'm looking for something that does the same job as weborb, fluorinefx, blazeds, etc for .net framework 4.0, fluorinefx seemed promising until I realized the forums are dead and there is absolutely no updated documentation.
You can compile the src from the fluorinefx project on google code to get the latest dlls. You would need to generate the fluorine.snk file to build though, in SolutionExplorer->FluorineFx-4.0->Properties->Signing, or use the command line, see ../snk/fluorine.snk.readme for details or How to: Sign an Assembly.
Otherwise you can use the .NET 3.5 libraries with 4.0, either by converting a 3.5 template project to 4.0 or linking a 4.0 project to the old dlls and adding the relevant fluorinefx configs to your web.config.
Just in case if you missed it, WebORB Community Edition is absolutely free and does support .NET Framework 4.0. See this for more details: http://www.themidnightcoders.com/products/weborb-for-net/producteditions.html
You dont have to use WebOrb or FlorineFx (both AMF options), you could use a regular HttpService set up in C#, with an ASP page to handle the communication to the SWF. There should be a good few tutorials if you search.
We did something similar to communicate between Air and C#, using a HttpListener in C# and posting requests from air to the listening port.
Edit: Heres an example for you
精彩评论