Re: Geronimo 2 EJB3 Remote Access Example

2008-01-24 Thread xypher
: There are some sample applications on our wiki. For a session bean sample, you might want to take a look at this: http://cwiki.apache.org/GMOxDOC20/very-simple-session-ejb-example.html. There are other samples there too if you're interested. Thanks, Viet On Jan 23, 2008 5:14 PM, xypher

Re: Geronimo 2 EJB3 Remote Access Example

2008-01-24 Thread xypher
Hi, thanks a lot, now it works. But not completely When I'm trying the following code: public class TestClient { public static void main(String[] args) { Context context; Properties properties = new Properties();

Re: Geronimo 2 EJB3 Remote Access Example

2008-01-24 Thread xypher
some security settings on it. Try adding this line to it properties.setProperty(openejb.authentication.realmName, geronimo-admin); --Viet On Jan 24, 2008 7:48 AM, xypher [EMAIL PROTECTED] wrote: Hi, thanks a lot, now it works. But not completely When I'm trying the following

Geronimo 2 EJB3 Remote Access Example

2008-01-23 Thread xypher
Hi, I'm relatively new to Geroimo 2 and EJB3. I googled a lot, but I found no simple example for my request. I'd like to develop an Session Bean and to access this bean from an remote client over JNDI lookup. Can anybody give my an simple example or tell my where I can find something like this.