我必须从tsa服务器获取时间戳。我正在发送一个文件(转换为byte[]
)。但是当我尝试收到回复时,它会向我发送NullPointerException
。
这是我的代码:
public static void timeStampServer () throws IOException{
//String TSA_URL1 = "http://tsa.starfieldtech.com/";
String TSA_URL2 = "http://ca.signfiles.com/TSAServer.aspx";
//String TSA_URL3 = "http://timestamping.edelweb.fr/service/tsp";
try {
byte[] digest = leerByteFichero("C:\\deskSign.txt");
TimeStampRequestGenerator reqgen = new TimeStampRequestGenerator();
TimeStampRequest req = reqgen.generate(TSPAlgorithms.SHA1, digest);
byte request[] = req.getEncoded();
URL url = new URL(TSA_URL2);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(true);
con.setDoInput(true);
con.setRequestMethod("POST");
con.setRequestProperty("Content-type", "application/timestamp-query");
con.setRequestProperty("Content-length", String.valueOf(request.length));
if (con.getResponseCode() != HttpURLConnection.HTTP_OK) {
throw new IOException("Received HTTP error: " + con.getResponseCode() + " - " + con.getResponseMessage());
}
InputStream in = con.getInputStream();
TimeStampResp resp = TimeStampResp.getInstance(new ASN1InputStream(in).readObject());
TimeStampResponse response = new TimeStampResponse(resp);
response.validate(req);
System.out.println(response.getTimeStampToken().getTimeStampInfo().getGenTime());
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
}
}
我尝试使用3 tsa服务器,但其中任何一个都返回了有效的TSA。
所有人都在“TimeStampResponse response = new TimeStampResponse(resp);
”中抛出NullPointerException。
TSA_URL2
抛出一个
java.io.IOException:收到HTTP错误:411 - 需要长度。
我不知道问题是在tsa服务器还是在我的代码中。有人可以帮帮我吗?
答案 0 :(得分:1)
我能看到的问题在于你的请求(NullPointer来自一个空的resp,因为你没有得到回应)。具体来说,问题是您的HTTP请求标头后没有冒号。这使服务器无法读取必需的Content-length标头。来自RFC2616第4.2节(HTTP文档):
HTTP标头字段,包括通用标头(第4.5节), request-header(第5.3节),response-header(第6.2节)和 entity-header(第7.1节)字段,遵循相同的通用格式 RFC 822的3.1节中给出的。每个头字段包含 名称后跟冒号(“:”)和字段值。
TL; DR:
变化:
con.setRequestProperty("Content-type", "application/timestamp-query");
con.setRequestProperty("Content-length", String.valueOf(request.length));
为:
con.setRequestProperty("Content-type:", "application/timestamp-query");
con.setRequestProperty("Content-length:", String.valueOf(request.length));