Questions tagged [azure-acs]

Service offered by Windows Azure that provides authentication and authorization for web applications and services

Windows Azure Active Directory Access Control -- also known as Access Control Service (ACS) 2.0 -- is a service that handles authentication and authorization for web application and services, either directly or through integration with widely used authentication systems such as Facebook, Google and Windows Live. Upon successful authentication, Windows Azure Active Directory Access Control generates a cryptographically signed token, containing a set of claims that tell what the user can do in the application.

Windows Azure Active Directory Access Control support several standards widely used in authentication and authorization of web applications, such as OAuth, SAML and WS-Trust.

Windows Azure Active Directory Access Control can be managed through a web portal or OData API, defining the applications that need its services and how to generate the claims.

Windows Azure Active Directory Access Control is also used to handle authentication in Windows Azure Service Bus.

67 questions
44
votes
2 answers

Test Azure Service Bus locally without any subscription or login

Is there a way to play with and discover Azure Service Bus on the local emulator without registering to the real Azure Services? I was following a tutorial on the use of the Azure Service Bus but at a certain point a Namespace and an Issuer Name and…
Alex
  • 1,237
  • 3
  • 18
  • 29
12
votes
7 answers

Developing with Azure Mobile Services?

What is currently the "best" way to develop a back-end system in Azure Mobile Services? Specifically, what tools are available? From what I've seen, most examples just go to the Management portal and manually add a few lines into the script window.…
Glen Little
  • 6,951
  • 4
  • 46
  • 68
11
votes
1 answer

ClaimsPrincipal.Current vs. HttpContext.Current.User?

In MVC what's the difference between these 2? They look identical, and they even return the same Type/Class System.Web.Security.RolePrincipal but there're subtleties. Eg. The following code throws various errors when called against the instance…
Alwyn
  • 8,079
  • 12
  • 59
  • 107
8
votes
1 answer

How do you deploy Identity Server on Kubernetes?

I want to deploy Identity Server 4 on Kubernetes 1.8, and use this as a Federation Gateway between my web application and Azure Active Directory (to begin with). If I call Identity Server from my web application using the local k8s service name, my…
Røye
  • 1,077
  • 3
  • 14
  • 27
6
votes
3 answers

What is the difference between Azure ACS and Azure AD B2C?

I need to add a custom identity provider to Azure B2C and unsure how to do this. I know this is possible in Azure ACS, but not sure if B2C is just a "prettier" layer on top of ACS. Can anyone clarify the difference, and perhaps tell me how I can…
makerofthings7
  • 60,103
  • 53
  • 215
  • 448
6
votes
1 answer

Secure WebAPI with a JWT

I'm trying to write a mobile application that will get data from a webapi rest based site. The site should be secured via ACS (as there can be multiple identity providers). My mobile app is currently querying the following url…
Ross Dargan
  • 5,876
  • 4
  • 40
  • 53
3
votes
0 answers

WPF app log out from Azure ACS

Currently I have a WPF windows app that gets a SWT token from the following process: Get the providers by calling: $"{Namespace}/v2/metadata/IdentityProviders.js?protocol=javascriptnotify&realm={HttpUtility.UrlEncode(realm)}&version=1.0" Call…
RicardoSBA
  • 785
  • 1
  • 6
  • 18
3
votes
1 answer

Does Azure ACS support OpenID Connect providers?

Is there a way to add an OpenID Connect identity provider to Azure ACS (Access Control Service). I know we can add OpendID 2.0 as described here, but I do not think that it will work with new OpendID Connect protocol.
Alex Sikilinda
  • 2,928
  • 18
  • 34
3
votes
1 answer

Azure AD as a multitenant identity provider

I am trying to make my way through a lot of Azure documentation on multitenant identity management, for a bespoke ASP.NET MVC SaaS site. It is difficult as it seems that a lot of the online examples and articles are now outdated and not applicable…
Sentinel
  • 3,582
  • 1
  • 30
  • 44
3
votes
0 answers

Is it possible not to use Azure ACS authorization server for Sharepoint 2013 apps?

I am new in dealing with Sharepoint Server and other office services. Sorry if my question doesn't make sense. My question is: Can I use other authorization servers other than azure ACS as an access token issuer for Sharepoint 2013 apps ? I would…
kmon
  • 55
  • 5
3
votes
1 answer

Retrieving Azure AD Group information with JWT

I have APIs that require Azure AD bearer authentication. public void ConfigureAuth(IAppBuilder app) { app.UseWindowsAzureActiveDirectoryBearerAuthentication( new WindowsAzureActiveDirectoryBearerAuthenticationOptions { //…
3
votes
1 answer

Is there a javascript library to obtain authentication token with Windows Azure Active Directory

I have a number of web services created using Microsoft MVC4 Web Api and protected using WIF and Windows Azure Active Directory (WAAD) using WS-Fed. I also have a pure HTML5/Javascript single page application (SPA) client that needs to access these…
2
votes
2 answers

Enable Azure Active Directory Access Control with Office 365 Azure Active Directory tenant

I currently have an Office 365 tenant with around 1,400 users all licensed. We have enabled the Azure AD tenant with the same account and are now using Azure AD Dirsync to have same sign-on to Office 365. We are now having an external Sharepoint…
2
votes
0 answers

Use Azure Active Directory to register custom users (programmatically)

How can I use my Azure Active Directory to register (programmatically) users from an asp.net application? Users must be able to register themselves with any email address (gmail,outlook,hotmail,etc..). Each registered user has to be added in my…
Pinturikkio
  • 1,490
  • 1
  • 14
  • 28
2
votes
2 answers

Authenticate MVC application with both Windows live ID and Azure AD

I have developed MVC 5 application. Now i want to use Authentication for my application. My end users are Employees and Customers and i want to authenticate Employees with Azure AD and customers with windows live id. I have tried to use Azure ACS,…
User5590
  • 1,383
  • 6
  • 26
  • 61
1
2 3 4 5