I have search and tried a lot of articles but still can't solve this problem. I have this code inside Global.asax file:
LogInClient("username", "password");
Because of updates happened in Windows Azure, all of my service (REST) can't be found (but this is another story). The web displays a Bad request error. What I want to happen is this, for any kind of error the site will edirect to the error page.
But I'm always redirected to this
http://127.0.0.1:81/Error?aspxerrorpath=/
https://127.0.0.1/Error?aspxerrorpath=/
I'm running my Asp.Net MVC project through Cloud project.
This is what I have done so far:

Web.Config
<customErrors mode="On" defaultRedirect="Error"/>
Global.asax file
public static void RegisterGlobalFilters(GlobalFilterCollection filters)
{
filters.Add(new HandleErrorAttribute());
}
I'm lost here. Please help.
