サーバーにデータを投稿するために、http クライアント用の Apache クライアント ライブラリを使用しています。
以下はコードです。ステータスラインの応答は得られますが、内容が得られません。しかし、wireshark では、サーバーがコンテンツ タイプ、場所などのコンテンツをほとんど返さずに応答していることがわかりました。私のコードでは、次の出力が得られます。
Status :: HTTP/1.1 201 Created Content null
コンテンツの読み取りに失敗した場所を見つけるのを手伝ってください。プロキシ関連の設定が必要ですか?
HttpClient client = new DefaultHttpClient();
String line = ""; String status = "";
HttpPost post = new HttpPost("http://127.0.0.1/msg");
try {
HttpEntity e = new StringEntity("POSTING TO SERVER FOR TESTING");
post.setEntity(e);
HttpResponse response = client.execute(post);
BufferedReader rd = new BufferedReader(new
InputStreamReader(response.getEntity().getContent()));
status = response.getStatusLine().toString() ;
while ((line = rd.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(" Status :: "+ status + " Content " + line);