WCF 服务中的 .SVC 文件如何工作?

发布于 2024-12-29 11:19:09 字数 459 浏览 2 评论 0原文

可能的重复:
WCF 服务IIS页面中的部署无法显示以及SVC文件如何工作?

典型的 WCF SVC 文件将具有以下内容;

<%@ ServiceHost Service="AMWCF.Service1" %>

SVC 文件没有告知 WCF 服务 dll 文件的位置。

那么,当有人在 HTTP 中打开这个 SVC 文件链接时(假设该服务托管在 IIS 中),该链接如何知道从哪里获取 dll 文件呢?

Possible Duplicate:
WCF Service Deployment in IIS Page cannot be displayed and how does the SVC file work?

A Typical WCF SVC file will have the following;

<%@ ServiceHost Service="AMWCF.Service1" %>

The SVC file informs nothing on the location of the WCF Service dll file.

So when someone opens this SVC file link in HTTP (provided the Service is hosted in IIS), how does the link know where to get the dll file?

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

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

发布评论

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

评论(1

甜妞爱困 2025-01-05 11:19:09

它在 \Bin 目录中的程序集中查找该类。

It looks for the class in an assembly in the \Bin directory.

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