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