No problem: CWWJP0029E error code (with some googling) is enough to understand that server can not find (does not have access to) persistence.xml.
Yes, that's right. You can not "borrow" persistence.xml from other module. Same is true for EMFProviderCMT.
Moreover it is not enough have access to persistence.xml. You have to have access to actual JPA entity classes (JPADataSource should be able to create new entity instance).
Looks like you will have to make changes to structure of your project because of EJB class-loading standards (not because of SmartClient).
Regards,
Alius
Yes, that's right. You can not "borrow" persistence.xml from other module. Same is true for EMFProviderCMT.
Moreover it is not enough have access to persistence.xml. You have to have access to actual JPA entity classes (JPADataSource should be able to create new entity instance).
Looks like you will have to make changes to structure of your project because of EJB class-loading standards (not because of SmartClient).
Regards,
Alius
Comment