More details to be preceise:
What I have (slice of standalone.xml)
....
<http-authentication-factory name="
adminHttpAuthFactory" security-domain="adminSecDomain" http-server-mechanism-factory="global">
<mechanism-configuration>
<mechanism mechanism-name="BASIC">
<mechanism-realm realm-name="adminRealm"/>
</mechanism>
</mechanism-configuration>
</http-authentication-factory>
<http-authentication-factory name="
ldapHttpAuthFactory" security-domain="ldapSecDomain" http-server-mechanism-factory="global">
<mechanism-configuration>
<mechanism mechanism-name="BASIC">
<mechanism-realm realm-name="ldapRealm"/>
</mechanism>
</mechanism-configuration>
</http-authentication-factory>
....
I was hoping to just:
<management-interfaces>
<http-interface http-authentication-factory="
${factory}"....
but it's impossible.
So I'm wondering if it's possible to
parametrize security of management interface
per environment i.e
dev/test
Thanks