Hi I'm working in android application.I create a web service in java.Now i want to refer a webservice using HTTP. but i got 'Permission Denied' Error while the debugger reached the last line. The Code is,
HttpClient httpClient = new DefaultHttpClient(); HttpContext localContext = new BasicHttpContext(); HttpGet httpGet = new HttpGet("http://192.168.0.102:8282/SampleWebProj/services/Converter"); response = httpClient.execute(httpGet, localContext);
Plz Give me a solution..