Tagged Questions

4
votes
2answers
1k views

Windows Identity framework with windows XP

How can use the Windows Identity Foundation SDK with Windows XP ?
2
votes
1answer
217 views

Implementing claim based authentication in Dynamics CRM using existing WIF STS

Does anyone implement Dynamics CRM claims based authentication utilizing existing STS? White paper says: User authentication in Dynamics CRM 2011 is based on Windows Identity Foundation that forms ...
2
votes
1answer
209 views

Applying custom claims in claims based application

I would like to grant document level permission based on custom claims in claims based web site. A user may have hundreds of document or one. Is it a good idea to apply custom claims? What is the ...
2
votes
1answer
190 views

Restricting access to records. Is claim-based permissions a good idea

in .net Claim-based identity framework If i wanted to restrict users to do an operation (view or edit) on let's say an account, a particular account #123456.(i am talking about business entity, like ...
2
votes
1answer
811 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
2answers
134 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
109 views

Problem getting claims to WCF service with Silverlight client

I have a Silverlight client application which logs on to an STS and gets a collection of claims in return. I use the Silverlight IdentityModel which came with the Identity Training Kit. This works ...
1
vote
1answer
179 views

WIF WSTrustSerializationException - Claims dialect cannot be set to a custom value?

I have the following code trying to make an "Issue" request with WIF. When I run it I get the following exception. Isn't it possible to request a Security Token using Issue with a custom claim? ...
1
vote
2answers
403 views

Getting 403 response when trying to access file in SharePoint list via WebClient

I’m trying to access a file in a SharePoint list using System.Net.WebClient. The list has anonymous access disabled (when we turn it on, it works) and we’re using Claims-Based Authentication. I know ...
0
votes
0answers
340 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
2answers
343 views

Sharepoint 2010 Login by another Web Site

I have an urgent need to create a custom login page for a SP2010 site. Now, I know that this can be done by claims-based authentication and FBA but, after several days of work, I couldn't get it done, ...
0
votes
1answer
115 views

Windows Identity Foundation - Same Issuer For Different Realms

Is it possible for 2 websites with 2 different domains/realms to use the same issuer? If so, am I correct to assume that a trust would not need to be created between these 2 realms since they use the ...
0
votes
1answer
255 views

SecurityNegotiationException when trying to issue a security token request

I am getting trying to make an Issue request to my STS and I keep getting the following exception: System.ServiceModel.Security.SecurityNegotiationException' occurred in mscorlib.dll but was not ...
0
votes
1answer
714 views

Invoking a WCF service using claims based authentication

I have a WCF service deployed in a server machine. We are using claims based authentication to authenticate the WCF service caller. The WCF service is restricted by using IIS Authorization rules. How ...
0
votes
2answers
724 views

Using 'System.Identity.Model.Claims' for Authorization and Authentication

I want to add authentication and authorization to my application. I do not want to use Active Directory for this. Should I use System.IdentityModel.Claims to do this? Will using ...