Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does the ASP.NET development server keep its logs?

I am trying to sort out a problem where some relative urls are not resolving properly in an ASP.NET website. I want to see the HTTP logs to determine which URLs are being requested from the web server. I am using the ASP.NET Development Server, not IIS.

So are there logs produced by the ASP.NET Development Server where I can check which files are being requested?

Windows 7, 64bit
VS2008
ASP.NET 3.5 SP1

like image 457
David Avatar asked Jan 19 '11 02:01

David


1 Answers

If you are willing to replace the basic ASP.NET development server that comes with Visual Studio...

CassiniDev includes a real-time request/response viewer and logging facility. As I understand it you can drop it in as a replacement web server very easily.

CassiniDev Log Viewer

CassiniDev seems to do exactly what you need. If you absolutely cannot use IIS for your site this may be the only other option in terms of being able to generate a request log.

like image 174
Saul Dolgin Avatar answered Oct 23 '22 11:10

Saul Dolgin