Tagged Questions

2
votes
1answer
39 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
2answers
189 views

Using Custom RoleProvider with Windows Identity Foundation - STS

I created STS that does the authentication part. It uses Custom Membership provider. After successful login I get redirected to my RP website. All works fine in terms of authentication. I have ...
2
votes
0answers
370 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
832 views

What are good ways to architect a custom “ClaimsAuthorizationManager” Windows Identity Foundation class?

I am working on the very first project at my office where we will be using "Windows Identity Foundation" with Claims-Based-Authorization. To this end, Microsoft .net provides the ...
1
vote
1answer
94 views

WSO2 Identity server with ASP .NET and WIF

We are looking into Microsoft ASP .NET(WS-Federation with windows identity foundation) interoperability with WSO2 identity server. I posted the issue on the forum 14 weeks ago ...
1
vote
1answer
195 views

WIF Claims-based Identity for Legacy Login

I have several legacy ASP.NET applications with custom membership providers. They also utilized external SAML based identity providers for which we have written custom clients. I am sold on the ...
1
vote
1answer
280 views

Splitting and recombining a large string in Cookies using ASP.NET

I have a large string that I want to save in a cookie, however I don't know what the best practices are for max string length per cookie, and max cookie count. What logic should I use to split the ...
1
vote
1answer
551 views

How to share authentication context between a SharePoint 2010 Site and ASP.NET applications

Is it possible to share the claims based authentication of a logged in Sharepoint 2010 user with a separate Asp.net application? The following article describes how it was done using Sharepoint 2007 ...
0
votes
0answers
12 views

WIF BootstrapToken expired

I'm developing web application using ASP.NET MVC + WCF secured by WIF. I'm using active STS. I have a problem with situation where BootstrapToken expired but SessionSecurityToken is still valid ...
0
votes
1answer
31 views

How to add default homepage to Relying Party when using Windows Identity Foundation?

Integrating WIF into regular ASP.NET 4.0 website. I have STS setup and when I navigate to my RP website, it redirects me to STS Login page. What I want to do is I have Home.aspx in my RP. It is a ...
0
votes
1answer
46 views

What is the best way to modify Claims at Relying Party when using Windows Identity Foundation

Currently I am doing this to modify my Roles Claims in the Relying Party's Global.asax. void Application_AuthenticateRequest(object sender, EventArgs e) { if (Request.IsAuthenticated) { string[] ...
0
votes
1answer
126 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
0answers
336 views

How can I automatically authenticate a SharePoint 2010 user?

In our organization we have a single sign-on solution which proxies web requests and handles authentication. When a user is authenticated, HTTP headers are injected into the request before it is ...
0
votes
1answer
343 views

ADFS reauthenticating an MVC request after a certain time period

I am working on a Claims aware ASP.NET MVC application. The authentication is done via Active Directory Federation Services. The ADFS server has a time out of 8 hours. At the application level I ...
0
votes
0answers
448 views

Windows Identity Foundation Security Token Service setting cookie timeouts

I want to configure the timeout duration that is applied to the cookies that are created on relying party after a user logs in through the passive Security Token Service (STS). I believe I read ...
0
votes
1answer
701 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
549 views

Sliding Expiration in ASP.NET web app using claims from STS

Two questions: 1) How/where do I set the lifetime of the session cookie in my web application when using an STS to get claims? From what I can tell, it seems I can only do this programmatically in ...
0
votes
1answer
268 views

Specifying Required / Optional Claim Types in the Relying Party for a Passive STS

I have an asp.net application (relying party) that uses a passive STS for authentication and retrieval of claim values. The relying party is using the FederatedAuthenticationModule (FAM) to enable a ...