I am trying to use Enterprise Web Library with Windows Azure. It appears that the web.config file for the EWL project works fine locally, but when I deploy to Azure the application cannot initialize. After logging in and viewing the site locally on Azure, it appears there are several web.config elements EWL requires that are locked on Azure. I've had to edit the following in order to have the application initialize on Azure:
- Remove
<serverRuntime uploadReadAheadSize="8388608" />
. - Remove everything nested inside of the
modules
element.
The application seems to run fine on Azure after removing these parts.