HttpGet get = new HttpGet(url);
HttpResponse response = getOrDelete(get, getAuthAccess(), false);
assertEquals(SC_OK, response.getStatusLine().getStatusCode());
// xml from mimetype mapping
CheckCDHeader(response, "attachment", TestRESTAPI.DS5ID + ".xml");
get.releaseConnection();
// filename from id, id contains extension (no label present)
url =
getURI("/objects/demo:REST/datastreams/DS6.xml/content?download=true");
get = new HttpGet(url);