Merged BRANCHES/DEV/BELARUS/HEAD-ENH-1107 to HEAD:

31984: ENH-1107 : Correct the case of "Basic" in Basic Auth, to fix connecting to alfreco sharepoint protocol via Office 2008 for Mac


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32059 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Nick Burch
2011-11-17 14:18:24 +00:00
parent f1a1bb5a82
commit 34d25aeb98

View File

@@ -43,7 +43,7 @@ public class BasicAuthenticationHandler extends AbstractAuthenticationHandler im
{
private final static String HEADER_AUTHORIZATION = "Authorization";
private final static String BASIC_START = "BASIC";
private final static String BASIC_START = "Basic";
/*
* (non-Javadoc)
@@ -152,6 +152,6 @@ public class BasicAuthenticationHandler extends AbstractAuthenticationHandler im
@Override
public String getWWWAuthenticate()
{
return "BASIC realm=\"Alfresco Server\"";
return "Basic realm=\"Alfresco Server\"";
}
}