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
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
1answer
236 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
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
214 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
191 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
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
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
122 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
192 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
420 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
1answer
50 views
SAML 2.0 and EncryptedAssertion
I am new to this Claims and SAML concept. I am using WIF from ASP.NET and recieve the request below from my IDP. I sent a username/password via a http request and recieved this SAML response. What ...
0
votes
2answers
361 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
123 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
281 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
752 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
735 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 ...