Hi, I'm building a self-hosting WCF service, which exposes 2 end-points for each service
- SOAP
- REST
the SOAP uses WS-* SOAP authentication (authentication header) How can i go about implementing REST authentication?
I thought about some sort of login method which will return a cookie of some sort, but i cant think of how to make this transperent to all of my other calls..
thanks.