OpenEJB « Development « JSP-Servlet Q&A





1. How to run OpenEJB Examples?    coderanch.com

I downloaded the stuff at http://openejb.apache.org/download.html and started the openejb standalone server. I then tried following the instructions at http://openejb.apache.org/3.0/simple-stateless-example.html I cannot get anything to run. I have maven 2.1 installed. I cannot find any instructions that say I have to define symbols like OPENEJB_HOME. I'm using cygwin on XP. Adding the openejb directory to the classpath did not seem to ...

2. Need Help regarding OpenEJB's error    coderanch.com

3. OpenEjb    coderanch.com

4. OpenEJB and Derby    coderanch.com

For testing I would like to use OpenEJB and Derby from Eclipse. However I cannot figure out how to configure the Datasource correctly. My test class: package entity.test; import java.sql.SQLException; import java.util.Properties; import javax.naming.Context; import javax.naming.InitialContext; import javax.persistence.EntityManager; import javax.persistence.EntityManagerFactory; import javax.persistence.EntityTransaction; import javax.persistence.Persistence; import org.junit.AfterClass; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; import entity.Address; import entity.Hotel; public class PersistenceTest { private ...

5. Help need with OpenEJB.    coderanch.com

Hi, I'm using EJB3 in my project which I want to run on Tomcat. The thing is that my project is not a stand EJB Project what eclipse provides but rather as a plane standard folder structure. What I want to achieve is to avoid a project build evertime to update the changes as what we have to do in weblogic. ...