Azure App Service Web Apps (or just Web Apps) is a service for hosting web applications, REST APIs, and mobile back-ends. There are many supported languages such as .NET, .NET Core, Java, Ruby, Node.js, PHP, or Python. Applications run and scale with ease on either Windows-based or Linux-based environments.
Questions tagged [azure-webapps]
528 questions
0
votes
1 answer
Asp.net Web Api (noncore) import to Azure APIM
We have a asp.net web api ( non core) published in Azure App service . Now I am trying to configure these API's in Azure APIM. How can i import all the operations under this API to APIM instead of manually adding each operations one at a time . I…

battech
- 803
- 2
- 13
- 25
0
votes
1 answer
C# Azure ServiceBus / Azure SQL - works locally, does not seem to work when deployed to Azure
Just starting to work with Azure.
Have a simple C# .NET Core app, which connects to Azure ServiceBus, reads messages, and writes them to Azure SQL database.
Works locally just fine - connects to remote Azure Service Bus Queue, reads messages,…

Eugene Goldberg
- 14,286
- 20
- 94
- 167
0
votes
1 answer
Azure Deployment Centre Error: No deployment data available
I had a deployment set up with Azure DevOps. Clicking into the Deployment Centre of the Web App, the screen initially says "Fetching deployment data", then "No deployment data available." Refreshing, disconnecting, syncing, does nothing. The site is…

nmit026
- 3,024
- 2
- 27
- 53
0
votes
0 answers
Can I make Azure app send email with mail() function?
I have the code below which works for me on my test server, but not in "Azure App services" because it doesn't have its own "SMTP server".
Are there some simple way to make the code work or do I need to change it entirely?
I have SMTP server, which…

Koneczech
- 33
- 1
- 5
0
votes
0 answers
Why do my SQL Server calls sometimes stall for 14.3 seconds?
I have a web app running in Azure that was working fine for a couple of years. It's been connecting to a MS SQL Server instance that runs on a VM, mainly because part of it is a legacy app that needed features that Azure SQL didn't support. We've…

mherzig
- 1,528
- 14
- 26
0
votes
0 answers
How to use SSL Cert in Java Code in Azure App Service
I am trying to call a back-end API from Java Client which uses SSL authentication. For .Net there is a snippet available on how to achieve this on MS documentation, but don't have any for Java.
I have added the Application Settings -…

AhmedVali
- 185
- 2
- 16
0
votes
1 answer
Deploy flask app on azure web app (Windows)
Trying to deploy simple flask app on azure app service with windows os. I tried deploy python app on azure web services on Linux it worked. Wanted to do the same with azure web services on windows. I already have tried many resources and document…

ankit
- 39
- 5
0
votes
1 answer
Azure AspNetCore WebApp under high load returns "The specified CGI application encountered an error and the server terminated the process"
I'm hosting my AspNetCore app in Azure (Windows hosting plan P3v2 plan). It works perfectly fine under normal load (5-10 requests/sec) but under high load (100-200 requests/sec) starts to hang and requests return the following response:
The…

DreamTeam Mobile
- 531
- 3
- 15
0
votes
1 answer
Azure Web App in Staging deployment slot not accessible through provided link
We have a Web App hosted in Azure. We have a staging deployment slot that the web app is on and the URL provided is a .internal link that is not accessible. How do we create an accessible URL for the deployment slot. Thank you!

ekbrothers
- 54
- 6
0
votes
2 answers
AdalServiceException: AADSTS7000215: Invalid client secret is provided
My Web App, which was working fine till yesterday, has suddenly started throwing the exception below since yesterday.
AggregateException: One or more errors occurred. System.Threading.Tasks.Task.ThrowIfExceptional(bool…

amsDeveloper
- 177
- 4
- 14
0
votes
2 answers
Key Vault Works on local development but not on a deployed web app
I've been working on this for several days now, and after reading many documentations on this I am absolutely out of ideas.
What I've done so far:
Created three web apps (DEV, UAT, PROD) and switched System Assigned to ON to create a Managed…

vfirma
- 330
- 1
- 5
- 15
0
votes
1 answer
Unexpected token error from node module import
I have a node app that uses the WebSocket lib (ws) and I'm able to run this app on the local machine.
However, when I publish it to Azure App Service, I get the following error for the same code.
I've checked that both are running the same version…

user14492
- 2,116
- 3
- 25
- 44
0
votes
1 answer
web apps - update configuration via API
I would like to change the application settings of an azure functions via API. I have found this API For this API I generate such a body:
{
"properties":
{
"appSettings":[
{
"Name":"452bb"
}
]
}
}
After sending my request I…

Kaja
- 2,962
- 18
- 63
- 99
0
votes
1 answer
Uploaded images only viewable in Azure Web Apps for Linux after server restarted
My Azure Web Apps for Linux application successfully allows a user to upload images.
The images are successfully stored in a directory BankScans.
I try and display the image in the browser:

gordon613
- 2,770
- 12
- 52
- 81
0
votes
0 answers
Azure Web App For Containers - Correct Port Setup and Logging Issue
I have an rshiny server setup in a docker container, and am trying to deploy this as an azure multi-container web app with some other services. I've already succeeded in deploying it in the single-container setting, for which I set the WEBSITES_PORT…

zast
- 1