public void testGetBookXSLTHtml() throws Exception {
String endpointAddress =
"http://localhost:" + PORT + "/the/thebooks5/bookstore/books/xslt";
WebClient wc = WebClient.create(endpointAddress);
wc.accept("application/xhtml+xml").path(666).matrix("name2", 2).query("name", "Action - ");
XMLSource source = wc.get(XMLSource.class);
Map<String, String> namespaces = new HashMap<String, String>();
namespaces.put("xhtml", "http://www.w3.org/1999/xhtml");
Book2 b = source.getNode("xhtml:html/xhtml:body/xhtml:ul/xhtml:Book", namespaces, Book2.class);
assertEquals(666, b.getId());