WCF 服务中的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它在 \Bin 目录中的程序集中查找该类。
It looks for the class in an assembly in the \Bin directory.