Ok, so here are my findings. I was able to get almost everything working based on this discussion http://markmail.org/message/jbxekauw...+state:results
The trick was mapping all the modules in the web.config
Code:
<add verb="GET,HEAD,POST" path="elmah.axd/detail" type="Elmah.ErrorDetailPage,
Elmah" />
<add verb="GET,HEAD,POST" path="elmah.axd/html" type="Elmah.ErrorHtmlPage,
Elmah" />
<add verb="GET,HEAD,POST" path="elmah.axd/rss" type="Elmah.ErrorRssHandler,
Elmah" />
<add verb="GET,HEAD,POST" path="elmah.axd/digestrss"
type="Elmah.ErrorDigestRssHandler, Elmah" />
<add verb="GET,HEAD,POST" path="elmah.axd/xml" type="Elmah.ErrorXmlHandler,
Elmah" />
<add verb="GET,HEAD,POST" path="elmah.axd/download"
type="Elmah.ErrorLogDownloadHandler, Elmah" />
<add verb="GET,HEAD,POST" path="elmah.axd/about" type="Elmah.AboutPage, Elmah"
/>
The only thing that did not work was the style sheet ... not quite sure why.
Also, this was all locally ... once I moved it to my testing server it would no longer log any errors. Have not figured that out yet.