I am trying to host the Northwind data service on my local server directly from Visual Studio 2008 but I get an error message when I try to access the service.
HTTP Error 404.3 - Not Found
The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map.
The IIS manager did not have a handler for *.svc. So I added a script handler to handle *.svc with aspnet_isapi.dll and I got a new error.
The requested content appears to be script and will not be served by the static file handler.
Can someone point me to some resources which can solve this issue?
Thanks!