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
72
votes
14 answers

Laravel migrations: Class "not found"

I am deploying a Laravel barebone project to Microsoft Azure, but whenever I try to execute php artisan migrate I get the error: [2015-06-13 14:34:05] production.ERROR: exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message…
Washery
  • 1,037
  • 1
  • 12
  • 23
71
votes
2 answers

Azure AD App Application Permissions vs Delegated Permissions

I am creating an Azure AD app and noticed there are two permissions types, Application Permissions and Delegated Permissions. What is the difference between the two and under what scenario should I use them?
Arjuna
  • 813
  • 1
  • 6
  • 5
69
votes
20 answers

How to debug "You do not have permission to view this directory or page"?

After I published an ASP.NET Core app to Azure from Visual Studio 2017 I am getting this message when I click on the app url: It was working fine before. Is there a way to figure out what's wrong with my pushed changes?
Adam
  • 806
  • 2
  • 8
  • 15
69
votes
9 answers

Where is the NuGet package for Microsoft.WindowsAzure.ServiceRuntime?

We had previously been referring to our Windows Azure libraries via the SDK and I noticed that they have NuGet packages for them now. This is obviously way better, so I'm swapping out all of those references for the NuGet packages. However, I…
Allen Rice
  • 19,068
  • 14
  • 83
  • 115
68
votes
3 answers

Worker Role vs Web Job

From what I understand both run small repeatable tasks in the cloud. What reasons and in what situations might I want to choose one over the other?
atreeon
  • 21,799
  • 13
  • 85
  • 104
68
votes
3 answers

SQL Azure table size

In mssql2005 when I want to get size of table in MBs, I use EXEC sp_spaceused 'table'. Is there any way to get space used by particular table in SQL Azure using some query or API?
user224564
  • 1,313
  • 1
  • 10
  • 14
67
votes
7 answers

Azure Table Vs MongoDB on Azure

I want to use a NoSQL database on Windows Azure and the data volume will be very large. Whether a Azure Table storage or a MongoDB database running using a Worker role can offer better performance and scalability? Has anyone used MongoDB on Azure…
Shiju
  • 1,313
  • 2
  • 12
  • 14
67
votes
11 answers

The client with object id does not have authorization to perform action 'Microsoft.DataFactory/datafactories/datapipelines/read' over scope

I was trying to invoke data factory pipeline from azure function programmatically. Its throwing following error. link: http://eatcodelive.com/2016/02/24/starting-an-azure-data-factory-pipeline-from-c-net/ AuthorizationFailed: The client…
ravibhat
  • 811
  • 1
  • 7
  • 19
67
votes
4 answers

Using an array in Azure web app settings

In my ASP.NET 5 (RC1) code I have an appsetting.json that looks something like this: { "SomeSettings": { "PropA": "ValueA", "PropB": [ "ValueB1", "ValueB2" ] } } These value are used when a…
Kenneth Kryger Sørensen
  • 2,702
  • 2
  • 22
  • 27
67
votes
6 answers

how to get blob-URL after file upload in azure

I'm trying to connect web and worker role. So i have a page where user can upload video files. Files are large so i can't use the query to send files. That's why i'm trying to upload them into the Blob Storage and then send the url by the query. But…
Stasy Concelgoger
  • 696
  • 1
  • 5
  • 10
67
votes
3 answers

Azure storage tables vs SQL

I'm just starting to learn Azure and I can't see too many scenarios where you would want to put something into an Azure storage table as opposed to SQL. I guess maybe I'm used to working in environments where I need related data? When is it better…
TheWommies
  • 4,922
  • 11
  • 61
  • 79
66
votes
5 answers

Rename an Azure Function

How to rename an Azure Function? I want to replace a default 'HttpTriggerCSharp1' name to my own. At the moment unfortunately this name is included in the function url and there is no option to change…
66
votes
14 answers

Azure Storage Blob Rename

Is is possible to rename an Azure Storage Blob using the Azure Storage API from a Web Role? The only solution I have at the moment is to copy the blob to a new blob with the correct name and delete the old one.
Geoff
  • 4,676
  • 3
  • 26
  • 38
66
votes
5 answers

Dependency injection using Azure WebJobs SDK?

The problem is that the Azure WebJobs SDK supports only public static methods as job entry-points which means there is no way of implementing constructor/property injection. I am unable to find anything about this topic in official WebJobs SDK…
Milos Mrdovic
  • 1,441
  • 1
  • 17
  • 30
65
votes
5 answers

How to view the roles and permissions granted to any database user in Azure SQL server instance?

Could you guide me on how to view the current roles/permissions granted to any database user in Azure SQL Database or in general for a MSSQL Server instance? I have this below query: SELECT r.name role_principal_name, m.name AS…
user3258784
  • 1,987
  • 6
  • 24
  • 28