11

私はRestAssuredを試しており、次のステートメントを書きました-

String URL = "http://XXXXXXXX";
Response result = given().
            header("Authorization","Basic xxxx").
            contentType("application/json").
            when().
            get(url);
JsonPath jp = new JsonPath(result.asString());

最後のステートメントで、次の例外を受け取ります。

org.apache.http.ConnectionClosedException: Premature end of chunk coded message body: closing chunk expected

私の応答で返されるヘッダーは次のとおりです。

Content-Type → application/json; qs=1 Date → Tue, 10 Nov 2015 02:58:47 GMT Transfer-Encoding → chunked

この例外を解決するために誰かが私を案内し、何かが欠けているか、間違った実装があれば指摘してもらえますか?

4

2 に答える 2

-1

おそらく、接続構成をいじってみることができますか? 例えば:

given().config(RestAssured.config().connectionConfig(connectionConfig().closeIdleConnectionsAfterEachResponse())). ..
于 2015-11-10T16:16:37.643 に答える