tags:

views:

159

answers:

1
    HttpClient client = new DefaultHttpClient();
    String data = "valid SOAP REquest";     

HttpPost httpPost = new HttpPost("valid url"); Log.d("inside", "created http post"); try { ByteArrayInputStream baos = new ByteArrayInputStream(data.getBytes());

        Log.d("inside", "firing request...");
        HttpResponse httpResponse = client.execute(httpPost);
        Log.d("inside", "request sent" + httpResponse.getStatusLine().getStatusCode());

Always, I get the status code as 405. I tried request queue as well.. sneding the byte array as part of the request queue, still the same issue.

A: 

Who is hosting your server-side request ?
A 405 is typically because a srvice provider will not allow a POST.
Look here for what 405 is. and a couple of solutions.

Romain Hippeau
Issue was with the content type :(. It got resolved now. Thanks for all your help
Ram