建议在哪里安装 WCF Web 服务?
我知道您可以将其安装在任何物理位置并将 IIS 应用程序指向该服务。我找不到的是最常见的安装服务本身的地方。是 Program Files、InetPub、不同位置还是您想要的任何地方都没关系。
I know you can install it anywhere physically and point the IIS applcation to the service. What I can't find out is where it is most common to install the service itself. Is it Program Files, InetPub, different location, or anywhere you want it doesn't matter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
老实说,这真的不重要。
如果您是自托管,那么您只需在安装应用程序的任何位置安装这些 WCF 服务 - 任何目录都可以(通常位于
c:\program files\(yourcompany)\(yourproduct)
或某物)。在 IIS 中托管时:如果它们是包含其他部分(例如 ASP.NET、Winforms、WPF 等)的应用程序的一部分,我可能会将它们放入应用程序下的
Services
子目录中。 ,并在磁盘上的该目录上创建一个虚拟目录。It really doesn't matter, quite honestly.
If you're self-hosting, then you just install those WCF services wherever you install your app - any directory will be fine (typically under
c:\program files\(yourcompany)\(yourproduct)
or something).When hosting in IIS: I would probably put them into e.g. a
Services
subdirectory under your app, if they're part of an app that contains other parts (e.g. ASP.NET, Winforms, WPF etc.), and create a virtual directory on that directory on disk.