是否可以使用与其他MVC.net应用程序通信的ASP.NET MVC服务器? (示例显示在图像链接中)
客户端首先与主服务器通信。主服务器将其请求重定向到其他服务器之一。客户端无法直接与其他服务器通信。它应该始终通过主服务器。
因此,当用户请求MainServer.com
时 MainServer将引导用户进行以下操作:
S1.MainServer.com
S2.MainServer.com
S3.MainServer.com
注意S1,S2和S3在物理上是相互分离的。
答案 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();
}