mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
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:
@@ -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)
|
||||
|
@@ -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)
|
||||
|
Reference in New Issue
Block a user