Merged V4.0-BUG-FIX to HEAD

33823: Added 'dump on shutdown' debug option to the file state cache.
   Added access token tracking to the clustered file state cache, to track access token objects that are finalized without being released. To help with debugging ALF-12488.
   33824: Switched the default 'dump on shutdown' setting to off.
   33826: Correct the path to the junit sources in the classpath
   33828: Merged V3.4-BUG-FIX to V4.0-BUG-FIX
      33827: ALF-10785: Locale not forwarded in webscripts when using Kerberos SSO
         - We finally got to the bottom of it
         - Make sure the Accept-Language header is forwarded during Kerberos handshaking and session establishment


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@33829 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2012-02-10 16:10:19 +00:00
parent a111e5f774
commit 80717e04fa
2 changed files with 2 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ public class KerberosAuthenticationFilter extends BaseKerberosAuthenticationFilt
protected void onValidate(ServletContext sc, HttpServletRequest req, HttpServletResponse res)
{
// Set the locale using the session
AuthenticationHelper.setupThread(sc, req, res, true);
AuthenticationHelper.setupThread(sc, req, res, !req.getServletPath().equals("/wcs") && !req.getServletPath().equals("/wcservice"));
}
/* (non-Javadoc)

View File

@@ -101,7 +101,7 @@ public class NTLMAuthenticationFilter extends BaseNTLMAuthenticationFilter
protected void onValidate(ServletContext sc, HttpServletRequest req, HttpServletResponse res)
{
// Set the locale using the session
AuthenticationHelper.setupThread(sc, req, res, true);
AuthenticationHelper.setupThread(sc, req, res, !req.getServletPath().equals("/wcs") && !req.getServletPath().equals("/wcservice"));
}
/* (non-Javadoc)