17/06/2015, 09:55
|
| | Fecha de Ingreso: marzo-2009
Mensajes: 291
Antigüedad: 15 años, 7 meses Puntos: 1 | |
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??? |