Android : HTTP Post Issue
- by Ram
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.