使用 web.config 配置 wcf webapi

发布于 2024-12-11 23:48:40 字数 340 浏览 3 评论 0原文

我当前正在配置现有的 WCF SOAP Web 服务以使用 WebApi 进行访问

我已添加 WebApi 属性,并将以下代码添加到 global.asax 中:

  RouteTable.Routes.SetDefaultHttpConfiguration(new WebApiConfiguration() { EnableTestClient = true });
  RouteTable.Routes.MapServiceRoute<Contacts>("api/contacts/");

是否可以使用 web.config 而不是这些行来配置 webapi?

I'm currently configuring an existing WCF SOAP webservice to be accessible using WebApi

I have added the WebApi attributes, and the following code into global.asax:

  RouteTable.Routes.SetDefaultHttpConfiguration(new WebApiConfiguration() { EnableTestClient = true });
  RouteTable.Routes.MapServiceRoute<Contacts>("api/contacts/");

Is it possible to configure webapi using the web.config instead of these lines?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

許願樹丅啲祈禱 2024-12-18 23:48:40

这是不可能的,但是使用 WCF 内置的可扩展性点也不是不可能实现。

This is not possible out of the box, however it's not impossible to achieve using the extensability points built into WCF.

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