This is the StockRouteBuilder code:
public class StockRouteBuilder extends RouteBuilder{
@Override
public void configure() throws Exception {
from("cxf:bean:pleaseRoute")
.convertBodyTo(StockBean.class)
.wireTap("file://target/inbox/")
.to("xslt:file:D:/apache-servicemix-4.4.1-fuse-00-08/rider/Stock.xsl")
.to("file://outbox/");
}
}
--
View this message in context:
http://camel.465427.n5.nabble.com/From-wsdl-to-wsdl-tp4993447p4994194.html
Sent from the Camel - Users mailing list archive at Nabble.com.