Examples of EJBSessionBean


Examples of org.apache.tuscany.sca.host.ejb.EJBSessionBean

    /**
     * Verifies registration and invocation of a session bean
     */
    public void testStatelessSessionBean() throws Exception {
        server.addSessionBean("TestBean", new EJBSessionBean(TestImpl.class, TestRemote.class));

        Properties properties = new Properties(System.getProperties());
        //properties.setProperty(Context.INITIAL_CONTEXT_FACTORY, InitContextFactory.class.getName());
        properties.put(Context.INITIAL_CONTEXT_FACTORY, "org.apache.openejb.client.RemoteInitialContextFactory");
        properties.put(Context.PROVIDER_URL, "ejbd://localhost:2888");
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.