Search Results

2
votes

Jboss 4.2 swallows the stacktrace on causes of EJB Exceptions, how can that be prevented?

It's an implementation decision, they don't set the original cause as the cause of the ejbException. You can access to that looking the method getCausedByException(). You have a JIRA[1] about that …
1
vote

EJB into SEAM Component (Different projects and same JBoss)

Your ComponentX class is not an EJB, so you cannot use the @EJB annotation to inject them. You have a few options. Convert your ComponentX to EJB adding @Stateless or @Statefull and an interface @L …
0
votes

creating a queue in JBoss MQ

You also have to add the destinationManager to the queue declaration. Try this: <mbean code="org.jboss.mq.server.jmx.Queue" name="jboss.mq.destination:service=Queue,name=MyQue …