vote up 0 vote down star

Take a new MVC App, then code:

routes.MapRoute("a", "a/{id}", new {controller = "Home", action = "A"});
public ActionResult A(string id)
{
    return Content(id);
}

Going to http://localhost/a/sdfdgh results in:

HTTP Error 500.19 - Internal Server Error The requested page cannot be accessed because the related configuration data for the page is invalid.

Module IIS Web Core

Notification BeginRequest

Handler Not yet determined

Error Code 0x80070002

Config Error Unrecognized configuration path 'MACHINE/WEBROOT/APPHOST/abc/a/sdfdgh'

Requested URL http://localhost:80/a/sdfdgh

Physical Path C:\abc\a\sdfdgh

Logon Method Not yet determined

Logon User Not yet determined


i have no idea why!

flag

48% accept rate
Is the path 'MACHINE/WEBROOT/APPHOST/abc/a/sdfdgh' valid? – Robert Harvey Jun 27 at 16:22
the path does not exists on disk, of course. the prefix MACHINE/WEBROOT/APPHOST/ seems to be added by iis. it must be some kind of implementation detail. this is probably not the problem. – usr Jun 27 at 19:38

1 Answer

vote up 0 vote down

Not sure if it will help, but have your read this tutorial?

link|flag
it does not help. – usr Jun 27 at 15:43

Your Answer

Get an OpenID
or

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