[jboss-user] [JBoss Seam] - Viewing deployed EJBs

2007-06-14 Thread jlowcock
I am having difficulty understanding why the variables in my seam pages are not being resolved and I was wondering if there was a way of viewing the list of EJBs known to seam via the @Name annotation. View the original post :

[jboss-user] [EJB 3.0] - Re: EJB3 MDB One Implementation Multiple Deployments

2007-04-15 Thread jlowcock
So obvious when you take a step back from the problem. The deployment via the incomplete annotations is the problem. Thanks for the pointer. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4037352#4037352 Reply to the post :

[jboss-user] [EJB 3.0] - EJB3 MDB One Implementation Multiple Deployments

2007-04-13 Thread jlowcock
I have a use case where the same MessageDriven bean needs to be deployed twice to listen to more than one Topic. The code for the bean is: @MessageDriven ( activationConfig= {

[jboss-user] [EJB 3.0] - Re: EJB 3 Entity persist and merge bug?

2006-08-10 Thread jlowcock
Thank you for the reply this is obviously one of my duh moments. I of course had forgotten the pass-by-value semantics and have not passed the server side object back to the client. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3964250#3964250 Reply to the

[jboss-user] [EJB 3.0] - EJB 3 Entity persist and merge bug?

2006-08-09 Thread jlowcock
I have a simple entity that uses a generated primary key. If I simply persist the entity every thing works in terms of the database however the generated primary key value is not set in the class instance I have persisted. If I persist and then merge the result the generated value is then set