Tagged Questions
0
votes
1answer
60 views
active client - get token from resource partner adfs using idp token
I am trying to write console application with the following scenario:
client first requests a token from an identity provider, and then uses this token to request a new token from a Resource STS
Using ...
2
votes
2answers
131 views
Why is there a resource/operation required instead of type/value using claim based auth
Our old software architecture used role based validation. We now want to use claims based authorization. As a matter of fact, I think we always used something modelling claims, even if we used role ...
0
votes
0answers
92 views
Calling WCF Service using claims error : An error occurred while verifying security for message
To develop claim aware authentication service, we are having sts in place and no control on the code of sts service.
I had gone through many tutorials/videos but nothing worked for me.
as in one way ...
-1
votes
1answer
160 views
c2WTS (Claims to windows token service) in .net 4.5
I need to get a Windows token from from Claims. The solution is a Claims Aware WCF webservice that uses ADFS 2.0 and runs in IIS ASP.NET 4.0. (The kerberos token is needed towards impersonated ...
0
votes
1answer
220 views
How to intercept ADFS 2.0 authentication request
Based on my reading on does ADFS 2.0 support custom authentication store, the only authentication store ADFS supports is ActiveDirectory (I was originally thought that custom attribute store would ...
0
votes
0answers
165 views
Error in Claim based wcf service - The incoming policy could not be validated
I had developed Claim based WCF Service and the client application consuming wcf service.
but it throws an error while running client app - "The incoming policy could not be validated. For more ...
7
votes
2answers
1k views
Why Claim based authentication instead of role based authentication
I am new to claim based authentication. I have gone throught several aricles and could not able to figure out the exact use of claim based authentication. Here are some doubts I have about claim based ...
1
vote
1answer
397 views
Specifying the default WS Trust credentials in web.config
I have a custom STS implemented with WIF. My WS-Trust services are using these configurations:
<behavior name="WSTrustServiceBehaviour">
<serviceDebug ...
1
vote
1answer
310 views
Call a WCF service protected by ACS, which uses ADFS as IDP
Following this post I have created a WCF client which:
Uses ADFS to authenticate users against AD.
Provides a SAML2 ticket to the caller.
Uses the supplied SAML2 ticket to call the WCF Service.
...
0
votes
1answer
142 views
Add SAML assertions to WCF Client without using WIF
I have a WCF service which is hosted inside a WebApp which uses Claims Based Authentication to authenticate users with ACS and ADFS.
The client is running on Mono so I can't use WIF to make it "just ...
3
votes
1answer
653 views
Different Service behaviors per endpoint
The situation
We are implementing different sort of security on some WCF service.
ClientCertificate, UserName & Password and Anonymous.
We have 2 ServiceBehaviorConfigurations, one for ...
0
votes
0answers
126 views
Transferring context information with WIF in a ASP.NET & WCF scenario
I'm interested in using Windows Identity Foundation for a new software architecture, but it isn't clear how to transport necessary context information between the client and server. Before I start ...
1
vote
1answer
166 views
WIF ChannelActingAs access claims from WCF
I want to access custom claims added to the current principal in the UI layer from a WCF service.
I have a web application that add claims to CurrentPrincipal once the user has been authenticated by ...
1
vote
1answer
258 views
Is identity delegation via WS-Trust/ActAs supported in ACS?
I'm just getting started with claims-based security and have a question related to identity delegation. I've managed to set up a local dummy STS and a couple of WCF services that relies on it for ...
0
votes
1answer
1k views
Claim Based Authentication using WCF
I am trying to learn Claim Based Authentication. The business services (based on SOAP) will be using this service for authentication.
Can you please give a reference to a simplified implementation in ...