是否有可能与其他MVC.net应用程序进行通信的ASP.NET MVC服务器? (示例显示在图像链接中)

Example
c# - 如何将多个MVC.net应用程序与其他MVC.net应用程序连接?-LMLPHP

客户端首先与主服务器通信。主服务器将其请求重定向到其他服务器之一。客户端无法直接与其他服务器通信。它应该始终通过主服务器。

因此,当用户请求MainServer.com时

MainServer会将用户定向到以下任一位置:
    S1.MainServer.com
    S2.MainServer.com
    S3.MainServer.com

注意S1,S2和S3在物理上彼此分开。

最佳答案

尝试这个:

public ActionResult Index()
{
    if (!S1.Server.IsBusy())
    {
        return new RedirectResult("http://S1.MainServer.com");
    }
    else if(!S2.Server.IsBusy())
    {
        return new RedirectResult("http://S2.MainServer.com");
    }
    else if (!S3.Server.IsBusy())
    {
        return new RedirectResult("http://S3.MainServer.com");
    }
    else return View();
}

关于c# - 如何将多个MVC.net应用程序与其他MVC.net应用程序连接?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41975521/

10-11 02:41