]
Tomaz Cerar closed WFLY-5440.
-----------------------------
Assignee: Tomaz Cerar (was: Jeff Mesnil)
Resolution: Rejected
No problem is completely related, you renamed default http-listener to something else but
didn't update the dependent configuration that needs http-listener for their
http-upgrade capabilities.
Also, error message in WildFly 10 is completely different that better explains what is
wrong.
Which is also another reason for rejecting this jira.
undertow http misconfiguration is not correctly reported
--------------------------------------------------------
Key: WFLY-5440
URL:
https://issues.jboss.org/browse/WFLY-5440
Project: WildFly
Issue Type: Feature Request
Components: EJB, JMS, JMX, Remoting, Web (Undertow)
Affects Versions: 9.0.1.Final
Environment: - wildfly 9.0.1.Final
- oracle jdk8_u45
Reporter: Ochieng Marembo
Assignee: Tomaz Cerar
Priority: Minor
With a misconfigured http-listener, wildfly boot-up reports unrelated problem:
{noformat}
<http-listener name="non-default-listener" socket-binding="http"
redirect-socket="https"/>
{noformat}
The following boot-up process does not reveal the underlying undertow issue of no
'default' http-listener:
{code:java}
11:06:43,307 ERROR [org.jboss.as.controller.management-operation] (Controller Boot
Thread) WFLYCTL0013: Operation ("add") failed - address:
([("subsystem" => "jsr77")]) - failure description:
{"WFLYCTL0288: One or more services were unable to start due to one or more indirect
dependencies not being available." => {
"Services that were unable to start:" => ["jboss.jsr77.ejb"],
"Services that may be the cause:" => [
"jboss.http-upgrade-registry.default",
"jboss.remoting.remotingConnectorInfoService.http-remoting-connector"
]
}}
11:06:43,315 ERROR [org.jboss.as.controller.management-operation] (Controller Boot
Thread) WFLYCTL0013: Operation ("add") failed - address: ([
("subsystem" => "messaging"),
("hornetq-server" => "default")
]) - failure description: {
"WFLYCTL0180: Services with missing/unavailable dependencies" =>
["jboss.messaging.default is missing [jboss.http-upgrade-registry.default]"],
"WFLYCTL0288: One or more services were unable to start due to one or more
indirect dependencies not being available." => {
"Services that were unable to start:" =>
["jboss.messaging.default.jms.manager"],
"Services that may be the cause:" => [
"jboss.http-upgrade-registry.default",
"jboss.remoting.remotingConnectorInfoService.http-remoting-connector"
]
}
}
11:06:43,317 ERROR [org.jboss.as.controller.management-operation] (Controller Boot
Thread) WFLYCTL0013: Operation ("add") failed - address:
([("subsystem" => "ejb3")]) - failure description:
{"WFLYCTL0288: One or more services were unable to start due to one or more indirect
dependencies not being available." => {
"Services that were unable to start:" => [
"jboss.ejb.default-local-ejb-receiver-service",
"jboss.ejb3.ejbClientContext.default",
"jboss.ejb3.localEjbReceiver.value"
],
"Services that may be the cause:" => [
"jboss.http-upgrade-registry.default",
"jboss.remoting.remotingConnectorInfoService.http-remoting-connector"
]
}}
11:06:43,318 ERROR [org.jboss.as.controller.management-operation] (Controller Boot
Thread) WFLYCTL0013: Operation ("add") failed - address: ([
("subsystem" => "ejb3"),
("service" => "remote")
]) - failure description: {"WFLYCTL0180: Services with missing/unavailable
dependencies" => ["jboss.ejb3.connector is missing
[jboss.remoting.remotingConnectorInfoService.http-remoting-connector]"]}
{code}