Examples of JBIBindingConfiguration


Examples of org.apache.cxf.binding.jbi.JBIBindingConfiguration

    @Test
    public void testConfiguration() {
        ClassPathXmlApplicationContext context =
            new ClassPathXmlApplicationContext(
                 new String[] {"/org/apache/cxf/binding/jbi/spring/binding.xml"});
        JBIBindingConfiguration bindingConfiguration =
            (JBIBindingConfiguration) context.getBean("myJBIBinding");
        assertNotNull("The configuration should not be null", bindingConfiguration);
        assertEquals("The mtom property should be true", bindingConfiguration.isMtomEnabled(), true);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.