Add a httpHandlers to a configuaration
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hello again. For last three hours I try to create a "httpHandler". IIS 7.5, .NET 2.0, Integrated mode. My web.config:
<configuration>
<system.web><httpHandlers> <add verb="\*" path="version" type="Handler"/> </httpHandlers> <compilation debug="true"/> <httpRuntime/>
</system.web>
</configurationI get an error 500:23 "The application defines configuration in system.web.httpHandlers, migrate it to system.webServer. Of course I tried it but with no luck (configuration is invelid). Tried also moving entire config to system.webServer. What have I been missing?
Greetings - Jacek