I am trying to do a put statement with a partial representation of a xml file from a java client by using a http put statement and passing a String partialXml
I use the following code to set up a connection
URL url = new URL(subscriberUrl);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("PUT");
And then I addRequestProperty for the authorization
When it get to the check below
String status = connection.getHeaderField(0);
if(status != null && !status.contains("200"))
{
System.err.println("Line 87 Failed to GET " + url + ": " + status);
System.exit(1);
}
I get a HTTP/1.1 411 Invalid Request
Any clues why I might be getting this error msg?
getResponseCodeto have your response code, it's safer – Valentin Rocher Jan 28 '11 at 9:59