@Test
public void testGetBookSAMLTokenAsHeader() throws Exception {
String address = "https://localhost:" + PORT + "/samlheader/bookstore/books/123";
WebClient wc = createWebClient(address, new SamlHeaderOutInterceptor(), null, true);
try {
Book book = wc.get(Book.class);
assertEquals(123L, book.getId());
} catch (ServerWebApplicationException ex) {