我是 Silverlight 的新手,我有一个一般性问题。我创建了一个新的 silverlight 项目,并向其中添加了“silverlight 启用的 wcf 服务”。我在 silverlight 项目中创建了服务代理,并且能够毫无错误地访问 .svc 文件。
我的问题是,这是一种什么样的服务架构??它没有出现在 IIS 中,因此它没有托管在 IIS 中,也不是基于 Windows 的自托管服务。这是如何工作的?
与“自托管 wcf 服务”或“IIS 托管 wcf 服务”相比,这是否有限制?
提前致谢!
以下是我的服务端点配置:
<endpoint address="https://localhost/SilverBadger.Web/Services/DataAccessService.svc"
binding="customBinding"
bindingConfiguration="CustomBinding_DataAccessService"
contract="DataAccessService.DataAccessService"
name="CustomBinding_DataAccessService" />