Obtenga xml de una URL del servicio web php usando android

Quiero leer un xml de una url de servicio, escribí el código, mi url está bien, visto desde el navegador,

    public String getXML(){
    String line = null;
    try {
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpGet httpPost = new HttpGet("http://localhost/simplewebservice/index.php?user=1");

        HttpResponse httpResponse = httpClient.execute(httpPost);
        HttpEntity httpEntity = httpResponse.getEntity();
        line = EntityUtils.toString(httpEntity);
    } catch (Exception ex) {
        Log.d("Error reading xml", ex.toString());
    }
    return line;
}

Pero me da el siguiente errorjava.net.SocketException: Permission denied. ¿Alguien puede tener una mejor solución para esto?

Saludos cordiales

Pritom.

Respuestas a la pregunta(4)

Su respuesta a la pregunta