Jarsigner(MIME 内容类型不是 application/timestamp-reply)
Jarsigner (MIME Content-Type is not application/timestamp-reply)
前段时间我编写了一个程序来在我们的构建过程中对 jars 进行签名。这几个月没有任何问题。
现在 jarsigner 输出(不改变任何东西!):
jarsigner: unable to sign jar:
java.io.IOException: MIME Content-Type is not application/timestamp-reply
罐子不再签名。
问题是什么?我需要做什么才能让 jarsigner 重新工作?
我正在使用这个时间戳服务器:
http://timestamp.comodoca.com
和这个 Java 版本:
Java Linux
上的 HotSpot(TM) 64 位服务器虚拟机“1.8.0_101”
这是我的确切命令行(过去几个月一直有效!):
jarsigner -storetype pkcs12 -keystore certificate_file.p12 -storepass mypassword -tsa http://timestamp.comodoca.com myjarfile.jar myalias
我遇到了同样的问题。我认为今天 Comodo 的时间戳服务发生了一些变化。 http://timestamp.comodoca.com 的回复状态目前为
HTTP/1.1 302 临时移动
内容类型:text/html
这会导致 jarsigner 出现问题,因为它期望内容类型为 application/timestamp-reply
您应该通过 https://support.comodo.com/index.php?/Knowledgebase/Article/View/68/0/time-stamping-server
联系 Comodo 支持
今天有效。好像他们在他们的时间戳服务器上改变了一些东西。
前段时间我编写了一个程序来在我们的构建过程中对 jars 进行签名。这几个月没有任何问题。
现在 jarsigner 输出(不改变任何东西!):
jarsigner: unable to sign jar:
java.io.IOException: MIME Content-Type is not application/timestamp-reply
罐子不再签名。
问题是什么?我需要做什么才能让 jarsigner 重新工作?
我正在使用这个时间戳服务器:
http://timestamp.comodoca.com
和这个 Java 版本:
Java Linux
这是我的确切命令行(过去几个月一直有效!):
jarsigner -storetype pkcs12 -keystore certificate_file.p12 -storepass mypassword -tsa http://timestamp.comodoca.com myjarfile.jar myalias
我遇到了同样的问题。我认为今天 Comodo 的时间戳服务发生了一些变化。 http://timestamp.comodoca.com 的回复状态目前为 HTTP/1.1 302 临时移动 内容类型:text/html
这会导致 jarsigner 出现问题,因为它期望内容类型为 application/timestamp-reply
您应该通过 https://support.comodo.com/index.php?/Knowledgebase/Article/View/68/0/time-stamping-server
联系 Comodo 支持今天有效。好像他们在他们的时间戳服务器上改变了一些东西。