HTTP POST を使用して Apache Tomcat サーバーに接続しようとしていますが、サーバーの LOG ファイルにGET /login/validate_doc.jsp HTTP/1.1" 200 685が表示されているのを確認すると、
これは、HttpPost を使用して送信しているときに GET 要求を取得していて、フォーム パラメータがサーバーによって受信されていないことを意味します。
私のコードは以下です:
HttpPost post_http=null;
post_http=new HttpPost("http://somexx.ac.in/medONmob/validate_doc.jsp");
try
{
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("username",username));
nameValuePairs.add(new BasicNameValuePair("password",password));
post_http.setEntity(new UrlEncodedFormEntity(nameValuePairs));
どこが間違っていますか...??? 助けてください