Xander
Xander

Reputation: 9171

Forms authentication doesnt work when a fully qualified domain name is used

Forms authentication doesnt work when a fully qualified domain name is used

localhost works computername works computername.fullyqualify.com does not work. IP address works.

It ends up going in a loop between redirecting between the login and the main page.

It is almost as though the cookie is not being written.

Is there an IIS or active directory setting that I need to change here?

Upvotes: 1

Views: 442

Answers (1)

ukhardy
ukhardy

Reputation: 2104

It is DNS' job to resolve FQDNs to IPs. From IIS you specify what IP to use, from a pool of IPs assigned to your Web Server, with which site amongt many hosted on your Web Server.

Check if you have correct Canonical Name record (CNAME) entries in you AD for the desired IPs.

Also ensure that it's replicated to all DNS servers if you have load balancing in AD.

Upvotes: 1

Related Questions