IIS profiling won't serve up pages
I'm trying to profile an asp.net application. I'm running NCover like:
ncover.console //iis //w "C:\path_to_bin"
The program outputs that it is stopping and then starting the service [World Wide Web Publishing], followed by saying that it is waiting for me to load an ASP.NET page.
Now I try to open my website in a web browser, but it never opens -- the status bar text just indefinitely says that it is waiting on the page to load.
If I end NCover with CTRL+C and start my WWW service manually, I can then load the page just fine. What might be keeping it from serving the page while NCover is running? This is my first attempt at using NCover, btw.