MuleESB / Apache Camel Interview Questions
How does the XSLT component work for XML transformation in Camel?
The camel-xslt component applies an XSLT stylesheet to the Exchange body (an XML document) and replaces the body with the transformed output. It is a pure producer component used in to() calls. The stylesheet is loaded once at route startup and cached for performance.
// Apply XSLT from classpath:
from("jms:queue:xml-orders")
.to("xslt:classpath:transforms/order-to-invoice.xsl")
.to("file:/out/invoices");
// Pass Exchange headers as XSLT parameters:
from("direct:transform")
.setHeader("tenantId", constant("ACME"))
.to("xslt:classpath:transforms/order.xsl?output=bytes");
XSLT stylesheets are loaded from classpath, file system, or HTTP. Exchange headers are passed to the stylesheet as XSLT parameters: a header named tenantId maps to the XSLT parameter . The output option can be string, bytes, file, or DOM. For Saxon XSLT 2.0/3.0 support, use the xslt-saxon component variant with the saxon:classpath: URI scheme.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
