跨服务器的 ASP.NET MVC 路由
我需要将 WCF 数据服务请求从一台服务器路由到另一台服务器。 是否可以使用 ASP.NET MVC 路由模块跨服务器路由请求? 有哪些选项可用于跨服务器路由 WCF 数据服务请求?
I need to route WCF data services request from one server to another server.
Is it possible to route a request across servers using ASP.NET MVC routing module?
What are the options available for routing WCF data services request across servers?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是 ASP.NET 路由模块的情况。路由模块仅将请求路由到同一 Web 应用程序中的处理程序。那不是真正的请求路由器。
您正在寻找的内容通常在网络级别执行,称为反向代理。 MS 世界中更强大的反向代理的示例是 ISA 服务器。
如果您没有这样的服务器可用(那么问题是为什么您需要这个?)使用路由模块将只允许您将请求路由到当前应用程序中的某个处理程序。您必须实现该处理程序,以便它接受传入请求并使用 WebClient 调用实际服务并返回响应。
编辑:
另请检查ServerFault 上的此答案。它描述了允许反向代理功能的 IIS 的一些模块。
That is not scenario for ASP.NET routing module. Routing module only routes request to handler within same web application. That is not real request router.
What you are looking for is usually performed on network level and it is called reverse proxy. Example of more powerful reverse proxy from MS world is ISA server.
If you don't have such server available (then the question is why do you need this?) using routing module will only allow you to route request to some handler within current application. You will have to implement that handler so that it takes incoming request and uses
WebClient
to call the real service and return a response.Edit:
Check also this answer on ServerFault. It describes some modules for IIS allowing functionality of reverse proxy.