up vote 0 down vote favorite
share [g+] share [fb]

I am trying to create a custom error handler in iis 7.

web.config httpErrors section:

<httpErrors>
    <remove statusCode="404" subStatusCode="-1" />
    <error statusCode="404" prefixLanguageFilePath="" path="/path/to/handlerwebservice" responseMode="ExecuteURL" />
</httpErrors>

web.config httpHandler to handle error:

<add path="*/path/to/handlerwebservice"          verb="GET,HEAD"     type="WebServices.Image404Handler, WebServices"          validate="false" />

Image404Handler c# code:

public void ProcessRequest(HttpContext context)
{
    string requestpath;
    if (context.Request.QueryString.AllKeys.Contains("aspxerrorpath"))
    {
        requestpath = context.Request.QueryString["aspxerrorpath"];
    }
    else
    {
        requestpath = context.Request.Path;
    }

    // more code not really relevant here
}

I can't figure out how to get the path of the request that caused the 404 error to trigger. In IIS 6, that Visual Studio 2008 uses this path is added to aspxerrorpath in the querystring.

I can't get remote debugging to work so I am asking here if someone knows what to do.

link|improve this question
if(String.IsNullOrEmpty(Request["aspxerrorpath"]) ... – abatishchev Sep 9 '09 at 1:00
feedback

1 Answer

up vote 2 down vote accepted

I found an answer myself.

Use HttpСontext.Request.RawUrl instead of HttpСontext.Request.Path

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.