Package org.apache.geronimo.axis.builder.interop

Examples of org.apache.geronimo.axis.builder.interop.InteropLab


        reference.setClassLoader(contextCl);
        Object proxy = reference.getContent();
        assertNotNull(proxy);
        assertTrue(proxy instanceof InteropLab);

        InteropLab interopLab = ((InteropLab) proxy);
        InteropTestPortType interopTestPort = interopLab.getinteropTestPort();
        assertNotNull(interopTestPort);
        testInteropPort(interopTestPort);

        //test more dynamically
        Remote sei = interopLab.getPort(InteropTestPortType.class);
        assertNotNull(sei);
        assertTrue(sei instanceof InteropTestPortType);
        testInteropPort((InteropTestPortType) sei);

        Remote sei2 = interopLab.getPort(new QName("http://tempuri.org/4s4c/1/3/wsdl/def/interopLab", "interopTestPort"), null);
        assertNotNull(sei2);
        assertTrue(sei2 instanceof InteropTestPortType);
        testInteropPort((InteropTestPortType) sei2);
    }
View Full Code Here


        reference.setClassLoader(contextCl);
        Object proxy = reference.getContent();
        assertNotNull(proxy);
        assertTrue(proxy instanceof InteropLab);

        InteropLab interopLab = ((InteropLab) proxy);
        InteropTestPortType interopTestPort = interopLab.getinteropTestPort();
        assertNotNull(interopTestPort);
        testInteropPort(interopTestPort);

        //test more dynamically
        Remote sei = interopLab.getPort(InteropTestPortType.class);
        assertNotNull(sei);
        assertTrue(sei instanceof InteropTestPortType);
        testInteropPort((InteropTestPortType) sei);

        Remote sei2 = interopLab.getPort(new QName("http://tempuri.org/4s4c/1/3/wsdl/def/interopLab", "interopTestPort"), null);
        assertNotNull(sei2);
        assertTrue(sei2 instanceof InteropTestPortType);
        testInteropPort((InteropTestPortType) sei2);
    }
View Full Code Here

TOP

Related Classes of org.apache.geronimo.axis.builder.interop.InteropLab

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.