Hello,
In our CMS solution we have a module that is handling integration towards an AD, the module uses a standard connection string in web.config. The customer has a setup of two AD-servers and routinely takes them down for maintenance one at a time. Unfortunately the AD-module only allows connection towards one AD-server and when that server goes down so does the website.
As I see it there are three ways of fixing this:
- Make the vendor of the AD-module rewrite the code to utilize several AD-servers.
- Install a local AD-server on the web server that is replicated from the other two.
- Make a solution that acts as a front for the AD-servers, all ways connecting to one that is running.
I have exhausted options one and two for different reasons and now I only have number three left.
Any ideas?