We are not seeing our Message Driven Bean receive any messages when deployed in a war in JBoss 4.2.3. Are there any known limitations on using MDBs in WAR deployments?

link|improve this question

EJB 3.1 supports EJB deployment in .war files. The fact that yours doesn't receive messages could be because a number of reasons, e.g. wrong web.xml file configuration (take a look here stackoverflow.com/questions/5213174/…). Is your MDB getting deployed in JBoss, i.e. can you see that it is assigned a JNDI name in the deployment logs? – Gonzalo Garcia Lasurtegui Oct 8 '11 at 21:11
It looks like JBoss 4.2.3 uses EJB 3.0. Your linked question suggests that deployment in a war file is new to 3.1, so I'm guessing it is a limitation of our version. Thanks! (if you want to post as an answer, I'll accept it) – Adam Oct 10 '11 at 16:33
feedback

1 Answer

up vote 2 down vote accepted

As per my comment above, EJB war deployment is only allowed from EJB 3.1 onwards.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.