IO错误和流错误是什么意思(Flash)
我正在尝试从网站上的 flash 向控制器中的方法发送 http post(我的网站位于 Asp.Net MVC 上),但收到此错误:
错误 #2044:未处理的 ioError:。 text=错误#2032:流错误。 网址:http://www.mysite.com/Home/DoSomething 在 Main/postToMyWebsite()
关于为什么会发生这些错误以及如何防止它们有什么想法吗?
如果您需要更多信息,请告诉我,
谢谢,
马特
I'm trying to do an http post from flash on my website to a method in a controller (My site is on Asp.Net MVC) and I'm getting this error:
Error #2044: Unhandled ioError:. text=Error #2032: Stream Error. URL: http://www.mysite.com/Home/DoSomething
at Main/postToMyWebsite()
Any ideas of why these errors happen and how to prevent them?
Please let me know if you require any more info
Thanks,
Matt
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请检查此链接
http://curtismorley.com/2008/02/08 /actionscript-error-2032/
当使用错误的 URL 时,您可能会遇到这些类型的错误!!!!
Please check this link
http://curtismorley.com/2008/02/08/actionscript-error-2032/
These types of error you can expect when the wrong URL is used!!!!.
如果使用标准 HTML 表单制作您的 POST 是否有效? 如果没有,我不希望它在 Flash 中工作,所以您必须检查您的 ASP 代码。
ASP 页面是否回显任何内容? 如果该页面没有标题或根本没有输出,您可能会收到错误。 尝试输出一些东西。
另外,监听
httpStatus
事件可能会有所帮助。 这可能会让您对正在发生的事情有所了解。 要添加httpStatus
侦听器,您可以执行以下操作:如果这些都不起作用,请发布代码。 很难猜测那里会发生什么。
Does your POST work, if made from a standard HTML form? If not, I wouldn't expect it to work in Flash, so you'll have to check your ASP code.
Does the ASP page echo anything? You could be getting an error if there are no headers or no output at all from that page. Try to output something.
Also, it might help to listen to the
httpStatus
events. That might give you some insight on what's going on. To add ahttpStatus
listener, you do something like:Please post the code if none of theese work. It's quite hard to guess what could be going on there..