I am trying to create my async HTTP handler on Visual Studio 2012. I have spent about 10 hours to find out why the server keeps giving me "HTTP Error 500.23 - Internal Server Error" response. Poor old me.
And finally I found out that if I switch my Web server to Visual Studio Development Server. Everything works fine. And When I switch back to IIS Web server, it doesn't work again. I tried to do some configuration with IIS manager. I just have no idea what I should do and how the localhost is linked to my development folder. There is no information about the port it's using and the folder it's mapping.
Can someone offer some help? What should I do to make IIS Web server work for me? Thank you
it is possible to fix this problem while keeping your app pool in integrated mode,
add the following markup to your application's web.config
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
</system.webServer>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With