1. Dependency injection and ejb proxy forum.springsource.orgpublic class SampleBean extends AbstractStatelessSessionBean implements ISample { DaoManager dao; public void setDao(DaoManager dao) { this.dao = dao; } (...) } |
2. Durability of Remote EJB proxy forum.springsource.orgDurability of Remote EJB proxy I'm new to Spring, and trying to convert a Swing client that is currently using EJBs on a remote server. I have the basic EJB stuff ... |
3. EJBs, RuntimeExceptions, Proxies, etc. forum.springsource.orgEJBs, RuntimeExceptions, Proxies, etc. Hi, We have some client code which is calling some objects which we have decided to deploy into a container. So we impelemnted the EJB using LocalStatelessSessionProxyFactoryBean, ... |
4. Cannot create EJB proxy forum.springsource.orgCannot create EJB proxy In our WebSphere Application cluster environment, an EJB can be invoked successfully in one cluster member, but failed in another cluster member. The below is the error ... |
5. Problem with proxying EJB (2.x) forum.springsource.orgProblem with proxying EJB (2.x) Hallo everybody, I am having a hard time trying to make Spring (2.5.6) work with EJBs on JBoss (4.2.2). I am experiencing a problem with proxying ... |