[
https://issues.apache.org/jira/browse/CMIS-635?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15329267#comment-15329267
]
Florian Müller commented on CMIS-635:
-------------------------------------
That's already possible with a custom authentication provider.
Derived your own authentication provider from StandardAuthenticationProvider
and override the HttpAuthenticate method. Something like this should do it:
{code}
protected override void HttpAuthenticate(HttpWebRequest request)
{
request.Credentials = CredentialCache.DefaultCredentials;
}
{code}
> Kerberos authentication
> -----------------------
>
> Key: CMIS-635
> URL: https://issues.apache.org/jira/browse/CMIS-635
> Project: Chemistry
> Issue Type: Improvement
> Components: dotcmis
> Affects Versions: DotCMIS 0.5
> Reporter: Nicolas Raoul
>
> As far as I can tell, DotCMIS does not support Kerberos authentication right
> now.
> Kerberos authentication is a requirement in some enterprise environments.
> Apparently Kerberos authentication is implementable with the network library
> that DotCMIS uses (System.Net).
> DotCMIS already supports NTLM authentication:
> https://issues.apache.org/jira/browse/CMIS-531
> Apparently this is how to do it in a C# desktop program:
> http://stackoverflow.com/a/33891619/226958
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)