Tema: web service
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/06/2015, 09:55
gylle05
 
Fecha de Ingreso: marzo-2009
Mensajes: 291
Antigüedad: 15 años, 7 meses
Puntos: 1
Pregunta web service

Buenas amigos estoy armando un app en android ecplise y quiero acceder a mi web service programada en php, pero me da un error en la ejecución.

HttpClient httpClient= new DefaultHttpClient();
HttpPost httpPost = new HttpPost("http://url/WebServcice.php");
TextView textView= (TextView) findViewById(R.id.textMesage);
try
{
HttpResponse response= httpClient.execute(httpPost);
}
Sera por que el emulador no puede concetarse?? o estoy haciendo algo mal???