@Test
public void testGetChainedDissemination() throws Exception {
// test chained dissemination using local services
// The object contains an E datastream that is a dissemination of the local SAXON service.
// This datastream is input to another dissemination that uses the local FOP service.
HttpInputStream his = client.get("/get/demo:26/demo:19/getPDF", false);
String contentType = his.getContentType();
his.close();
assertEquals("application/pdf", contentType);
}