Package org.apache.synapse.xml

Examples of org.apache.synapse.xml.XPathProcessorConfigurator


        SynapseMessage smc = new Axis2SynapseMessage(mc);
        env.injectMessage(smc);
        assertEquals("xpath", env.lookupProcessor("xpath").getName());
    }
    public void testXpathProcessorConfigurator() throws Exception {
        XPathProcessorConfigurator conf = new XPathProcessorConfigurator();
        Processor pro = conf.createProcessor(env,config.getFirstElement().getFirstElement());
        assertTrue(pro instanceof XPathProcessor);
        assertEquals("//ns:text",((XPathProcessor)pro).getXPathExpr());
    }
View Full Code Here

TOP

Related Classes of org.apache.synapse.xml.XPathProcessorConfigurator

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.