我可以在 IIS 的同一网站上同时托管 Web 服务和 WCF 服务吗?
我目前有一个网站,我在其中托管具有多个 Web 方法的 Web 服务,我需要添加一些新的 Web 方法,但我想迁移到 WCF 服务模型而不是继续使用 asmx。我希望能够在与 asmx 相同的 IIS 6 网站中托管 WCF 服务 - 这是否可能,如果可以,是否有任何问题?
I currently have a website where I'm hosting a webservice with several web methods, I need to add some new web methods, but I want to move to the WCF services model rather than continue with asmx. I want to be able to host the WCF service in the same IIS 6 website as the asmx is - is this possible and if so are there any gotchas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将 WCF 服务托管在包含 ASMX 服务的虚拟目录下。您必须使新的虚拟目录成为一个应用程序,以便它可以拥有自己的 bin 文件夹。
顺便说一句,您可以区分“Web 服务”和“WCF 服务”。这是一种错误的区分。 WCF 是传统 ASMX 技术的替代品,并且可以执行像 ASMX 服务这样的普通 SOAP,或者几乎任何其他操作。
You could host the WCF service in a virtual directory under the one holding the ASMX service. You will have to make the new virtual directory be an application, so it can have its own bin folder.
BTW, you distinguish "web services" from "WCF services". This is a false distinction. WCF is the replacement for the legacy ASMX technology, and can do both plain SOAP like ASMX services, or just about anything else.