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 を返します。
いずれも
" TimeStampResponse response = new TimeStampResponse(resp);" で NullPointerException をスローします。

TSA_URL2投げる

java.io.IOException: HTTP エラーを受信しました: 411 - 長さが必要です。

問題が tsa サーバーにあるのか、コードにあるのかわかりません。誰でも私を助けることができますか?

4

1 に答える 1

1

私が見ることができる問題は、あなたのリクエストにあります(応答がないため、NullPointerは空の応答から来ています)。具体的には、HTTP 要求ヘッダーの後にコロンがないことが問題です。これにより、サーバーは必須の Content-length ヘッダーを読み取ることができなくなります。RFC2616セクション 4.2 (HTTP ドキュメント)から:

general-header (セクション 4.5)、request-header (セクション 5.3)、response-header (セクション 6.2)、および entity-header (セクション 7.1) フィールドを含む HTTP ヘッダー フィールドは、セクションで指定されているものと同じ一般的な形式に従います。 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));
于 2013-03-22T09:21:03.243 に答える