Package org.milyn.routing.jms

Examples of org.milyn.routing.jms.JMSRouter


        // On every <a> fragment, apply a simple template and bind the templating result to
        // beanId "orderItem_xml" ...
        smooks.addVisitor(new FreeMarkerTemplateProcessor(new TemplatingConfiguration("${object.a}").setUsage(BindTo.beanId("orderItem_xml"))), "a");

        JMSRouter jmsRouter = new JMSRouter();
        jmsRouter.setDestinationName("objectAQueue");
        jmsRouter.setBeanId("orderItem_xml");
        jmsRouter.setCorrelationIdPattern("${object.a}");
        jmsRouter.setJndiProperties("/org/milyn/routing/jms/activemq/activemq.1.jndi.properties");
        smooks.addVisitor(jmsRouter, "a");
    }
View Full Code Here

TOP

Related Classes of org.milyn.routing.jms.JMSRouter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.