如何将多个MVC.net应用程序与其他MVC.net应用程序连接?

时间:2017-02-01 08:55:08

标签: c# asp.net asp.net-mvc asp.net-mvc-4 asp.net-routing

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

Example enter image description here

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

因此,当用户请求MainServer.com

MainServer将引导用户进行以下操作:
    S1.MainServer.com
    S2.MainServer.com
    S3.MainServer.com

注意S1,S2和S3在物理上是相互分离的。

1 个答案:

答案 0 :(得分:0)

试试这个:

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();
}