为什么我的Adobe Air应用程序出现错误#2032?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为什么我的Adobe Air应用程序出现错误#2032?相关的知识,希望对你有一定的参考价值。
我正在开发Adobe Air桌面应用程序。使用...尝试后端呼叫时出现错误(错误#2032)
<mx:HTTPService id="xmlReadDownloadSizeObject"
resultFormat="xml"
result="xmlDownloadSizeResultEvent(event)"
fault="xmlDownloadSizeFaultEvent(event)"
public function askDownloadSize(xmlString:String):void
{
var xmlParam:XML = new XML("<files>" + xmlString + "</files>");
globaltotalSize = 0;
xmlReadDownloadSizeObject.url = mainDataURL + "downloadsize.ashx";
xmlReadDownloadSizeObject.method = "POST";
xmlReadDownloadSizeObject.contentType = "application/xml"
xmlReadDownloadSizeObject.send(xmlParam);
}
mx.rpc.events.FaultEvent
faultDetail“错误:[IOErrorEvent type =”ioError“bubbles = false cancelable = false eventPhase = 2 text =”错误#2032:流错误。网址:http://localhost:5800/downloadsize.ashx“errorID = 2032] .URL:http://localhost:5800/downloadsize.ashx”
当我将后端调用更改为本地计算机上的网站应用程序副本(http://localhost:5800/downloadsize.ashx)时,会发生此错误。我最初直接调用服务器(https://www.serverName.com/Marathon/)。
我一直试图将这个漏洞弄清楚了一整天,我几乎把手举到空中!如果有人能提供一些有用的见解,我将不胜感激!
如果您需要更多信息,请与我们联系。谢谢
操作时间比平时长,所以我通过设置来改变最大执行时间......
import flash.net.URLRequestDefaults;
URLRequestDefaults.idleTimeout = 1200000; // or any amount of time in ms
还应注意,只有在应用程序安全沙箱中运行的Adobe®AIR®内容才能使用URLRequestDefaults类。其他内容将导致在访问此类的成员或属性时抛出SecurityError。
对于那些来自Google搜索的人:
我在安装Adobe Air应用程序时遇到错误2032,因为提供的文件名不正确。因此,解决错误的第二步是检查URL。
以上是关于为什么我的Adobe Air应用程序出现错误#2032?的主要内容,如果未能解决你的问题,请参考以下文章
Adobe Air 加载内部带有 allowDomain('*') 的外部 swf
Adobe Air iOs 包含“资源”文件夹时出现打包错误。为啥?