WCF 是否需要单独托管
我将 WCF 与 asp.net 4.0 一起使用(使用动态数据)。 我需要告诉我的客户他需要预订多少个域名。那么,我是否需要一个单独的 WCF 域/子域,或者只需要 1 个网站域,WCF 就可以工作。 仅供参考:我们可能会在 GoDaddy.com 等共享托管服务器上获取托管空间。我需要计算应用程序的托管成本。
谢谢
I am using WCF with asp.net 4.0 (using Dynamic Data).
I need to tell my Client how many domains does he require to book. So, do i require a separate domain/sub-domain for WCF or just 1 domain for website and WCF would work.
FYI: We might acquire a hosting space at shared hosting servers like GoDaddy.com. I need to calculate the hosting cost of the application.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 IIS 中托管 WCF,也可以将其托管在单独的程序/服务中。如果您将其托管在 IIS 中,则可以创建一个
.svc
文件并将其与其他 ASP.NET 页面一起放置。因此,完全有可能让 WCF 服务与 ASP.NET 应用程序位于同一域中。
You can host WCF in IIS, or you can host it in a separate program/service. If you're hosting it in IIS, you can create a
.svc
file and have it live alongside your other ASP.NET pages.So it's entirely possible to have your WCF service live in the same domain as your ASP.NET app.