Package org.apache.geronimo.jaxws.greeter_provider.ejb

Examples of org.apache.geronimo.jaxws.greeter_provider.ejb.EchoRemote.echo()


    private void assertEchoInvocation(String beanName) throws Exception {
        EchoLocal echoLocal = lookupEchoLocal(beanName);
        Assert.assertEquals(echoLocal.echo(ECHO_WORDS), ECHO_WORDS);
        EchoRemote echoRemote = null;
        echoRemote = lookupEchoRemote(beanName);
        Assert.assertEquals(echoRemote.echo(ECHO_WORDS), ECHO_WORDS);
    }

    private EchoLocal lookupEchoLocal(String beanName) throws Exception {
        return (EchoLocal) localContext.lookup(beanName + "Local");
    }
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.