当 flash 尝试将 dato 发布到我的 asp.net mvc 应用程序时,出现未处理的安全异常
我正在构建一个基本上处理从 Flash 应用程序接收帖子数据的操作,但是当 Flash 制作帖子(带有长 xml 字符串)时,它看起来像 mvc fakework 阻止帖子,我得到以下输出:
响应标头:
POST http://mysite.com/mycontroller 302 找到
GET http://mysite.com/Error/Generic?aspxerrorpath=/mycontroller 200 OK
事件查看器:
事件消息: 发生了未处理的安全异常。
我尝试过:
在我的控制器上 [AcceptVerbs(HttpVerbs.Post), ValidateInput(false)] 在我看来: ValidateRequest="false"
crossdomain.xml 在应用程序的根目录中。
对 .net 配置的信任度较低。
我已经在本地进行了测试并可以正常工作,但是当上传到生产服务器时,我得到:
发生了未处理的安全异常。
I'm building an action that basically handles receiving post data from a flash app, but when the flash make the post (with a long xml string) its seem like mvc frakework block the post and i get the folowing outputs:
Response headers:
POST http://mysite.com/mycontroller 302 Found
GET http://mysite.com/Error/Generic?aspxerrorpath=/mycontroller 200 OK
Event Viewer:
Event message: An unhandled security exception has occurred.
I have tried :
On my controller [AcceptVerbs(HttpVerbs.Post), ValidateInput(false)]
On my view : ValidateRequest="false"
crossdomain.xml in the root of the application.
low level of trust in .net configuraction.
I have tested locally and works it, but when upload to production server i get :
An unhandled security exception has occurred.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
生成异常的代码有问题,不是闪存。 de flash 和 mvc 的唯一问题是任何重定向、redirectoaction、o 返回其他视图在 flash post 之后都不起作用。
there was a problem in the code that generated the exception, it was not the flash. The only problem with de flash and mvc is that any redirect, redirectoaction, o return other view does not work after the flash post.