如何安装支持.net Framework 4.0的fluinefx?

发布于 2024-10-07 22:42:06 字数 312 浏览 11 评论 0原文

我正在尝试集成 Flex 和 .net Framework 4.0 类,weborb 太贵了,我偶然发现的唯一其他选择是 fluinefx,但其网站上的安装程序不支持 .net 4.0,在下载它的源代码后不知道如何集成它,根本没有文档,论坛上也没有答案。

有人能够做到这一点吗?如果是这样,怎么办?

注意:XML、JSON 等对我来说没有用,因为这些应用程序是数据密集型的,我正在寻找与 .net Framework 4.0 的 weborb、fluinefx、blazeds 等功能相同的东西,fluinefx 似乎很有前途,直到我意识到论坛已经死了,而且绝对没有更新的文档。

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

若有似无的小暗淡 2024-10-14 22:42:07

您可以从 Google 代码上的 fluinefx 项目 编译 src 以获取最新的 dll 。您需要生成 fluorine.snk 文件来构建,在 SolutionExplorer->FluorineFx-4.0->Properties->Signing 中,或使用命令行,请参阅 ../snk/fluorine.snk.readme 了解详细信息或如何:签署程序集

否则,您可以将 .NET 3.5 库与 4.0 一起使用,方法是将 3.5 模板项目转换为 4.0,或者将 4.0 项目链接到旧的 dll,并将相关的 florinefx 配置添加到 web.config。

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.

难如初 2024-10-14 22:42:07

万一您错过了,WebORB 社区版完全免费,并且支持 .NET Framework 4.0。有关更多详细信息,请参阅此:http://www.themidnightcoders.com/products /weborb-for-net/producteditions.html

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

枕花眠 2024-10-14 22:42:07

您不必使用 WebOrb 或 FlorineFx(都是 AMF 选项),您可以使用 C# 中设置的常规 HttpService,并使用 ASP 页面来处理与 SWF 的通信。如果你搜索的话应该有很多教程。

我们做了一些类似的事情来在 Air 和 C# 之间进行通信,使用 C# 中的 HttpListener 并将来自 Air 的请求发送到侦听端口。

编辑:这是一个示例 适合您

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文