public class SaxonComponentTest extends SpringTestSupport {
private static transient Log log = LogFactory.getLog(SaxonComponentTest.class);
public void testXslt() throws Exception {
DefaultServiceMixClient client = new DefaultServiceMixClient(jbi);
InOut me = client.createInOutExchange();
me.setService(new QName("urn:test", "xslt"));
me.getInMessage().setContent(new StreamSource(getClass().getResourceAsStream("/books.xml")));
client.sendSync(me);
if (me.getStatus() == ExchangeStatus.ERROR) {
if (me.getError() != null) {