I am using tomcat 7
from Java EE eclipse i also made a code for server part. In android i also made a project and ran it and using HttPGet of server part Url but my getRequest is not working.
My server is working in that Url
http://localhost:8080/dhoom/index.jsp
And in my android project i used like this:
String URL = "http://10.0.2.2:8080/dhoom/index.jsp";
HttpClient user = new DefaultHttpClient();
HttpGet getRequest = new HttpGet(URL);
getRequest
is not working need help thanks in advance.