0

I have a site I am configuring to support forms based authentication in SharePoint. I am stuck because I get a 401.5 error (unauthorized) when the login page is displayed.

Any tips for getting started in the debugging process?

I already know that 401.5 means an ISAPI Filter has told IIS the request is not authorized.

Jeff
  • 1,008
  • 1
  • 10
  • 14

2 Answers2

0

May be related to Wildcard Application Mapping, or non-standard Application Mapping.

Some good troubleshooting ideas here:

HOWTO: Diagnose 401.x HTTP errors on IIS

Brian Meinertz
  • 201
  • 1
  • 4
0

FYI, issue was caused by login page code behind and custom ASP.Net module that was trying to access SharePoint via SPContext.

Even though the code was using "RunElevatedPrivlage" the thread was not allowed to peak at the SharePoint data.

Jeff
  • 1,008
  • 1
  • 10
  • 14