如何修复阻止加载图像的Adobe Air SSL错误

如何修复阻止加载图像的Adobe Air SSL错误,ssl,air,adobe,Ssl,Air,Adobe,我是Adobe Air的新手。我正在用它构建我的第一个应用程序。它不是Flash应用程序。这是我的application.xml文件: <?xml version="1.0" encoding="UTF-8"?> <application xmlns="http://ns.adobe.com/air/application/3.7"> <id>iViewDesktop</id> <name>Patient Educati

我是Adobe Air的新手。我正在用它构建我的第一个应用程序。它不是Flash应用程序。这是我的application.xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<application xmlns="http://ns.adobe.com/air/application/3.7">
    <id>iViewDesktop</id>
    <name>Patient Education</name>
    <filename>Patient Education</filename>
    <versionNumber>1.0.0</versionNumber>
    <installFolder>patient-education</installFolder>
    <initialWindow>
        <title>Patient Education</title>
        <content>redirect.html</content>
        <description>This is an Adobe Air version of Patient Education</description>
        <systemChrome>standard</systemChrome>
        <transparent>false</transparent>
        <visible>true</visible>
        <resizable>true</resizable>
        <renderMode>direct</renderMode>
        <aspectRatio>landscape</aspectRatio>
        <autoOrients>true</autoOrients>
        <width>1024</width>
        <height>768</height>
    </initialWindow>
    <icon>
        <image16x16>icons/pe-16x16.png</image16x16>
        <image32x32>icons/pe-32x32.png</image32x32>
        <image48x48>icons/pe-48x48.png</image48x48>
        <image128x128>icons/pe-48x48.png</image128x128>
    </icon>
</application>

但我不知道如何在AdobeAIR中应用他们的解决方案,因为他们的解决方案是针对iOS的。有人知道这个问题的任何特定于空气的解决方案吗

顺便说一下,在错误列表的顶部还有几个其他错误:

Nov  2 09:30:16  adl[90787] <Error>: The function ‘CGFontSetShouldUseMulticache’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
2015-11-02 09:30:31.181 adl[90787:4976353] CFNetwork SSLHandshake failed (-9824)
2015-11-02 09:30:31.222 adl[90787:4976353] CFNetwork SSLHandshake failed (-9802)
2015-11-02 09:30:31.262 adl[90787:4976353] CFNetwork SSLHandshake failed (-9802)
2015-11-02 09:30:31.262 adl[90787:4976353] NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
TypeError: Result of expression 'document.getElementById('nav-close-btn')' [null] is not an object.
 at https://spear.dev/javascript/global.js?t=20150924 : 1380 
Nov 2 09:30:16 adl[90787]:函数“CGFontSetShouldUseMulticache”已过时,将在即将进行的更新中删除。不幸的是,此应用程序或其使用的库正在使用此过时的功能,从而导致系统性能的整体下降。
2015-11-02 09:30:31.181 adl[90787:4976353]CFNetwork SSLHandshake失败(-9824)
2015-11-02 09:30:31.222 adl[90787:4976353]CFNetwork SSLHandshake失败(-9802)
2015-11-02 09:30:31.262 adl[90787:4976353]CFNetwork SSLHandshake失败(-9802)
2015-11-02 09:30:31.262 adl[90787:4976353]NSURLSession/NSURLConnection HTTP加载失败(kCFStreamErrorDomainSSL,-9802)
TypeError:表达式“document.getElementById('nav-close-btn')”的结果[null]不是对象。
在https://spear.dev/javascript/global.js?t=20150924 : 1380 
我不知道这些错误是什么意思。我找不到Adobe文档中列出的这些错误号。如果有人能给我指出这些,那就太好了。请记住,这不是一个Flash应用程序


我觉得这与在页面上加载不显示的图像有关。

这可能对以后的其他人有所帮助。问题是应用程序中存在与SSL域不同的域。尽管是HTTPS电话,Adobe仍在抱怨。当我删除这些呼叫时,应用程序按预期工作,没有错误