Android デバイスから MySQL にデータを保存しています。私のコードは Localhost を使用すると正常に動作しますが、ホストされたドメインを使用して試してみると. それは私とエラーを与えます。
エラーが返されました
ERROR
The requested URL could not be retrieved
While trying to process the request:
POST /insert.php HTTP/1.1
Transfer-Encoding: chunked
Content-Type: application/x-www-form-urlencoded
Host: mydomain.com
Connection: Keep-Alive
User-Agent: Apache-HttpClient/UNAVAILABLE (java 1.4)
The following error was encountered:
Invalid Request
AsyncTask 内の Java コード
.
.
.
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValuePair("user_id", userId));
HttpPost httppost = new HttpPost("http://mydomain.com/insert.php");
HttpClient httpclient = new DefaultHttpClient();
UrlEncodedFormEntity urlEncodeFormEntity = new UrlEncodedFormEntity(nameValuePairs);
urlEncodeFormEntity.setChunked(true);
httppost.setEntity(urlEncodeFormEntity);
HttpResponse response = httpclient.execute(httppost);
.
.
.
この問題を解決するのを手伝ってください。再びLocalhostを使用して動作します。
編集:
PHP コード: これは、デバイスが指定された URL に到達できるかどうかをテストするためのものです。
<?php
echo "Ive been reached.";
//Codes to connect DB and To Insert goes here
?>