I'm migrating a project we're developing on to the latest stable release of Wildfly
. The project has been started with version 10.0.0.Final
, latest version is 10.1.0.Final
: thus i didn't expect issues.
But I get the following error while deploying the JMS queues the project defines (they're all deployed via the @JMSDestinations
annotation within the EAR
):
16:06:55,674 ERROR [org.jboss.as.controller.management-operation] (Controller Boot Thread) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "togather-0.0.1-SNAPSHOT.ear")]) - failure description: {
"WFLYCTL0412: Required services that are not installed:" => ["jboss.ra.deployer.\"jmsra.rar\""],
"WFLYCTL0180: Services with missing/unavailable dependencies" => [
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]",
"jboss.connector.direct-connection-factory-activator.java:/jms/******* is missing [jboss.ra.deployer.\"jmsra.rar\"]"
]
I've tried with all the full profiles (standalon-full
, standalon-ha-full
) in both versions: with version 10.0.0.Final it works fine, in version 10.1.0.Final
I got the deploy issue.
What am I doing wrong and how can I fix it?