Tagged Questions
3
votes
1answer
552 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 ...
2
votes
1answer
40 views
Implementing custom atributes for claims based security
I am trying to implement claims based security using System.IdentityModel. We are using Windows XP for all development work and therefore cannot use Windows Identity Foundation. What I am trying to do ...
2
votes
0answers
371 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 ...
2
votes
1answer
356 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) ...
1
vote
2answers
147 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
0answers
388 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
34 views
What is the best way to send custom ACS Claims across programs?
I've got two programs, a "login" program that uses the a foreign STS (Google, Facebook, etc.) to log the user in and returns the type of security access that user has. I then want to send that ...
0
votes
1answer
127 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
209 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
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
702 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
253 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 ...