[jboss-user] [JCA/JBoss] - Re: RAR - NOTYETINSTALLED error in JBOSS 4.0.4

2006-08-03 Thread chiragrpatel
What's the exception that prevented it from installing? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3962971#3962971 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3962971 ___

[jboss-user] [EJB 3.0] - Re: MDB deployment problem

2006-08-02 Thread chiragrpatel
it seems that if you want to use annotations and ejb-jar.xml (e.g. if you want to define your MDB with annotations, but specify the destination in ejb-jar.xml), you must include the message-destination-type tag in ejb-jar.xml, otherwise you get the Unable to create activation spec

[jboss-user] [EJB 3.0] - Re: MDB deployment problem

2006-08-01 Thread chiragrpatel
slight problem with my previous post. It didn't quite work as well as I had hoped. It does prevent the exception from occuring, but then it stops picking up my entries from ejb-jar.xml and jboss.xml. If I change the ejb-name to match what I put in the annotation, i get the Unable to create

[jboss-user] [EJB 3.0] - Re: MDB deployment problem

2006-07-27 Thread chiragrpatel
I had this same problem. I fixed it by adding the name attribute to the @MessageDriven annotation e.g. @MessageDriven(name=testMDB, activationConfig = { @ActivationConfigProperty(propertyName = destinationType, propertyValue = javax.jms.Queue),