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

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


    @WebServiceRef(name = "services/ejb/Provider")
    private Service myService;

    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);
    }
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.