Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Implementing a single sign on for a set of WCF services

I'm developing a set of WCF services that theoretically can be used stand-alone, but in practice have some sort of a client that usually makes multiple calls over the services in a single session.

Our backend authentication mechanism is quite heavy and requires calls to another authentication provider service.

However, I would like to avoid the overhead of doing the authentication on every invocation of a service.

looking for patterns /architectural guidance around this.

Thanks !

like image 963
Abhinav Gujjar Avatar asked Nov 25 '10 07:11

Abhinav Gujjar


1 Answers

read following link http://social.msdn.microsoft.com/Forums/en/wcf/thread/ad610761-e398-4d62-90de-53578636b002

WCF - SSO authentication token and POX interfaces

http://weblogs.asp.net/cibrax/archive/2006/03/14/implementing-a-secure-token-service-with-wcf.aspx

like image 166
Singleton Avatar answered Oct 03 '22 04:10

Singleton