The Windows Identity Foundation is a free Microsoft library that enables claims based authentication and use federated identity/single sign-on in their applications.
0
votes
1answer
33 views
Replace FormsAuthentication with SessionAuthenticationModule (SAM) to make Claims Aware identity
I have an existing MVC4 app (.NET 4.5) using FormsAuthentication that I'm looking to switch to using SessionAuthenticationModule so that I can get a Claims aware a identity for both an easy of ...
0
votes
3answers
47 views
Does Windows Identity Foundation (WIF) Require IIS? (Rather than Development Server)
I need to know if developing a Windows Identity Foundation (WIF) solution requires IIS installed. I would like to be able do develop a WIF solution using the built-in Visual Studio Development Server ...
0
votes
0answers
19 views
Problems with Microsoft Identity (WIF) Example „Invoking a WCF Service on the Backend via Delegated Access”
I have a prboem with a WIF/Identity delegation Sample that we urgently need:
Since days I try to bring ClaimsAwareWebSite- Delegation Demo Solution up and Running, but it does not work.
I have a ...
0
votes
1answer
19 views
ACS Token replay detection feature
Does ACS has token replay detection feature similar to ADFS?
If the replay detection is implemented at Relying Party, still the IdP issued tokens can be replayed (since ACS accepts it and issues a ...
1
vote
1answer
35 views
How can I add additional claims to a Security Token in WCF
I've got a WCF service that takes Security Tokens through the ws2007FederationHttpBinding bindings. This works fine and in my services I can use the following code to get information about the user ...
0
votes
1answer
28 views
SAML 2 Signature error in ADFS 2.0
In our SSO scenario, we are using ADFS 2.0 as IDP and Shibboleth as SP. It is an SP-initiated sign-on. After configuring, when I try to establish communication between Shibboleth and ADFS 2.0(throw ...
0
votes
1answer
23 views
Unique identifying a user after federated Authentication
I have just started experimenting with WIF for a new application I'm writing. So far I have managed to get the LocalSTS working and setup my web.config to enable federated authentication against the ...
-1
votes
2answers
22 views
How do you transfer credentials to an STS (Security Token Service) [closed]
My boss is thinking we need to create our own STS for single sign-on. After doing some research I found that we can buy an STS, build our own with WIF, and go the open source route. Then he asked ...
1
vote
1answer
99 views
ASP.Net MVC forged claim token still working
I have an asp.net MVC 4 project in .Net 4.5.
I have set up Claim based authentication to protect my site.
I have a very strange behavior after logging in. If I edit the FedAuth cookie and change a ...
0
votes
1answer
35 views
Is it possible to use WIF SessionAuthenticationModule cookies across sub-domains?
I'm currently authenticating across sub-domains using Forms Auth. So I have the following servers:
site1.domain.com
site2.domain.com
and they're able to share a Forms Auth cookie. Here is a link to ...
0
votes
1answer
37 views
How to change MVC 4 app from passive to active authentication
I have an MVC 4 app setup to redirect to a passive STS site. I don't fully understand all the voodoo that WIF is doing to populate the ClaimsPrincipal on the thread when it returns from the redirect.
...
0
votes
1answer
92 views
Azure WCF Service with Azure Active Directory Authentication
I know this question seems similar to other son here, but I have tried the answers posted Here: Securing WCF 4.5 service using Azure ACS 2.0
And Here: Federated authentication (single-sign-on) for a ...
0
votes
2answers
56 views
Claims in Thread.CurrentPrincipal are getting lost which are set in AfterReceiveRequest in WCF
I am using Microsoft.IdentityModel.dll for Set & Get the claims in WCF. I have implemented MessageInspectors also for setting up the claims. So, I am adding ClaimsIdentity for request headers like ...
-2
votes
0answers
71 views
Authentication in Sharepoint 2013 with an intermediary
Good day,
I am looking at the following situation:
I have a broad, multi-server system. I have what my company has titled a 'Global Direcectory' in which user information is stored. Included in this ...
0
votes
2answers
66 views
Delivering a JWT SecurityToken to a WCF client
I need to generate and issue a token to clients based on username/password authentication. I've tried several approaches to solving this problem, but all of them have run into issues.
My first plan ...
1
vote
0answers
47 views
Key not valid for use in specified state after IISRESET
I have created a Custom STS Login Application and logging in/out functionalities were working fine. But if i login as some user and do IISRESET and then reloaded the page the below error is spitted. ...
0
votes
3answers
108 views
How do I get two websites authenticating against Thinktecture's Identity Server?
After viewing the PluralSite videos on Identity and Access Control, and basically getting everything set up that I need to (I have a running local instance of Thinktecture Identity Server on my ...
1
vote
1answer
37 views
How to get signed in user identity in a website after signing in with another website using ACS
I have one website which is configured to use Azure ACS. When the user signs to this website, how will I get the user identity when he visits another one of my website so that the user will not need ...
0
votes
1answer
44 views
What is the SessionSecurityToken SecurityKeys?
I want to validate a SessionSecurityToken issued by a STS. By validate, I mean certify that the token is not crafted and verity that the token is issued from the STS.
Conceptually, I know that if the ...
2
votes
1answer
67 views
MessageSecurityException with ACS issued token and WIF
I'm using ACS/Service Identities as a temporary STS while I get things into place. Unfortunately, while I appear to be able to get a SAML 1.1 token fine from ACS, the second I try to pass it into my ...
0
votes
1answer
60 views
Custom UserNameSecurityTokenHandler.ValidateToken is not getting called. How do I get the token handler registered and called?
Based on the MSDN documentation I have created a custom UserNameSecurityTokenHandler and put in the CanValidateToken override and ValidateToken override. I thought I had configured the WCF web ...
0
votes
2answers
63 views
WIF SAML 2.0 CTP Identity Provider Initiated SSO
I am developing a single sign on ASP.NET application, and I am trying to decide whether to make use of the WIF SAML 2.0 CTP or instead use ADFS 2.0. I have read several places that the WIF SAML 2.0 ...
0
votes
0answers
25 views
.NET 4.5 SessionAuthenticationModule - Issue with “validFrom”
I'm using SWT in Windows Azure ACS and custom SwtHandler is used in Relying Party applicaiton to handle incoming SWT token. While it re-creates the SWT token at relying party, I get an error with ...
0
votes
1answer
59 views
How do I host an active STS in ASP.NET MVC 4?
I'm attempting to host an active STS endpoint in my ASP.NET MVC 4 site (which already successfully hosts a passive STS endpoint). For some reason, the WCF runtime does not seem to be "handling" calls ...
0
votes
0answers
18 views
How is the expiryTime supposed to be used with SessionSecurityTokenCache.AddOrUpdate()?
I'm writing a custom implementation of SessionSecurityTokenCache and I'm somewhat confused as to what the purpose of expiryTime is in the AddOrUpdate method.
As far as I can tell, the default ...
0
votes
0answers
49 views
JWT Handler for .NET 4.5 throws error: GetIssuerName with single parameter is not supported
I've just implemented this JSON Web Token Handler for .Net 4.5 library described here:
...
0
votes
0answers
45 views
Securing WebAPI webservice with Custom STS based on WIF
I have a Custom STS up and running perfectly, I need a webapi service to be authenticated using my STS. I am unable to figure out how to do it. I want to secure the webapi service and use the ...
0
votes
1answer
70 views
WIF STS Implementation Checking for Active ASP.NET Login/Session with ADSF Tie-In
I'm planning to implement an external-facing ASP.NET web application along with a Windows Communication Foundation (WCF) service providing an externally available API. I will provide security for the ...
0
votes
0answers
34 views
WIF .NET 4.5 breaks Windows Server AppFabric configuration tool - how to report and how to workaround?
After moving a WCF service to WIF 4.5 , a number of elements have been added to the web.config schema, such as "serviceCredentials useIdentityConfiguration="true""
Now I am unable to manage the ...
0
votes
1answer
44 views
How to get Local development STS running
I am in need of help gettting Local development STS running. I just started with MSDN tutorials and got stuck when trying to build WCF service using WIF. So far I did following:
Installed "Identity ...
0
votes
2answers
78 views
trying to implement SSO for dynamics 2011 w/ ADFS 2.0 claims- claims not being passed through
I'm trying to implement an SSO for microsoft dynamics 2011 as described in this (very poorly written) walkthrough.
I've configured my ASP.NET website as a relying party in ADFS manager, and followed ...
2
votes
1answer
135 views
How do I authenticate the WindowsIdentity instance?
I'm trying to use Windows Identity Foundation for authorization in my WPF client/server (WCF) application that may or may not be run in the same trust environment as the active directory that provides ...
1
vote
2answers
65 views
MachineKeySessionSecurityTokenHandler and the session token expiring between application restarts
In my MVC application, I am using forms authentication to authenticate the user and then System.IdentityModel.Services.SessionAuthenticationModule to persist the session.
While I'm not yet at the ...
0
votes
0answers
28 views
WIF 3.5 and 4.5 Side by Side
Is it possible to create an Application that is using both WIF 3.5 and WIF 4.5.
The scenario is that we have a Web Site, WCF Services, STS infrastructure built using the WIF 3.5. We would like to ...
0
votes
2answers
27 views
Windows Identify Foundation: 2 tokens based on different certificates being recognised by R.Ps
For technical reasons we have implemented two different STS websites in our application. These STS issue tokens which are based on different certificates.
We have a main application and a subset ...
0
votes
1answer
79 views
Hard time with SAML and Identity Provider (IdP)
I'm not sure how to state this question since I don't know exactly what the problem is.
There is a third party company that functions as the SP of a SSO structure.
They have little documentation on ...
0
votes
1answer
49 views
CRM 2011: SDK Install Error [closed]
I have this problem while trying to install the SDK for Visual Studio 2012.
I have tried installing Windows Identity Foundation, but I get a message saying "this upgrade is not necessary". It is ...
0
votes
2answers
29 views
Registering a SecurityTokenReceived Event Handler
Recently I have started using claim-based authentication on an existing web application. Everything works well, but to better handle expiration of the SessionSecurity tokens, I want to employ sliding ...
0
votes
0answers
21 views
Single Signon with Active Directory Users
I am able to implement SSO between 3 of my Website running on different Domains using Windows Identity Framework, Now i have requirement that if any User (Part of Active Directory) Come to site we ...
1
vote
2answers
75 views
WIF IDP and SimpleSamlPHP as SP
I have a custom STS made in WIF that works as an IDP and now I need to configure SSO to a Service Provider made in SimpleSamlPHP. (The SP only supports Post Binding and Web Browser SSO Profile.)
Any, ...
0
votes
1answer
29 views
Share Security Token with Windows Service
I am trying to secure a download url in iis (and possibly apache/tomcat). The caller of the url is a Windows Service. That service/owner has no credentials of its own and must get them from another ...
1
vote
2answers
94 views
Azure ACS configuration for Local and Production
What would be the best way to configure Azure ACS so that when I run locally in the development fabric I can still authenticate?
I just want to configure once and be able to develop locally and ...
0
votes
1answer
139 views
Azure Active Directory and WCF [closed]
How can I secure a WCF service using Azure Active Directory:
My Status:
- My WCF service that contains the business logic is hosted on Azure WebRole.
I want your help to do the following:
...
0
votes
2answers
68 views
MVC Redirect on user having specific claim
I Have Claims Based Identity, Authentication and Authorization.
In my ClaimsAuthenticationManager I transform User Federation Token Claims and add my application specific Claims to the ClaimsIdentity ...
0
votes
1answer
122 views
wsse Security Header with SAML
I need to consume the web service which is exposed by my service provider. I got the WSDL file from them. In SOAP request header I have to add the wsse:Security header with SAML assertion.
Please ...
0
votes
0answers
43 views
What is an appropriate strategy for refreshing claims in a passive scenario?
I have a .NET 4.5 claims-aware application hosted in Windows Azure. There is a web role that hosts the MVC site and a worker role that runs jobs in the background. Users can choose to remain ...
0
votes
1answer
113 views
Unable to install Windows Identity Foundation on windows 7
I have been trying to install Windows Identity Foundation for last 4 hours on Windows 7 and everything I tried did not result in successful installation. I tried searching in Google and nothing helped ...
0
votes
1answer
38 views
Accessing user name in IDispatchMessageInspector
I've implemented custom logging logic for WCF service by using IDispatchMessageInspector.
I'm logging entire SOAP request/response in the database by utilizing both AfterReceiveRequest and ...
0
votes
2answers
231 views
Create Custom STS service in VS2012 with .net 4.5
Since I'm new to WIF.
I want to create a custom STS on WIF, but these document only for .net 3.5:
http://msdn.microsoft.com/en-us/library/ee748498.aspx
and I can't find these template in vs 2012.
So ...
1
vote
1answer
102 views
Using SAML2 Tokens with WCF channelfactory and Weblogic services
Help! :) I'm having no end of problems trying to get the following working(apologies in advance if I'm not using the exact correct terminology) :)
I need to get a .NET web application (client) ...


