0

我必须从 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。所有一个都在“ ”
中抛出 NullPointerException 。抛出一个
TimeStampResponse response = new TimeStampResponse(resp);

TSA_URL2

java.io.IOException:收到 HTTP 错误:411 - 需要长度。

我不知道问题出在 tsa 服务器还是我的代码中。任何人都可以帮助我吗?

4

1 回答 1

1

我能看到的问题在于您的请求(NullPointer 来自一个空的响应,因为您没有得到响应)。具体来说,问题是您的 HTTP 请求标头后没有冒号。这使得服务器无法读取强制性的 Content-length 标头。来自RFC2616第 4.2 节(HTTP 文档):

HTTP 标头字段,包括 general-header(第 4.5 节)、request-header(第 5.3 节)、response-header(第 6.2 节)和 entity-header(第 7.1 节)字段,遵循与第 7.1 节中给出的相同的通用格式RFC 822 的第 3.1 节。每个标头字段由一个名称后跟一个冒号(“:”)和字段值组成

TL;博士:

改变:

        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));
于 2013-03-22T09:21:03.243 回答