2011-11-02 1 views
1

표준 방법의 Web.config에 안전한 엔드 포인트와 WCF RIA 서비스를 구성다음과 같이 설정합니다 EnableClientAccessAttribute에 진정한 RequiresSecureEndpoint = 인 보안 진 엔드 포인트 (SSL)와 WCF 리아 서비스를 구성 할 수

[RequiresAuthentication] 
[EnableClientAccess(RequiresSecureEndpoint = true)] 
public class Module1DomainService : LinqToEntitiesDomainService<AdventureWorksDataModel> 
{ 
     . 
     . 
     . 
} 

web.config 파일에 RequiresSecureEndpoint = true 옵션을 설정할 수 있는지 또는 WCF RIA 서비스를 보안 끝점 (SSL)으로 제한하는 동일한 방법이 있는지 알아야합니다.

답변