Questions tagged [azure]

Microsoft Azure is a Platform as a Service and Infrastructure as a Service cloud computing platform. Use this tag for programming questions concerning Azure. General server help can be obtained at Super User or Server Fault.

If you need help setting up Azure resources, ask those questions on Server Fault or Super User.

Microsoft Azure (formerly Windows Azure) is Microsoft's application platform for the public cloud. Microsoft Azure can be used to build web applications or services that run and store data in Microsoft data centres. It can connect on-premises applications with each other or map between different sets of identity information.

Azure offers several high-level services

Azure offers several services currently in preview

Intro to Azure

Each of these services offers the ability to scale up or down based on demand using predetermined virtual machine sizes to run the services.

Use this tag for questions relating to applications hosted on Azure.

Beginners' resources

Related Tags

134275 questions
64
votes
1 answer

Azure Cloud Service Diagnostic output changed with 2.6 SDK

After upgrading the SDK to Azure Cloud Service Diagnostic 2.6, all the WAD trace logs started to look like this: EventName="FormattedMessageEvent" FormattedMessage="Subscription {0} Already Created" Argument0="sub2feature-staging"…
Poul K. Sørensen
  • 16,950
  • 21
  • 126
  • 283
63
votes
2 answers

Change current working directory in Azure Pipelines

I'm developing a CI for Python package in Azure Pipelines (https://github.com/scikit-image/scikit-image/blob/azure-pipelines/azure-pipelines.yml). At some point, I need to step out of the source code directory to allow pytest to discover an…
soupault
  • 6,089
  • 4
  • 24
  • 35
63
votes
4 answers

Azure SQL Database Web vs Business Edition

Is there any difference between the Web Edition and Business Edition of Azure SQL Database other than the maximum supported database sizes? I'm assuming the naming has some significance but all of the information I find simply talks about the max db…
BrettRobi
  • 3,793
  • 7
  • 40
  • 64
63
votes
5 answers

404 on static content (svg,woff,ttf) on Azure

I am trying to add bootstrap glyphicons-halflings-regular.svg to my web site. Locally everything works fine, but on Azue I have 404 errors: The resource you are looking for has been removed, had its name changed, or is temporarily…
Piotr Stapp
  • 19,392
  • 11
  • 68
  • 116
63
votes
7 answers

Sending email from Azure

Hope someone can help. I want to send email from my Azure account. My domain name is configured to work with Azure. I could not find easily on the web how to send an email from an Azure account. There was some mention of SendGrid, but it seems my…
user1144596
  • 2,068
  • 8
  • 36
  • 56
61
votes
10 answers

Share variables across stages in Azure DevOps Pipelines

I am trying to figure out how to share custom variables across ADO pipelines in my script. Below is my script with 2 stages. I am setting the curProjVersion as an output variable and trying to access it from a different stage. Am I doing it…
zooes
  • 1,280
  • 3
  • 15
  • 21
61
votes
3 answers

What is Azure Service Principal?

My requirement is simple. I want to login to Azure through my shell script in non-interactive mode, but "az login -u username -p password" command gives the following error: Get Token request returned http error: 400 and server…
BlindSniper
  • 1,731
  • 3
  • 16
  • 30
61
votes
7 answers

Azure WebApp Asp.NET Core 2 error: An error occurred while starting the application

I have upgraded asp.net core 1.1 to an asp.net core 2. It runs fine on the local server, but when I try to deploy it to an Azure hosted web app, I received the error: An error occurred while starting the application. .NET Core 4.6.00001.0 X86…
Arvind Sisara
  • 861
  • 2
  • 7
  • 13
61
votes
10 answers

How do I return JSON from an Azure Function

I am playing with Azure Functions. However, I feel like I'm stumped on something pretty simple. I'm trying to figure out how to return some basic JSON. I'm not sure how to create some JSON and get it back to my request. Once upon a time, I would…
xam developer
  • 1,923
  • 5
  • 27
  • 39
61
votes
6 answers

How to rename the Azure WebApp URL

For numerous time it has happened that our DevOps guys have created a Azure WebApp with incorrect URL. Which forced us the delete the resource group (as group contains web app, sql azure etc.) And re-create. Is there a way to re-name /update the…
Nil Pun
  • 17,035
  • 39
  • 172
  • 294
61
votes
2 answers

Azure SDK 2.5.1 fails to Publish cloudService

After successfully upgrading my cloud service to the new "Azure SDK for .NET 2.5.1" I got the following error when trying packaging/publishing. Could not load file or assembly 'Microsoft.WindowsAzure.Packaging, Version=1.0.0.0, Culture=neutral,…
61
votes
3 answers

How to get all rows in Azure table Storage in C#?

I am trying to get a list of all entities inside an azure table. Any idea of how I would write this query?
SKLAK
  • 3,825
  • 9
  • 33
  • 57
60
votes
3 answers

What is difference between Keys and Secrets in Azure Key Vault?

It would be great to know what are they, what are they used for why would one prefer one versus the other.
Bohdan
  • 16,531
  • 16
  • 74
  • 68
60
votes
5 answers

TokenValidationParameters no longer working after upgrade to 5.0.0

I have the following code which was working when I was using System.IdentityModel.Tokens.Jwt, Version=4.0.20622.1351 private static void ConfigureAzureAD(IAppBuilder appBuilder) { appBuilder.UseWindowsAzureActiveDirectoryBearerAuthentication( …
MHOOS
  • 5,146
  • 11
  • 39
  • 74
60
votes
32 answers

Authentication failed for Azure Git

I'm trying to clone my webapp in Azure. When I run git clone https://username@appname.scm.azurewebsites.net:443/appname.git the terminal asks me for my password. But when I fill in my password, it keeps saying that the authentication has…
Arn Vanhoutte
  • 1,779
  • 4
  • 16
  • 28