Quiero hacer una conexión htttp Aquí está mi códigoError HTTP/1.0 405 Método no permitido
try
{
HttpClient client = new DefaultHttpClient();
HttpPost httpMethod = new HttpPost("http://www.google.co.in/");
String requestBody = "some text";
HttpMethod.setEntity(new StringEntity(requestBody));
HttpResponse response = client.execute(httpMethod);
textView.setText(response.getStatusLine().toString());
}
Pero im no puede y obtener el "HTTP/1.0 405 Método no permitido" error seré Gracias a su ayuda
Sí, usa la clase 'HttpGet' y usa el método' setParams'. – raidfive