Authentication between Silverlight and WCF WITHOUT ASP.Net Auth

Does anyone know any recommendations or “standard” methods for implementing authentication between the silverlight client and WCF services WITHOUT using RIA services or ASP.Net authentication and cookies.

My best option is to add additional message headers to each call and authenticate the user with each call. Any other ideas?

+3
source share
3 answers

You can use username / credentials via HTTPS from SL3: http://msdn.microsoft.com/en-us/library/dd833059(VS.95).aspx

+2
source

. , , - , - amazon Ebay, , , HMAC ( Hash Message)

+1

You need to send information with each call.

However, you must ensure that this information cannot be read, for example, using SSL.

0
source

Source: https://habr.com/ru/post/1716204/


All Articles