Me da una excepción la cual me dice que el host que le pongo no existe, os dejo la excepción:
Pero la dirección si existe y nose porque es, os dejo el codigo que tengo puesto:
Código Java:
Ver original String dir
= "https://sescam.jccm.es/web1/sHome.do?main=/ciudadanos/citaPrevia/citaPreLogin.jsp";
HttpClient client = new DefaultHttpClient(httpParameters);
HttpPost post = new HttpPost(dir);
try{
Log.w("DEBUG", "1");
HttpResponse response = client.execute(post);
//HttpEntity entity = response.getEntity();
HeaderIterator it = response.headerIterator("Set-Cookie");
Log.w("DEBUG", "2");
while(it.hasNext()){
Log.w("DEBUG", it.next().toString());
}//FIN while
return cookie;
Log.w("DEBUG", e.toString());
return "";
}//FIN try-catch
}//FIN GetCookie
¿Alguien me puede ayudar?
Un saludo.