cancel
Showing results for 
Search instead for 
Did you mean: 

SSO From a .Net Web Application to Alfresco

k_rajesh
Champ in-the-making
Champ in-the-making
Has anyone tried Single Sign On from a .Net Web Application to Alfresco.

I have a web application developed using .Net 3.5 and I am customizing Alfresco Content Management, which will be provided as a link in my app. On clicking the link I want to login to Alfresco using SSO.

Is there a way to do this, please suggest.
1 REPLY 1

michaelböckling
Champ in-the-making
Champ in-the-making
Hi,

we have indeed done something like this. The .NET platform does everything for you, here's a C# snippet:

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
request.UseDefaultCredentials = True;

When you enable UseDefaultCredentials, it will attempt SSO if NTLM or Kerberos are active.

Cheers,
Michael