acs

How is Azure ACS authentication secured?

旧巷老猫 提交于 2020-02-13 05:41:47
问题 Thanks to Gaurav Mantri for answering my earlier question Azure ACS Set Up in C#. However can someone explains to me, how the following line is secured ? if (!ClaimsPrincipal.Current.Identity.IsAuthenticated) The client in the ACS schema is conveniently a man in the middle , he might fail loging into Facebook, for example and this gets relayed to ACS (I'm assuming this portion is secured), but now ACS is telling the client to go back to the relying party about the failure. How is that last

Validating a SWT Token REST WCF Service

99封情书 提交于 2020-02-03 08:06:35
问题 I'm currently working on a WPF client, which obtains a SWT token from Windows Azure AppFabric ACS. With this token I want to consume a RESTful WCF Service. I used this tutorial to obtain the SWT token and it works perfect. With the help of this MSDN tutorial I created the RESTful WCF service. The problem is that the token may have the wrong format, because the token validator can't validate it (Error in the IsHMACValid method of the token validator, swtWithSignatur.Length == 1). Example of a

Azure ACS AzureFile Dynamic Persistent Volume Claim

♀尐吖头ヾ 提交于 2020-01-06 06:05:34
问题 I am trying to Dynamically provision storage using a storageclass I've defined with type azure-file. I've tried setting both the parameters in the storageclass for storageAccount and skuName. Here is my example with storageAccount set. kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: name: azuretestfilestorage namespace: kube-system provisioner: kubernetes.io/azure-file parameters: storageAccount: <storage_account_name> The storageclass is created successfully however when I try to

Are any other claims available from Windows Live ID via the ACS 2.0 identity provider?

允我心安 提交于 2020-01-03 11:38:29
问题 I understand that currently the default Windows Live ID identity provider in ACS 2.0, only provides two claims the nameidentifier (a base64 unique id associated with the user and your application, but useless for describing someone) and the identityprovider claim which lets you know that your talking with LiveID. I was wondering is it possible to configure an alternative identity provider for Window Live ID that could provide Name and other Live ID profile information via additional claims.

Are any other claims available from Windows Live ID via the ACS 2.0 identity provider?

依然范特西╮ 提交于 2020-01-03 11:38:04
问题 I understand that currently the default Windows Live ID identity provider in ACS 2.0, only provides two claims the nameidentifier (a base64 unique id associated with the user and your application, but useless for describing someone) and the identityprovider claim which lets you know that your talking with LiveID. I was wondering is it possible to configure an alternative identity provider for Window Live ID that could provide Name and other Live ID profile information via additional claims.

Windows Azure Role Based authentication (ACS)

冷暖自知 提交于 2020-01-03 05:23:11
问题 I have a Asp.net mvc4 project running on Windows Azure Cloud already. But so far it hasn't any user management thing. any one can log in(I have a windows live single sign on). But now I need to do the simplest role based authentication. 1.I want to register user roles(administrator,user,content manager)/it can be done manually. 2.I need to authenticate users based on roles when they log in . Can any one give me a hint, or link to a clear tutorial or suggest me any idea? 回答1: The simplest is

Azure ACS and storing information for users on it vs local?

时间秒杀一切 提交于 2020-01-01 06:44:12
问题 I'm working with Azure ACS and incorporating it into an SSO strategy for my .NET 4.0 website. I see on the Rule Groups page that a bunch of different claims can be stored and passed back to the RP (e.g. country, streetaddress, phone, etc.). It looks like you can also return back any claim type you want to create. This got me thinking about many questions relating to storing information for users: Does it make sense to store user information (other than the nameidentifier) in ACS vs local

Passing URL parameters from Azure ACS to my custom Identity Provider?

我与影子孤独终老i 提交于 2019-12-31 07:05:13
问题 We're developing a custom identity Provider(STS) to authenticate our applications. In this project we're using the Azure Acesses Control Services 2.0 and our Identity provider is a wsfederation. So, when starting the project, the azure ACS has had a url parameter called wctx, this parameter served to pass anything, and the ACS keeping the parameter when de ACS redirect to Identity provider, however now the parameter's value is encrypted when the login page is open, so we can't read. I'd like

Passing URL parameters from Azure ACS to my custom Identity Provider?

假装没事ソ 提交于 2019-12-31 07:04:22
问题 We're developing a custom identity Provider(STS) to authenticate our applications. In this project we're using the Azure Acesses Control Services 2.0 and our Identity provider is a wsfederation. So, when starting the project, the azure ACS has had a url parameter called wctx, this parameter served to pass anything, and the ACS keeping the parameter when de ACS redirect to Identity provider, however now the parameter's value is encrypted when the login page is open, so we can't read. I'd like

Logout from access control service with custom STS

别说谁变了你拦得住时间么 提交于 2019-12-31 01:53:11
问题 I'm using Windows azure access control service with custom STS. I can login to my application through ACS, but I have trouble with logout function. I've tried this code in my application. WSFederationAuthenticationModule fam = FederatedAuthentication.WSFederationAuthenticationModule; try { FormsAuthentication.SignOut(); } finally { fam.SignOut(true); } Page.Response.Redirect("default.aspx"); But it seems that it logout the user from ACS but not from the custom STS. What should I do to logout