* sets a last modified date
*/
client.executeMethod(putMethod);
assertEquals(204, putMethod.getStatusCode());
} finally {
putMethod.releaseConnection();
}
GetMethod getMethod = new GetMethod(getBaseURI() + "/context/request/date");
getMethod.setRequestHeader("If-Unmodified-Since", formatter.format(d));
try {