acs

Deploy Active Directory and ADFS 2.0 in Azure Virtual Machine and integrate it with ACS

时间秒杀一切 提交于 2019-12-11 15:49:45
问题 Is it possible to use an Azure virtual machine as an Active Directory server with ADFS 2.0 and integrate it with ACS ? Regards , James Roeiter 回答1: Having AD server (with RMS also) in cloud is an ask which I have heard time to time from Azure users and it sure is a great addition to have it running in Windows Azure or any cloud. Various organization's IT is asking the same as well however As of now with current Windows Azure it is not possible. A few might suggest that using Windows Azure VM

Using UiWebView and Monotouch with Azure ACS

自闭症网瘾萝莉.ら 提交于 2019-12-11 02:59:39
问题 I'm trying to figure out how to use Azure ACS on the iPhone, via Monotouch. It looks like it should be possible to simply point a UiWebView at the right address, let the user pick their IP, ad then sign in. After that the cookie should contain the required info. Getting the NSHttpCookie and translating it to a System.Net.Cookie looks easy: How do I convert an NSHttpCookie to a System.Net.Cookie in MonoTouch? However, I can't figure out the first part. I've tried pointing the UIWebView at all

Is using SAML bearer tokens for authenticating users to backend services a bad idea?

我只是一个虾纸丫 提交于 2019-12-10 15:18:50
问题 Suppose I have a front-end application that wants to fetch some data from a back-end service. (I do.) The service will need to verify that the end-user is authenticated, that it is authorized to use the service and possibly filter the returned data based on the user's privileges. In my case, both the front-end app and the back-end service relies on Azure ACS for authentication. Ideally the front-end would like to act on the behalf of the authenticated user, which sounds like a good fit for

'Expiration time buffer' of SessionSecurityTokenHandler of WIF 4.5 in Azure web role

戏子无情 提交于 2019-12-08 07:33:56
问题 everyone. What does 'Expiration time buffer' mean? Let me explain this to you. In my Azure Cloud service project, there is only one Web Role. And I integrated the ACS namespace enabled with some identity provider. And the identity provider will issue an token. Anyhow, there will be a SessionSecurityToken instance. And my web role will handle its expiration. Here is the sample code, void SessionAuthenticationModule_SessionSecurityTokenReceived(object sender,

How do I configure WCF to use a custom Realm in URN format with Azure ACS?

ε祈祈猫儿з 提交于 2019-12-07 14:47:14
问题 How do I make my WCF client authenticate using the ACS to my internally hosted WCF service? The issue revolves around setting a custom Realm (which I can't figure out how to set.) My ACS is configured similar to the ACS Samples however the "Realm" is defined as shown below. Excerpt from Azure ACS Configuration page Client Side Code EndpointAddress serviceEndpointAddress = new EndpointAddress( new Uri( "http://localhost:7000/Service/Default.aspx"), EndpointIdentity.CreateDnsIdentity(

Azure ACS without the generated code and HttpHandlers?

不想你离开。 提交于 2019-12-06 15:24:44
问题 Azure's ACS service is pretty sweet, and I love all of the magic it can do, but I want a little less magic for my Web app (MVC). If you look at the code samples on CodePlex, it's easy enough to call the service and get a JSON list of login providers from an endpoint like this: https://.accesscontrol.windows.net/v2/metadata/IdentityProviders.js?protocol=wsfederation&realm=http%3a%2f%2flocalhost%3a7070%2f&version=1.0&callback=? From the resulting JSON, you can render some links to the providers

How do I configure WCF to use a custom Realm in URN format with Azure ACS?

柔情痞子 提交于 2019-12-05 22:31:29
How do I make my WCF client authenticate using the ACS to my internally hosted WCF service? The issue revolves around setting a custom Realm (which I can't figure out how to set.) My ACS is configured similar to the ACS Samples however the "Realm" is defined as shown below. Excerpt from Azure ACS Configuration page Client Side Code EndpointAddress serviceEndpointAddress = new EndpointAddress( new Uri( "http://localhost:7000/Service/Default.aspx"), EndpointIdentity.CreateDnsIdentity( GetServiceCertificateSubjectName() ), new AddressHeaderCollection() ); ChannelFactory<IStringService>

Azure WCF Service with Azure Active Directory Authentication

故事扮演 提交于 2019-12-05 02:36:37
问题 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 WCF REST/HTML-service on Azure Ans neither seem to be relevant. Here is what I have so far. An azure cloud service with various worker roles, and a WCF web role with REST and SOAP Endpoints An azure active directory account with a couple users ACS namespace. The WCF service will be used by a

Azure ACS without the generated code and HttpHandlers?

谁都会走 提交于 2019-12-04 21:10:22
Azure's ACS service is pretty sweet, and I love all of the magic it can do, but I want a little less magic for my Web app (MVC). If you look at the code samples on CodePlex, it's easy enough to call the service and get a JSON list of login providers from an endpoint like this: https://.accesscontrol.windows.net/v2/metadata/IdentityProviders.js?protocol=wsfederation&realm=http%3a%2f%2flocalhost%3a7070%2f&version=1.0&callback=? From the resulting JSON, you can render some links to the providers, and once you deal with those logins, they'll bounce you back through ACS, and ACS will do a post with

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

余生颓废 提交于 2019-12-03 20:45:10
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 database tables? It sounded like you could make unlimited rule groups and rules inside of them. Is that