I want to call a servlet with HttpClient. My code is working fine if I use localhost. But I want to use machine name i.e rach-pc in URL, how should I proceed? Is there any other way?
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://rach-pc:8080/MobileServer/Mservlet");
try {
HttpResponse response = httpclient.execute(httppost);
} catch (Exception e) {
}