Thanks for your reply.
I make a MyEjb.jar
A simple Entity bean and persistence.xml file are within jar.
The content in persistence.xml is below
<persistence>
<persistence-unit name="MyEJB3">
<jta-data-source>
java:/ejb3ProjectDS</jta-data-source>
<properties>
<property name="hibernate.hbm2ddl.auto"
value="create-drop"/>
</properties>
</persistence-unit>
</persistence>
There are no message in
JBoss console.
If you do not mind.
Could you give me simple entity bean deplyment example.
What i really want to know is simple packaging structure for entity bean in JBoss.
cheers.