Tagged Questions
3
votes
1answer
500 views
How to check in sharepoint if user is authenticated by Claims?
I've created few webparts in Sharepoint 2010. In current version users are authenticated by Ad login, but now custome want to customize it and allow authentication by AD login or by email name - using ...
1
vote
2answers
133 views
Windows Azure: web application on several instances, authentication?
An existing web application I want to migrate to the Windows Azure Cloud authenticates users the following way somewhere in the (post)authenticaterequest event:
IPrincipal current = ...
1
vote
1answer
336 views
What is the best way to retrieve a WindowsIdentity from a ClaimsIdentity
So far I found out two solutions to get a WindowsIdentity object from a ClaimsIdentity.
First I extract the user principal name (upn).
ClaimsIdentity ci = (ClaimsIdentity) ...
0
votes
1answer
103 views
Windwos NT token with ADFS to get Remote user Roles
i created a ADFS windows NT enabled tokenapp
Configured IIS 7 to enabled windows NT token in authentication and reply url as https://adfsweb.treyresearch.net/tokenapp
i added this app into the ...
0
votes
2answers
191 views
wa=wsignupcleanup1.0 does not sign out user on Relying Party
Working on project where we use Windows Identity Foundation.
While testing the sign out solution i found that the following call
http://rp/?wa=wsignoutcleanup1.0 does not delete the FedAuth cookie on ...
0
votes
0answers
377 views
WIF and WCF - Accessing Thread.CurrentPrincipal inside service method with AspNetCompatibilityMode turned off
I have a web application with a silverlight app on one of the pages. The website is secured using WIF. I am attempting to make a WCF call from silverlight to a service hosted in the same appdomain as ...
0
votes
0answers
338 views
Where is the best place to have custom Principal/Identity set?
I have been working on a web site (using ASP.NET C#) that uses both forms based and claims based authentication. I wanted to override the ClaimsIdentity class so I could implement a custom ...
0
votes
1answer
1k views
can i use ADFS 2.0 to authenticate certain users against SQL Server
I have been using ADFS to authenticate users against AD fine, using a claims aware template in VS. Some of our users will not be in Active Directory, so i would like to know if its possible to ...
0
votes
1answer
686 views
Download a file from a Claims auth based SharePoint 2010 site programmatically
I have a console application to download a file from a SharePoint site. The sharepoint site uses claims based authentication.
This code throws a 403 Forbidden exception. The specified Network ...
0
votes
1answer
250 views
Claims + Tokens library for c#
Is there a library for c# that allows me to build an encrypted token containing claims, and then gives me an API to check if a token contains the claims I'm interested in?
Similar to how ".NET Access ...