1

I am suddenly getting a Windows Security dialog when requesting:

http://mydomain/Reports/

This happens after I have moved an ASP.NET MVC application from Server 2008 to Server 2008 R2.

This page (like others) are access controlled using Windows Form authentication. The other pages work correctly, just this page is giving me hassles - and only on this server.

Even signing in with my domain credentials fails; after the third failed login a blank page appears.

I have disabled Windows Authentication in IIS and enable Form Authentication.

The request executes:

    public ActionResult Index()
    {
        return View();
    }

The index.aspx page associated to his page contains static HTML.

Any ideas what might be causing this?

Update to comments and questions:

  • Site (mydomain) is running as a web site on its own.
  • SSRS is installed on the machine but not part of this web site.
  • Changing the controller name to ReportController instead of ReportsController causes it to work. Something is processing Reports first, where can I find it? I don't see any Reports folder or web sites on the server...
2
  • Are you running in a virtual or separate website? You could verify that there isn't a folder in the webroot called Reports, b/c I believe that IIS will resolve to hard locations before routes. Commented Nov 21, 2009 at 17:49
  • @Josh, no Reports folder in the webroot. Commented Nov 22, 2009 at 7:12

2 Answers 2

3

When upgrading sql server, often it adds a virtual directory or virtual application in iis called Reports and ReportManager. Just went through this, so it's worth checking out.

Sign up to request clarification or add additional context in comments.

1 Comment

I was scratching my head for the past hour figuring this one out, well spotted !
0

Check the permissions on the folder or file, they are probably not set correctly so IIS is trying to get a valid set of credentials to continue.

Also, is that Reports folder running, say, SSRS?

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.