本文介绍了无法生成时间戳:连接重置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
编译adobe air应用程序时出现以下错误:
I get the following error when compiling an adobe air application:
[java] Could not generate timestamp: Connection reset
此应用程序之前几天编译良好。我不知道计算机的任何配置更改。
This application previously compiled fine a few days earlier. I don't know of any configuration changes to the computer.
推荐答案
我在build.xml文件中添加了以下参数,并错误消失了:
I added the following arguments to the build.xml file and the error went away:
<arg value="-tsa" />
<arg value="http://sha256timestamp.ws.symantec.com/sha256/timestamp" />
我的猜测是symantec迁移了air正在使用的时间戳服务。
My guess is that symantec moved the timestamp service that air is using.
我们使用ant从命令行进行构建; ant使用一个名为build.xml的文件。如果您是从命令行或.bat脚本运行adt命令,则可以添加 -tsa http://sha256timestamp.ws.symantec.com/sha256/timestamp
转到现有命令。
这篇关于无法生成时间戳:连接重置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!