跨服务器的 ASP.NET MVC 路由

发布于 2024-11-17 04:12:54 字数 98 浏览 3 评论 0原文

我需要将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吖咩 2024-11-24 04:12:54

这不是 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文