int result = httpclient.executeMethod(put);
assertEquals(200, result);
} finally {
// Release current connection to the connection pool once you are
// done
put.releaseConnection();
}
// Verify result
endpointAddress = "http://localhost:" + PORT + "/bookstore/books/123";
URL url = new URL(endpointAddress);