SSO From a .Net Web Application to Alfresco

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-18-2013 08:13 AM
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.
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.
Labels:
- Labels:
-
Archive
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-20-2013 02:00 PM
Hi,
we have indeed done something like this. The .NET platform does everything for you, here's a C# snippet:
When you enable UseDefaultCredentials, it will attempt SSO if NTLM or Kerberos are active.
Cheers,
Michael
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
