[jboss-user] [EJB 3.0] - How to get EntityManager on the fly for custom DB?Hi,

2006-12-19 Thread artemgolubev
Hi, all! Our client wishes the next way of working for our application: On some user input (we have web application + EJB3), we must create new database from a template and use it in our EJB3 environment. I do not know how to implement it in JBoss :( Usually for single datasource we create -ds.

[jboss-user] [EJB 3.0] - Re: EJB 3.0 Simplified API

2006-09-28 Thread artemgolubev
The status of http://jira.jboss.com/jira/browse/EJBTHREE-212 is closed, but it seems to me that it does not work in JBoss 4.0.4 GA Is it possibe to upgrade my JBoss to resolve this issue? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974821#3974821 Reply to

[jboss-user] [EJB 3.0] - Re: EJB 3.0 Simplified API

2006-09-28 Thread artemgolubev
Is it the problem, described in http://jira.jboss.com/jira/browse/EJBTHREE-191?vote=vote ? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3974807#3974807 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3974807 ___

[jboss-user] [EJB 3.0] - EJB 3.0 Simplified API

2006-09-28 Thread artemgolubev
Hi, I trying to use remote interface for my session bean in my servlet: public class AddUserController extends HttpServlet { @EJB public UserDAO userDAO; ... remote interface is described this way: @Remote public interface UserDAO { ... but userDAO is null Can I use Simplified API with servlets