开发者

WCF Authenticating clients within multiple services

开发者 https://www.devze.com 2022-12-19 09:27 出处:网络
I have multiple NET.TCP services that provide access to my apps bussiness logic layer. I want to authenticate clients with username & password, within all the services, from one dedicated authenti

I have multiple NET.TCP services that provide access to my apps bussiness logic layer. I want to authenticate clients with username & password, within all the services, from one dedicated authentication service.

I have thinked that I can generate a custom authentication ticket when the authentication service logons the user and send it to other services. However when talking about security I prefer to use builtin implementations that have been already tested.

Is there a more WCF way to do this? Should I ever try thi开发者_高级运维s, or share the authentication logic and authenticate every service?

Thanks in advance


Yes, the (new) WCF way to do this is to use a (or implement your own) security token service based on the windows identity foundation framework.

0

精彩评论

暂无评论...
验证码 换一张
取 消