我是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>
所有redirect.html都会使用Javascript将用户重定向到我们网站的某个部分。重定向后,页面出现,并且缺少所有图像。我也一遍又一遍地在终端中得到这个错误。
2015-11-02 09:30:34.375 adl [90787:4976353] NSURLSession / NSURLConnection HTTP加载失败
(kCFStreamErrorDomainSSL,-9824)2015-11-02 09:30:34.414 adl [90787:4976353] CFNetwork SSLHandshake失败(-9824)
我在本地主机环境中运行SSL,重定向是https。我在此网站的other posts中发现了完全相同的错误,但我不确定如何在Adobe Air中应用他们的解决方案,因为他们的解决方案适用于iOS。有谁知道针对这个问题的Air特定解决方案?
顺便说一下,错误列表顶部还有其他几个错误:
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
我不确定这些错误是什么意思。我无法在Adobe的文档中找到这些错误编号。如果有人可以指向我,那将是伟大的。请记住,这不是Flash应用程序。
我觉得这与在页面上加载图片有关,不能显示。
答案 0 :(得分:0)
这可能会帮助其他人。问题是应用程序中存在与SSL域不同的域。即使这是一个HTTPS调用,Adobe仍然在抱怨。当我删除这些调用时,应用程序按预期工作,没有错误。