Jay Kumar SenSharma [
https://community.jboss.org/people/jaysensharma] commented on the
document
"JBoss AS7: Security : Custom Login Modules"
To view all comments on this document, visit:
https://community.jboss.org/docs/DOC-17357#comment-11145
--------------------------------------------------
In the Original article the PATH of the properties file (in th value) is not mentioned
which will cause the validation to fail:
<module-option name="usersProperties"
value="users.properties"/>
<module-option name="rolesProperties"
value="roles.properties"/>
It worked for me after adding the location of these propertieds files as following:
<module-option name="usersProperties"
value="${jboss.server.config.dir}/users.properties"/>
<module-option name="rolesProperties"
value="${jboss.server.config.dir}/roles.properties"/>
--------------------------------------------------