New Missing / Unsatisfied Dependencies Error in WildFly 9

I am transitioning from Jboss7 to WildFly 9.

When starting WildFly 9, the following error appears. I am starting the server from eclipse with the application deployed.

There were no problems in the same application starting with Jboss7

WFLYCTL0184: New missing/unsatisfied dependencies: service jboss.remoting.endpoint.subsystem.outbound-connection.remote-ejb-connection (missing) dependents: [service jboss.ejb3.dd-based-ejb-client-context."test.war".internal-remoting-profile] 10:18:43,087 ERROR [org.jboss.as] (Controller Boot Thread) WFLYSRV0026: WildFly Full 9.0.1.Final (WildFly Core 1.0.1.Final) started (with errors) in 30273ms - Started 338 of 513 services (4 services failed or missing dependencies, 220 services are lazy, passive or on-demand) WFLYCTL0184: New missing/unsatisfied dependencies: service jboss.ejb3.dd-based-ejb-client-context."test.war" (missing) dependents: [service jboss.deployment.unit."test.war".ejb3.client-context.registration-service, service jboss.deployment.unit."test.war".INSTALL] service jboss.ejb3.dd-based-ejb-client-context."test.war".internal-remoting-profile (missing) dependents: [service jboss.ejb3.dd-based-ejb-client-context."test.war"] service jboss.naming.context.java.app.test(missing) dependents: [service jboss.deployment.unit."test.war".INSTALL] service jboss.naming.context.java.module.test.test(missing) dependents: [service jboss.deployment.unit."test.war".INSTALL] 

I checked some similar questions here, but none of them seemed to answer. Can someone help me solve this problem.

I missed some configuration

+4
source share
1 answer

I missed the outgoing connection tag in standalone.xml. As soon as I added a tag with the necessary data, the error went out.

+2
source

All Articles