Questions tagged [azure-web-app-service]

Use this tag for questions relating to web applications residing on Azure. Azure App Service is a cloud-based platform for hosting web applications, REST APIs, and mobile back ends. It was formerly known as Azure Web Sites. You can deploy applications written in a variety of languages: .NET, .NET Core, Java, Ruby on Rails, Node.js, PHP and Python, using either a Windows or Linux container.

See https://learn.microsoft.com/en-us/azure/app-service/app-service-web-overview for further information.

11621 questions
16
votes
3 answers

Azure App Service unable to validate .pfx file: Certificate failed validation because it could not be loaded

For years I was able to upload new pfx files for SSL binding on Azure App Services using the OpenSSL creation method in this Stack Overflow answer: openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt However,…
Matthew Steven Monkan
  • 8,170
  • 4
  • 53
  • 71
16
votes
2 answers

Azure: Container did not start within expected time (WebApp)

I'm getting the following error when trying to deploy a webapp: ERROR - Container XXX_0 for site XXX did not start within expected time limit. Elapsed time = 1800.4463925 sec I'm trying to deploy a node app. Using automatic deployment with a…
39fredy
  • 1,923
  • 2
  • 21
  • 40
16
votes
2 answers

C# grandchild project DLLs not included in msbuild package

I have a C# project X that references a C# project Y that references a C# project Z. So the dependency chain looks like this: X => Y => Z. There is no direct/explicit dependency X => Z. When I build a package for publication using msbuild…
Scotty H
  • 6,432
  • 6
  • 41
  • 94
16
votes
1 answer

Thread management in asp.net core / kestrel

I'm troubleshooting performance / scalability issues with an asp.net app we've migrated to asp.net core 2.0. Our app is hosted on azure as an app service, and is falling over far too easily with any moderate traffic. One thing that's puzzling me is…
16
votes
4 answers

Explanation for CPU minutes/ day azure

Will I be charged if I host my application on Azure App Service more than 60 min even if my app does not do any processing?
16
votes
5 answers

How to create Python secure websocket client request?

My Python secure websocket client code giving me exception as follows: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:748) I have created my private certificate and and sign certificate as well, but I am not able to connect to…
Ravi Anand
  • 5,106
  • 9
  • 47
  • 77
16
votes
3 answers

Can we deploy a C# 7 web app to Azure using Kudu?

Since Visual Studio 2017 is released and we can use the new C# 7 features I expected this will work when deploying on Azure Web apps. Unfortunately we're seeing compile errors when using continuous deployment (kudu git deploy) so it seems Azure…
Robert Massa
  • 4,345
  • 1
  • 32
  • 44
16
votes
5 answers

Swapping Azure Web App deployment slots logs out all users in ASP.NET Core RC2

Whenever I updated my ASP.NET Core RC2 website running on as an Azure Web App, it logs out all users. It seems to be related to swapping a staging deployment slot to production (I use web deploy from VS to staging, and have it set to auto-swap to…
16
votes
2 answers

Trouble with Slot Setting for Azure App Services

I need to understand Slot Application Settings better for Azure App Services. When they apply and how to use them correctly. I have 2 App Services set up each running 2 slots as below. Site 1 with slot - building-staging Site 1 with slot -…
16
votes
4 answers

Get logged in user with Azure Web Apps Auth

Azure Web App has a great global Authentication options. I'm currently using Azure AD as 'Authentication Provider' and as 'Log in with...' as well: This works great but I can't figure how the get the username (email) of the currently signed in…
nirsky
  • 2,955
  • 3
  • 22
  • 35
16
votes
1 answer

What is SnapshotHelper on Windows Azure

Occasionally (rarely) my Azure website will freeze and eventually return 502 errors (seems like it takes 5 min). I see a whole bunch of items in my trace log related to 'snapshot helper'. I haven't explicitly used this and google only seems to…
bitcoder
  • 1,217
  • 12
  • 22
16
votes
4 answers

CloudConfigurationManager vs WebConfigurationManager?

In an Azure Websites I was always using the following code to fetch some values from the config's app settings: string property = WebConfigurationManager.AppSettings["property"]; Just a couple of days ago I stublemd upon…
Yaron Levi
  • 12,535
  • 16
  • 69
  • 118
16
votes
1 answer

Where to deploy a WebApi at Windows Azure: as Website or as Cloud Service?

I'm developing a Web API and will host it at Windows Azure. What should I take into consideration to decide where to deploy it? As far as I know it can be deployed as a Website or as a Cloud Service. Would love to know the pros and cons you guys…
15
votes
4 answers

"The parameter LinuxFxVersion has an invalid value" when creating WebApp resource from Node.js

I am trying to create a simple WebApp using the Azure SDK for JS in a Node.js environment, but I keep getting the response: { "Code":"BadRequest", "Message":"The parameter LinuxFxVersion has an invalid value.", "Target":null, "Details":[ …
jgellin
  • 151
  • 1
  • 1
  • 3
15
votes
4 answers

Azure support for .NET 4.8

Does anyone have any knowledge on Azure app service .NET 4.8 support. We currently have a repository that we've started to move to .NET Core but because of our dependencies, we've had to target .NET 4.8. Unfortunately, it doesn't look like Azure…
Appa
  • 457
  • 6
  • 13