Troubleshooting 502 Responses in Azure App Services

> App Services don't support all libraries
Cover Image for Troubleshooting 502 Responses in Azure App Services

I recently deployed code that worked on my local machine to an Azure App Service and started getting 502 - Bad Gateway responses. Worst of all, I wasn't seeing any helpful warnings or error messages come through in Application Insights; not even my own custom log statements that I was 100% sure should have been appearing because they were called well before the custom code that I pushed up. In this post I will discuss how I troubleshot this issue and show that App Services don't support all libraries.

Speedrunning the Troubleshooting Process

Knowing that log statements weren't working as expected, I opted for adding early return statements in the code to isolate the issue.

When encountering issues that aren't easy to troubleshoot, the first thing I do is reduce my dev cycle time. That is, reduce the amount of time that it takes to make a change, build, deploy, and test.

In this case, my local dev cycles were already short, but I needed to reduce the time it took to deploy to the upstream App Service. I skipped the build pipeline entirely and just dragged and dropped the updated DLLs into the bin folder of the App Service. App Services make this easy because Kudu is built in, and it's trivial to drag and drop files into the App Service file system (FTP is dead; long live FTP!).

The Offending Code

I isolated the issue to the hunk of code below. Very few developers would ever need to use this library, but the point is that Azure App Services don't support all libraries.


_12
using System.Windows.Forms;
_12
_12
...
_12
_12
using (var textBox = new System.Windows.Forms.TextBox())
_12
{
_12
// ...
_12
_12
float fontSizePixels = System.Windows.Forms.TextRenderer.MeasureText("x", font);
_12
_12
// ...
_12
}

Takeaways

There are some libraries that Azure App Services don't support. When you deploy code that use such libraries, you may get 502 responses. Log statements may not work in those cases. To troubleshoot, reduce your dev cycle time and isolate the issue. In my case, the offending code was using System.Windows.Forms. This appears to be because Windows Forms relies on a GUI which requires a Windows environment with a user session. That explains why it was working locally, but not on App Services, which are intended to host web applications only (source).

Keep going,

-MG


More Stories

Cover Image for Tips for Applying Cumulative Sitecore XM/XP Patches and Hotfixes

Tips for Applying Cumulative Sitecore XM/XP Patches and Hotfixes

> It's probably time to overhaul your processes

Cover Image for Tips for Forms Implementations

Tips for Forms Implementations

> And other pro tips

Cover Image for NextJS: Access has been blocked by CORS policy

NextJS: Access has been blocked by CORS policy

> CORS is almost as much of a nuisance as GDPR popups

Cover Image for Early Returns in React Components

Early Returns in React Components

> When and how should you return early in a React component?

Cover Image for Add TypeScript Type Checks to RouteData fields

Add TypeScript Type Checks to RouteData fields

> Inspired by error: Conversion of type may be a mistake because neither type sufficiently overlaps with the other.

Cover Image for Content Editor Search Bar Not Working

Content Editor Search Bar Not Working

> Sometimes it works, sometimes not

Cover Image for JSS + TypeScript Sitecore Project Tips

JSS + TypeScript Sitecore Project Tips

> New tech, new challenges

Cover Image for Hello World

Hello World

> Welcome to the show

Cover Image for SPE Script Performance & Troubleshooting

SPE Script Performance & Troubleshooting

> Script never ends or runs too slow? Get in here.

Cover Image for NextJS: Short URL for Viewing Layout Service Response

NextJS: Short URL for Viewing Layout Service Response

> Because the default URL is 2long4me

Cover Image for On Mentorship and Community Contributions

On Mentorship and Community Contributions

> Reflections and what I learned as an MVP mentor

Cover Image for On Sitecore Stack Exchange (SSE)

On Sitecore Stack Exchange (SSE)

> What I've learned, what I see, what I want to see

Cover Image for JSS: Reducing Bloat in Multilist Field Serialization

JSS: Reducing Bloat in Multilist Field Serialization

> Because: performance, security, and error-avoidance

Cover Image for Script: Boost SIF Certificate Expiry Days

Script: Boost SIF Certificate Expiry Days

> One simple script that definitely won't delete your system32 folder

Cover Image for Sitecore Symposium 2022

Sitecore Symposium 2022

> What I'm Watching 👀

Cover Image for Don't Ignore the HttpRequestValidationException

Don't Ignore the HttpRequestValidationException

> Doing so could be... potentially dangerous

Cover Image for Tips for New Sitecore Developers

Tips for New Sitecore Developers

> Because learning Sitecore can be hard

Cover Image for Symposium 2022 Reflections

Symposium 2022 Reflections

> Sitecore is making big changes

Cover Image for How to Run Old Versions of Solr in a Docker Container

How to Run Old Versions of Solr in a Docker Container

> Please don't make me install another version of Solr on my local...

Cover Image for NextJS/JSS Edit Frames Before JSS v21.1.0

NextJS/JSS Edit Frames Before JSS v21.1.0

> It is possible. We have the technology.

Cover Image for Azure PaaS Cache Optimization

Azure PaaS Cache Optimization

> App Services benefit greatly from proper configuration

Cover Image for NextJS: Unable to Verify the First Certificate

NextJS: Unable to Verify the First Certificate

> UNABLE_TO_VERIFY_LEAF_SIGNATURE

Cover Image for Year in Review: 2022

Year in Review: 2022

> Full steam ahead

Cover Image for Ideas For Docker up.ps1 Scripts

Ideas For Docker up.ps1 Scripts

> Because Docker can be brittle

Cover Image for Super Fast Project Builds with Visual Studio Publish

Super Fast Project Builds with Visual Studio Publish

> For when solution builds take too long