Setting up HttpSession security under Websphere 5.1.1 and having troubles with the j_acegi_security_check....
It looks like in the "AbstractProcessingFilter" (base class for AuthenticationProcessingFilter)
if (filterProcessesUrl.equals(httpRequest.getServletPath())) {
if (logger.isDebugEnabled()) {
logger.debug("Request is to process authentication");
}
. . .
Is comparing the URL to process (i.e. j_acegi_security_check) with the HttpServletRequest servlet path....
However from my form post....
<form method="POST" action="">
the servlet path coming in is "/" and not "j_acegi_security_check" ... ??
Dont know if this is an acegi config issue, Websphere issue or otherwise...
Anyone else have something similar?
Thanks
Mark