public void testGetCDs() throws Exception {
String endpointAddress =
"http://localhost:9080/bookstore/cds";
URL url = new URL(endpointAddress);
URLConnection connect = url.openConnection();
connect.addRequestProperty("Accept", "application/xml");
InputStream in = connect.getInputStream();
assertNotNull(in);
InputStream expected124 = getClass().getResourceAsStream("resources/expected_get_cds124.txt");
String result = getStringFromInputStream(in);