This content has been marked as final.
Show 2 replies
-
1. Re: WildFly 13, org.jboss.as.remoting, All authentication is ANONYMOUS for org.jboss.as.remoting.RemotingHttpUpgradeService
mchoma Jul 2, 2018 1:18 AM (in response to mevans7)With legacy there is security-realm attribute of http-remoting-connector to secure. But yes you should move to Elytron
-
2. Re: WildFly 13, org.jboss.as.remoting, All authentication is ANONYMOUS for org.jboss.as.remoting.RemotingHttpUpgradeService
mevans7 Jul 2, 2018 1:11 PM (in response to mchoma)Your answer led me down the path to adding security-realm to:
<http-connector name="http-remoting-connector" connector-ref="https" security-realm="ApplicationRealm"/>
in the jboss:domain:remoting subsystem, then adding a user with add-user.sh, and thus eliminating the warning message. In the recent past, I attempted to configure two-way SSL/TLS but ran into some problems. With two-way SSL/TLS, I still get the above warning. Perhaps I'll eventually use both two-way SSL/TLS along with an identity.
Thank you.