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
-1
votes
1 answer
C# MVC Core 5 Site throws encoding error when trying to open a connection to Azure SQL DB
As stated above. Under IIS Express on VS2019 I have no issues. When opening the site after deployment to Azure I get:
"The character encoding of the plain text document was not declared. The document will render with garbled text in some browser…

Destroigo
- 101
- 4
-1
votes
1 answer
Unable to connect to Azure server using FTP
I have developed an app service in Microsoft Azure and am working on it. Now I want to download my source code from the Azure server to my local machine. I have tried using FTP but I am unable to establish a connection.
I don't know what I'm missing…
-1
votes
1 answer
What Azure hosting would automatically scale a .NET Core Web API service?
I am building an ASP.NET Web API service that receives orders from restaurants.
At certain times it will be busy, thousands of times more busy than at other times.
I haven't begun developing this yet but I was wondering what Azure services are…

Petras
- 4,686
- 14
- 57
- 89
-1
votes
1 answer
Azure WebApp with private Api backend
I have an application splitted into 3 microservice, 1 frontend Vue (with NGINX) and 2 API backend (Asp.NET Core).
For each of them I have a docker image:
UI
API1
API2
All of them working properly on my local intranet with docker-compose, now I…

Max
- 6,821
- 3
- 43
- 59
-1
votes
1 answer
Chat-bot application using Flask works locally but not on azure web-app
application.py
from flask import Flask, render_template
from flask_socketio import SocketIO, emit
from engineio.async_drivers import gevent
app = Flask(__name__)
app.config['SECRET_KEY'] = 'secret!'
app.config['DEBUG'] = False
# socketio =…

Ashique Mukkil
- 1
- 1
-1
votes
1 answer
How will I call an azure web app from a html hyperlink?
I have made an azure web app which sends email to outlook.
In the email html body there is one hyperlink and when user clicks on that link, it will call another azure web app. So, right now my requirement is to connect with another azure web app…

Debartha Mitra
- 61
- 12
-1
votes
1 answer
My Azure Machine Learning Web Service has same result.How to overcome this problem?
My project is binary classification prediction.I make standardise my numeric values and apply one-hot encoding to categorical values.I trained data and get 80% accuracy.I want to create web service and it has original data input and original data…

Sami Aydoğan
- 39
- 3
-1
votes
1 answer
What are the events that may help identify when an azure app service is down?
We have an app service that needs to be monitored and notify a set of users when it is down.
Right now, I am just using Activity Log's Service Stopped to check for it.
What more conditions can be added to make it work in many scenarios as…

meStupid
- 13
- 3
-1
votes
1 answer
NOT ABLE TO ACCESS URL https://testdev01.azurewebsites.net
I am not able to access "https://testdev01.azurewebsites.net"
Its showing "The service is unavailable"
_errorData: undefined _sourceErrorLevel: undefined baseTypes: ["t","MsPortalFx.Errors.Error"] code: undefined data: 1 errorLevel: 2
extension:…

SanchayJain
- 11
- 1
-1
votes
1 answer
Azure Webapp is not updating Azure database for mysql
I have a web application that needs to communicate with azure mysql database. I have included the connection string for jdbc as given in the portal and also modified the connection parameters to allow all inbound IPs. Still the database wont update…
-1
votes
1 answer
How to Migrate Azure ASE v1 to v2?
I wonder if there is any docs or path of How to Migrate web apps from App Service Enviroment v1 to v2 on Azure?
Thank you so much.
Regards.
-2
votes
1 answer
What is the better technique to identify and select region in Azure?
I'm trying to create Web App for Containers by selecting "Web App For Containers" option in Azure Portal.
When selected region as "Canada Central", got the below error:
This region has quota of 1 instances for your subscription. Try selecting…

Ashok kumar
- 1,593
- 4
- 33
- 68
-2
votes
1 answer
Flask + MongoDB: An "Azure Web App For Dummies" guide
After spending many hours reading dozens of guides, I finally got into a working setup, and decided to publish the instructions here.
The problem: I have a working flask app running in my machine. How do I launch it as a web app using Microsoft…

ishahak
- 6,585
- 5
- 38
- 56
-2
votes
1 answer
What does the Create Web App + Database option offer in portal azure
I'm looking at creating a web app in portal azure but I came across this option. Create Web App + Database.
My question is if I select the DB engine to be SQL Azure. How big is the database?
Also, what's the difference between the Basic and Standard…

naijacoder
- 464
- 5
- 14
- 31
-2
votes
1 answer
NestJS Azure WebApp
Im trying to start a nestJS app within an Azure App Service. The is being deployed via a DevOps pipeline. The build created a dist folder which I am deploying using zip deploy. The container seems to start ok, but I get 404 when browsing.
Container…
user11455801