freb

How can I consume IIS7's FREB programatically

IIS 7 has a very useful feature called Failed Request Tracing (FREB for short). It has a very nice visualization feature, involving an extremely complex XSL stylsheet that parses the results into a useful treeview. I, however, want to consume FREB programatically, and be able to present the results on my smart client (without waiting fo...

Getting Trace messages into Failed Request Tracing from Controllers

On ASP.NET MVC Preview 5, we're having trouble getting any trace messages from Global or Controllers to appear in either a page (View) or Failed Request Tracing (FREB). Neither of these calls work in a Controller Action: HttpContext.Trace.Write("hello"); System.Diagnostics.Trace.WriteLine("world"); There are no issues with trace stat...