G
Guest
Hi
I have an application running on two different web servers (as a backup of
each other but not in cluster mode) with SSL enable. The DNS will serve the
web servers in a round robin fashion, say I will have www.<a_domain>.com
point to www1.<a_domain>.com and www2.<a_domain>.com. I am thinking to use
an application level variable on each server to remember which web server
was last served and then the next one will be served, ie.
if (application.Get(lastServer).ToString() = "www1.<a_domain>.com")
response.redirect(https://www2.<a_domain>.com/main.aspx);
Should I do somethind like this? Is there any issue / problem you see?
TIA
--
I have an application running on two different web servers (as a backup of
each other but not in cluster mode) with SSL enable. The DNS will serve the
web servers in a round robin fashion, say I will have www.<a_domain>.com
point to www1.<a_domain>.com and www2.<a_domain>.com. I am thinking to use
an application level variable on each server to remember which web server
was last served and then the next one will be served, ie.
if (application.Get(lastServer).ToString() = "www1.<a_domain>.com")
response.redirect(https://www2.<a_domain>.com/main.aspx);
Should I do somethind like this? Is there any issue / problem you see?
TIA
--