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

104681 questions
240
votes
10 answers

What is the difference between an Azure Web Site and an Azure Web Role

What are the material differences between the new Azure Web Sites and the traditional Azure Web Roles for an ASP.NET MVC application? What reason would I choose a "web site" over a "web role" or vice versa? Let's assume that I would need equal…
Erv Walter
  • 13,432
  • 8
  • 40
  • 56
212
votes
24 answers

How to get the azure account tenant Id?

My question is: Is it possible to get the azure active directory tenant id without using powershell command? I found this two blogs and with this help, I'm already able to get the tenant ID and subscriptions ID from powershell. Is it the only way…
Annie Vincent
  • 2,377
  • 2
  • 10
  • 6
206
votes
16 answers

Could not load file or assembly "System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"

I've copied my project to a clean Windows 10 machine with only Visual Studio 2015 Community and SQL Server 2016 Express installed. There are no other framework versions installed apart from those installed with Windows 10 and VS2015 or SQL…
Ivan-Mark Debono
  • 12,439
  • 21
  • 93
  • 195
187
votes
8 answers

Azure Webjobs vs Azure Functions : How to choose

I've created some Azure Webjobs that use triggers and I've just learnt about Azure Functions. From what I understand Azure Functions seem to overlap with Azure Webjobs features and I have some difficulty to understand when to choose between Function…
Thomas
  • 14,241
  • 5
  • 64
  • 103
185
votes
22 answers

How do I copy SQL Azure database to my local development server?

Does anyone know how I can copy a SQL Azure database to my development machine? I'd like to stop paying to have a development database in the cloud, but it's the best way to get production data. I copy my production database to a new development…
BZink
  • 7,106
  • 10
  • 34
  • 54
157
votes
10 answers

How do I delete an Azure storage account containing a leased blob?

I was playing with Windows Azure durable virtual machines. In the end, I deleted the virtual machine (successfully) and tried to delete the associated storage account. The request to delete the storage account fails. On the Preview Portal…
Fernando Correia
  • 20,349
  • 10
  • 79
  • 113
147
votes
7 answers

How to re-create database for Entity Framework?

I have got into a bad state with my ASP.Net MVC 5 project, using Code-First Entity Framework. I don't care about losing data, I just want to be able to start fresh, recreate the database and start using Code-First migrations. Currently I am in a…
Toby Sharp
  • 1,909
  • 3
  • 16
  • 21
146
votes
3 answers

Why does Azure deployment take so long?

I'm trying to understand why it can take from 20-60min to deploy a small application to Azure (using the configuration/package upload method, not from within VS). I've read through this situation and this one but I'm still a little unclear - is…
emptyset
  • 2,964
  • 4
  • 23
  • 33
144
votes
15 answers

Could not load file or assembly System.Web.Http.WebHost after published to Azure web site

I created a web project and it runs well in Visual studio. However, I got the following error after published it to azurewebsites. What can cause the issue? Could not load file or assembly 'System.Web.Http.WebHost, Version=5.0.0.0,…
ca9163d9
  • 21,678
  • 35
  • 151
  • 304
141
votes
3 answers

Azure Blob Storage vs. File Service

Please correct my wrongs. From my reading on the topic so far, it appears to me that both, Azure Blob Storage and File Service offer the ability to store file(s) and folder(s) (I understand that blobs can store any binary object, but any serialized…
Water Cooler v2
  • 29,006
  • 41
  • 139
  • 286
139
votes
13 answers

Checking if a blob exists in Azure Storage

I've got a very simple question (I hope!) - I just want to find out if a blob (with a name I've defined) exists in a particular container. I'll be downloading it if it does exist, and if it doesn't then I'll do something else. I've done some…
John
  • 5,046
  • 8
  • 33
  • 37
132
votes
6 answers

Azure SQL Database Bacpac Local Restore

I've created a BACPAC backup of my Azure SQL Database using the "Export" option within the Azure Management Console. Having downloaded this to my machine I'm a little stuck on how I can restore this to a local SQL Server instance. I came across the…
Ben Foster
  • 32,767
  • 35
  • 157
  • 274
126
votes
22 answers

Azure table storage returns 400 Bad Request

I ran this in debug mode, and I attach an image with the details of the exception. How can I know what went wrong? I was trying to inset data in a table. Can't azure give me more details? Obs: The storage is on Windows Azure not on my machine. The…
Ryan
  • 5,175
  • 25
  • 66
  • 118
121
votes
9 answers

Is there a way to view deployed files in Azure?

Is there a file "view" available in Azure? When I log in to azure to look at a website I've deployed there is no obvious way I have spotted to see exactly what files Azure is hosting. I'd love to be able to see exactly what files are there. I can…
John Reilly
  • 4,594
  • 4
  • 32
  • 52
119
votes
5 answers

How can I use NuGet packages in my Azure Functions?

Using Azure Functions, can I reference and use NuGet packages in my C# function?
1
2 3
99 100