如何使用FormsAuthentication
概念來保護我的簡單WCF
服務?WCF的表單身份驗證
的ServiceContract
類似於這樣:
[ServiceContract]
public interface MovieDb
{
[OperationContract]
string GetData(int value);
[OperationContract]
string Login(int value);
[OperationContract]
string Logout(int value);
}
我在身份驗證和授權MVC 4應用程序使用FormsAuthentication
。
我能想到的就像在ServiceContract
類的頂部添加Authorize
過濾器屬性。
任何在簡單的指針非常讚賞的指針。謝謝。