Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So, I am tying to migrate an .ear from JBoss 5 to JBoss 7 (7.1.1). It's in exploded form. It contains an exploded .jar, and the parsing of the jar is reported to fail.

    at org.jboss.as.server.deployment.DeploymentUnitPhaseService.start(DeploymentUnitPhaseService.java:119) [jboss-as-server-7.1.1.Final.jar:7.1.1.Final]
    at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1811) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]
    at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1746) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886) [classes.jar:1.6.0_35]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908) [classes.jar:1.6.0_35]
    at java.lang.Thread.run(Thread.java:680) [classes.jar:1.6.0_35]
Caused by: org.jboss.msc.service.ServiceNotFoundException: Service service jboss.ejb.default-resource-adapter-name-service not found
    at org.jboss.msc.service.ServiceContainerImpl.getRequiredService(ServiceContainerImpl.java:447) [jboss-msc-1.0.2.GA.jar:1.0.2.GA]
    at org.jboss.as.ejb3.deployment.processors.MessageDrivenComponentDescriptionFactory.getDefaultResourceAdapterName(MessageDrivenComponentDescriptionFactory.java:273)
    at org.jboss.as.ejb3.deployment.processors.MessageDrivenComponentDescriptionFactory.processMessageBeans(MessageDrivenComponentDescriptionFactory.java:153)
    at org.jboss.as.ejb3.deployment.processors.MessageDrivenComponentDescriptionFactory.processAnnotations(MessageDrivenComponentDescriptionFactory.java:81)

The problem seems to be that the "jboss.ejb.default-resource-adapter-name-service" is missing.

If there was some way I could find out what that is, I might be able to fix this myself. Googling and searching SO has not ben productive so far.

So does anybody know what it is? And perhaps even how to fix it?

(And more generally, how do you find out stuff like this about jboss7? Do we have to read the source? Or even run JBoss under a debugger?)

share|improve this question
Hang on, I found a clue, we seem to have a MessageDriven bean, and that is the underlying problem. We probably don't need it. I may be able to provide more soon. – Jonas N Oct 18 '12 at 14:19
I found some answer in some forum to the effect that adding this: <mdb> <resource-adapter-ref resource-adapter-name="hornetq-ra"/> <bean-instance-pool-ref pool-name="mdb-strict-max-pool"/> </mdb> would help. It's already present in standalone.xml, so that's probably not a solution. (But still no clue as to what the default-resource-adapter-name-service is...) – Jonas N Oct 19 '12 at 11:12

closed as too localized by casperOne Oct 19 '12 at 11:58

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

The @MessageDriven annotation can cause this error to appear; details unclear to me. Removing the @MessageDriven annotation made the error go away.

share|improve this answer
if you want to update questions, dont use Answers to add information.There is an edit button to your question, you can edit the post whenever you want – Mukul Goel Oct 19 '12 at 10:47
I know. The answer contains half of what I wanted: a fix, which was in this case to remove a @MessageDriven annotation. If someone provides an answer to what "jboss.ejb.default-resource-adapter-name-service" is about, I'll be glad to mark that as The Answer. I'll edit the answer to be clearer. – Jonas N Oct 19 '12 at 11:10

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