I have an ASP.NET MVC web role running on Windows Azure and have setup ELMAH properly in the web.config. I also have my global.asax ignore *.axd routes. Locally, I am able to load /elmah.axd, however when I deploy to Azure, I get a 404 on that page. Has anyone gotten ELMAH working on Azure?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Azure is based on Windows Server 2008 and IIS7. This means that you need to populate the system.webServer part of the web.config file. The sample file included with elmah's source code contains the details that you need to put in.
There are 2 elmah lines in the above block of xml that you will need to include, and the section in general should contain most if not all of those elements anyway. For Elmah to work you will also need to modify the following line in your ServiceDefinition.csdef file:
|
|||||
|
|
Also secure the file so only allowed users can view the error logs!
|
|||
|
|
I think additionally (to what suggested by @mat1t here) you may need to set remote access to 1:
|
|||
|
|