My WebDynpro App has the following structur :
WebDynproApp.ear
contains
WebDynproApp.war
contains
WEB-INF
contains
web.xml
lib
lib conains
dbaccess.jar ( contains the Entitys )
facade.jar ( executes the jndi-lookup for getting an EntityManager-Proxy Instance )
....
Note :
I dont' wanna use EJB's for persisting Entity-State.
Instead I use "Simple Java Classes", that are packed in the facade.jar
The Question is :
Where is the proper location for the persistence.xml inside the WebDynproApp.war
Locke