I am working in an android application. I am creating a web service in Java. Now I want to transfer the web service using HTTP. But I got a Permission Denied error while the debugger reached the last line. The code:
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 ..
android
Siju
source share