发布 WCF 应用程序
我对 WCF 有点陌生。我在本地计算机上创建了一个 WCF 服务,它已发布到我的 C:\ 驱动器上的 inetpub 目录。
我应该让它在另一台机器上运行以进行问答。它正在运行 Win Server 2003,但我没有看到 inetpub 目录。我可以将 WCF 发布到这台计算机吗?或者我需要安装某种 Web 服务吗?
有一个“wmpub”目录,我应该在那里发布我的 WCF 吗?
感谢您的任何/所有帮助!
-杰森
I'm a little new to WCF. I've created a WCF service on my local machine, it's published to the inetpub directory on my C:\ drive.
I'm supposed to have it running on another machine for Q/A. It's running Win Server 2003, but I don't see an inetpub directory. Can I publish my WCF to this machine, or do I need to install some sort of web services?
There is a 'wmpub' directory, should I just publish my WCF there?
Thanks for any/all help!
-Jason
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的 Windows 似乎缺少 IIS。
请查看此处。
Your windows seems to be missing IIS.
Have a look here.
您可以选择放置它的位置,这是配置问题。
最好的选择是使用 WebDeploy 打包 WCF 服务,然后在目标服务器上运行该包。
这非常简单,您可以直接从 Visual Studio 2010 中构建部署包。请查看 http://www. iis.net/download/WebDeploy 了解更多信息。
You can choose where you put it, it's a matter of configuration.
Your best bet would be to package the WCF service with WebDeploy, then run that package on the target server.
It's very easy and you can build your deployment package straight from within Visual Studio 2010. Check out http://www.iis.net/download/WebDeploy for more.
您可以创建自托管服务或将其托管在IIS
You can either create a self hosted service or host it in IIS