将 FluorineFx 解决方案部署到主机
我有一个非常简单的 .NET/FluorineFX 项目来测试 Flex 的远程处理,并且它在运行开发服务器时在本地工作,但是,当我将 Flex 应用程序指向虚拟主机帐户上的部署版本时,我收到 NetConnection 错误,具体来说:
错误#2044:未处理的 NetStatusEvent:。 level=error, code=NetConnection.Call.BadVersion
检查请求/响应显示 NetConnection 调用仅返回 gateway.aspx html 内容。看起来远程站点必须缺少一些配置值才能正确处理 application/x-amf 标头内容类型。
有什么想法吗?帮助将不胜感激。
I have a dead simple .NET/FluorineFX project to test remoting with Flex, and it works locally when running the development server, however, when I point the flex app to the deployed version on my virtual hosting account, I get a NetConnection error, specifically:
Error #2044: Unhandled NetStatusEvent:. level=error, code=NetConnection.Call.BadVersion
Inspecting request/response reveals the NetConnection call is just returning the gateway.aspx html content. It seems like the remote site must be missing some configuration value for properly handling the application/x-amf header content type.
Any thoughts? Help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了类似的问题。
在此处输入链接描述
结果是我所要做的所做的就是使应用程序池以经典模式而不是集成模式运行。问题已得到解决。
i faced a similar issue.
enter link description here
Turns out all i had to do was to make the app pool run in classic mode instead of integrated mode. the issue was fixed.