Marcel
Marcel That's me: Marcel

How to use http delete, put, head, connections, connect with an Azure Web App

How to use http delete, put, head, connections, connect with an Azure Web App

I often use Azure Web Apps to deploy tools and programs running serverless. A few weeks ago, I deployed an MVC web site with a controller to handle file uploads to an Azure Storage Account. For the client-side, I used jquery-FileUpload, which also allows triggering a controller to delete a file. If a user tries to delete a file, jquery-FileUpload triggers the controller with the http-request method “DELETE”.

In my local environment, this worked as expected but nothing happened in my Azure Web App deployment.

If found out that an Azure Web App supports only http-get and post by default. My first attempt was to add the methods DELETE via web.config:

<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb=" DELETE" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />

But this didn’t work. The full web site was no longer accessible:

The page cannot be displayed because an internal server error has occurred.

The right way to add a method/verb is to remove all first and then re-add them:

<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="GET,POST,PUT,DELETE" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />

how_to_use_http_delete_put_head_connections_connect_with_an_azure_web_app.web_.config_0

First published on: https://www.sepago.de/blog/how-to-use-http-delete-put-head-connections-connect-with-an-azure-web-app/