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

Do Webjobs automatically renew leases on Azure Queue messages?

When Webjobs get a message from a queue on Azure Storage via QueueTrigger, it leases the message (makes it invisible). If the triggering function (of webjob) takes a long time to process the message, is this lease automatically extended? Or should I…
Nuri Tasdemir
  • 9,720
  • 3
  • 42
  • 67
14
votes
3 answers

azure role not starting after windows update 10February

After installation of windows update on 10th February 2016, the azure roles are not starting in emulator (Full/Express). The logs show below [00005748:00006624, 2016/02/14, 12:03:24.391, FATAL] Role process exited with exit code of…
14
votes
5 answers

How to update Azure PowerShell?

I have Azure PowerShell 1.0.3 installed via the Gallery (per the instructions here in the Installing Azure PowerShell From The Gallery section). I want to update to the latest version but am unclear on the commands that I need to run. I tried the…
GregGalloway
  • 11,355
  • 3
  • 16
  • 47
14
votes
3 answers

How to Sync an Azure AppService git based from Powershell script?

I have an Azure AppService (Web-Site microservice) created from an ARM template. It contains a drupal app. I have configured it to read from a git server in bitbucket. When I create for first time it sucessfully pull the files from bitbucket (master…
Oscar Foley
  • 6,817
  • 8
  • 57
  • 90
14
votes
3 answers

WebJob processing multiple messages at a time from queue

My WebJob is processing multiple messages from a queue which I don't want it to do. My queue has dependent messages which I want to process one after the other sequentially. I have tried with configuring "BatchSize" to 1 but no luck. It is still…
14
votes
1 answer

Service Fabric Deactivate (pause) vs Deactivate (restart)?

When I log in to Service Fabric Explorer and try to disable a node for an OS upgrade I am presented with two options: Deactivate (Pause) Deactivate (Restart) Can anyone tell me the difference?
Wojtek Turowicz
  • 4,086
  • 3
  • 27
  • 38
14
votes
3 answers

Azure Web App Temp file cleaning responsibility

In one of my Azure Web App Web API application, I am creating temp files using this code in a Get method string path = Path.GetTempFileName(); // do some writing on this file. then read var fileStream = File.OpenRead(path); //…
14
votes
2 answers

How to add message header to the request when using default client of Azure service fabric?

I am wondering it is possible to inject custom message header to outgoing request to carry additional information without deserialize the payload to fullfill the functionality like authentication, validation or correlation of request like wcf…
Xiangdong
  • 139
  • 1
  • 6
14
votes
1 answer

OneDrive for Business API issues on Discovery and Authorization

I've been trying to implement OneDrive Business API according to this OneDrive Release Notes. We've already implemented OneDrive end users API without any issue. First obvious thing to do is to handle OAuth2 authentication to get right tokens, first…
Juan
  • 141
  • 3
14
votes
1 answer

Service Fabric Reliable Services Pipeline design

I need to implement pipeline if Service Fabric's Reliable Services, and I need some guidelines about what of these approaches is preferable from the viewpoint of reliability simplicity and simple good design:
AsValeO
  • 2,859
  • 3
  • 27
  • 64
14
votes
4 answers

Service Bus The token has an invalid signature

I am trying to create a service bus relay based on this article I get an error message Generic: InvalidSignature: The token has an invalid signature. static void Main(string[] args) { ServiceHost sh = new…
Frazer
  • 560
  • 2
  • 11
  • 21
14
votes
4 answers

ASP.NET: Publishing Website doesn't publish Resources folder

I have a website that I'm developing with ASP.NET. I'm using Visual Studio 2015. When I right-click and hit publish website the site publishes correctly except that my resources folder gets left behind. Heres what the solution explorer looks like in…
Nick Gilbert
  • 4,159
  • 8
  • 43
  • 90
14
votes
1 answer

Connecting to a remote Azure Redis Cache using Redis CLI

I'm trying to use redis-cli to connect to my Redis cache hosted in MS Azure. I created a shortcut to the executable in Windows, passing through the hostname port and pw: "C:\Program Files\Redis\redis-cli.exe" -h myredis.redis.cache.windows.net -p…
RPM1984
  • 72,246
  • 58
  • 225
  • 350
14
votes
2 answers

How can I cancel my Microsoft Azure subscription?

I signed up for Azure Trial, but I don't use it anymore. However, they are still charging my credit card. I want to unsubscribe but couldn't find a way to do so. I tried to reach customer care also but there was no response. How can I cancel /…
teja reddy
  • 157
  • 1
  • 1
  • 4
14
votes
1 answer

Does TableQuery support OrderBy?

I can't figure out how to add a OrderBy clause to a TableQuery with Azure Table Storage. According to their documentation Azure supports OData $orderby. If I try to hack it by adding $orderby=PartitionKey to the TableQuery Where clause the '$' is…
user152949
1 2 3
99
100