1
的標準方法來配置WCF RIA服務與安全二進制端點(SSL)是設置RequiresSecureEndpoint =在EnableClientAccessAttribute真,如下所示:web.config中與安全端點配置WCF RIA服務
[RequiresAuthentication]
[EnableClientAccess(RequiresSecureEndpoint = true)]
public class Module1DomainService : LinqToEntitiesDomainService<AdventureWorksDataModel>
{
.
.
.
}
我需要知道是否可以在web.config文件中設置RequiresSecureEndpoint = true選項,或者是否存在將WCF RIA服務限制爲只有安全端點(SSL)的等效方法。