Hi,
Right now, I'm trying to get container-based authentication to work
and I'm having a problem with the roles in UserAuth.scala. I know that
Vladimir is still on vacation but I thought someone else might be able
to help me.
The code is here:
val currentRoles = rolesToCheck.filter(hsr.isUserInRole(_))
debug("User from HTTP Request: %s has following
roles=%s".format(username, currentRoles))
if(currentRoles.size == 0) {
debug("No roles have been found")
S.error(S.?("base_user_err_unknown_creds"))
The size of currentRoles is always 0 and I'm trying to trace why.
How could I debug/trace all the values to rolesToCheck (line 290) ?
Thanks
D.