Reputation: 43
I'm looking for someone who has deployed proxy.ashx in Azure app service and made it work as on Windows VM it works fine but when I deployed on App service it doesn't work
Upvotes: 0
Views: 306
Reputation: 10370
How to deploy proxy.ashx in Azure app Service
httphandlers
in the web.config
file for httphandlers
to work in Azure Web App.HTTP Handlers
in Integrated Mode<system.webServer> <handlers> <!-- Register the HttpHandler used for My Handler requests (IIS 7.0+ running in Integrated Mode) --> <add name="SampleHandler" preCondition="integratedMode" verb="GET" path="SampleHandler.ashx" type="YourWebApp.Web.SampleHandler"/> </handlers> </system.webServer>
httphandlers
to bin folder of Azure Web App Service, this can be done by adding the extensions in Azure Portal- KUDU Console - https://DeployedAppName.scm.azurewebsites.net
500.13 generic error
Please follow the steps provided here for Troubleshooting 500 series errors
References taken from
ASP.NET HTTP Handlers on Azure
Upvotes: 0