Merged V3.0 to HEAD

11355: NTLMLogoDetails and Type2NTLMMessage are now Serializable, as they may be stored in an HTTP session. JLAN-43.
   11386: Refactor of repository tier NTLM authentication filters.
   11387: Integration of NTLMv2 message support for NTLM authentication filters
   11400: Fixed NTLMv2 detection for Firefox, it does not send the 128Bit flag.
   11401: Second round of NTLM authentication filter refactoring for repo tier.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12425 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2008-12-17 05:47:38 +00:00
parent 16c2e77852
commit 9bce6404be
6 changed files with 1208 additions and 748 deletions

View File

@@ -71,9 +71,9 @@ public class LoginTicket extends DeclarativeWebScript
}
// construct model for ticket
Map<String, Object> model = new HashMap<String, Object>(7, 1.0f);
Map<String, Object> model = new HashMap<String, Object>(1, 1.0f);
model.put("ticket", ticket);
try
{
String ticketUser = ticketComponent.validateTicket(ticket);
@@ -86,7 +86,7 @@ public class LoginTicket extends DeclarativeWebScript
status.setMessage("Ticket not found");
}
}
catch(AuthenticationException e)
catch (AuthenticationException e)
{
status.setRedirect(true);
status.setCode(HttpServletResponse.SC_NOT_FOUND);

View File

@@ -81,7 +81,7 @@ public class LoginTicketDelete extends DeclarativeWebScript
}
// construct model for ticket
Map<String, Object> model = new HashMap<String, Object>(7, 1.0f);
Map<String, Object> model = new HashMap<String, Object>(1, 1.0f);
model.put("ticket", ticket);
try