使用安全二进制端点(SSL)配置WCF Ria服务的标准方法是在EnableClientAccessAttribute上设置RequiresSecureEndpoint = true,如下所示:
[RequiresAuthentication]
[EnableClientAccess(RequiresSecureEndpoint = true)]
public class Module1DomainService : LinqToEntitiesDomainService<AdventureWorksDataModel>
{
.
.
.
}
我需要知道是否可以在web.config文件中设置RequiresSecureEndpoint = true选项,或者是否存在将WCF RIA服务仅限制为安全端点(SSL)的等效方法。
答案 0 :(得分:1)
根据MSFT,无法通过web.config执行此操作,请参阅MSDN WCF Forum thread。
如果有兴趣将此功能添加到WCF RIA服务,请在suggestion上对此WCF RIA Services Forum进行投票。