Posts

Showing posts with the label UrlRewritingNet

Using UrlRewritingNet and Elmah together

  UrlRewritingNet is an Url rewriting tool for ASP .Net and Elmah is a module for logging unhandled errors.   UrlRewritingNet can set a default location for “directory” requests via defaultPage property in <urlrewritingnet> section. When a file without extension is requested the defaultPage value is appended to the original URL.    Elmah provides a handler for getting the errors summary, usually called elmah.axd. This handler also responds to the followings requests:    /elmah.axd/rss – RSS errors list feed  /elmah.axd/digestrss – RSS digest  /elmah.axd/download –  comma separated errors list /elmah.axd/about – about page  /elmah.axd/stylesheet – the stylesheet used /elmah.axd/detail?id=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX – html single error summary  /elmah.axd/xml?id=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX – xml single  error summary /elmah.axd/json?id=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX – json single error summary    These requests are like a request for a file with...