]
Tomasz Adamski closed WFLY-8619.
--------------------------------
Resolution: Duplicate Issue
Incorrect IIOP security config validation
-----------------------------------------
Key: WFLY-8619
URL:
https://issues.jboss.org/browse/WFLY-8619
Project: WildFly
Issue Type: Bug
Components: IIOP
Affects Versions: 11.0.0.Alpha1
Reporter: Tomasz Adamski
Assignee: Tomasz Adamski
Priority: Blocker
In org.wildfly.iiop.openjdk.ConfigValidator.java:
{code}
if (supportSSL && !sslConfigured) {
throw IIOPLogger.ROOT_LOGGER.noSecurityDomainOrSSLContextsSpecified();
}
else if (serverRequiresSsl || clientRequiresSsl) {
// if either the server or the client requires SSL, then SSL support must have been
enabled.
throw IIOPLogger.ROOT_LOGGER.sslNotConfigured();
}
{code}
Shouldn't go to second if if supporSSL is configured.