public void statuslist() throws Exception {
WebClient wc = WebClient.create( "http://localhost:8080/forsendelse/service/rest/forsendelsesservice/statuslist?ids=000000001689.pdf,000000001690.pdf" );
wc.type( "text/xml" );
XMLSource source = wc.get( XMLSource.class );
source.setBuffering();
ForsendelseStatusRest b1 = source.getNode( "/books/book[position() = 1]", ForsendelseStatusRest.class );
assertNotNull( b1 );
ForsendelseStatusRest b2 = source.getNode( "/books/book[position() = 2]", ForsendelseStatusRest.class );
assertNotNull( b2 );
}