-
How to Fix Azure App Service Remote Debugging in Visual Studio 2022
I was getting a strange authentication error when trying to remote debug an Azure App Service using Visual Studio 2022. The issue was ultimately due to basic authentication being disabled. Here’s how to fix remote debugging in VS2022 and Azure App Services.
-
CORS Error: WebAPI Request Works from Swagger but Fails from Angular
An app that worked stopped working. The service calls were failing from Angular to the REST APIs. Turns out that I had a CORS misconfiguration in the Azure App Service.
-
Create an Azure Resource Manager Service Connection for Azure DevOps Server Pipelines
Creating a service connection in Azure DevOps Server is complex due to the lack of direct access to Azure resources unlike in its cloud counterpart. To ease this, a detailed PowerShell script has been developed to facilitate Azure Resource Manager service connection setup by generating necessary values, which can then be inputted directly into Azure…
-
The Truth About Serverless Apps: Azure App Services & App Service Plans
The term “serverless” is somewhat misleading; there’s always a server involved. What differentiates ‘serverless’ apps is that they abstract away server management responsibilities, minimizing hosting environment concerns for the app developer. Azure App Services are one such ‘serverless’ solution, where the server is represented by App Service Plans. These plans, essentially virtual machines, host web…
-
Azure App Service: Your Quick and Easy Web Application Hosting Solution
Azure App Services, also known as Azure Web App, offer an easy solution for hosting websites, REST services, or apps. The service supports numerous languages and platforms, and allows for websites to operate on different operating systems. It offers features such as automatic encryption, scalability, backups, and integrated DevOps pipelines, making it ideal for variety…
-
Fix: Azure App Services Log Stream is Empty for .NET Core App
When you’re trying to debug your .NET Core app that’s running on an Azure App Service, the Log Stream is an essential tool. So how do you connect the console logs from your .NET Core app to the Log Stream output?
-
Azure App Service Slot Swap is Hanging or Taking Forever
If your App Service Slot Swap is failing or taking forever, it might be a problem with the slot warmup checks. Here’s how to fix it.