Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF Authentication

Is there some sort of "built-in" authentication in WCF? I need to expose a web service to our clients so they can check status of their transactions.

My initial thought was they would just use their normal Username and Password passed in as method properties. It would be over SSL, of course, but is this method of authentication not secure?

Does WCF have some better way of allowing authentication with the request other than passing through method parameters?

like image 364
RichC Avatar asked Jan 26 '09 23:01

RichC


People also ask

How do I authenticate WCF?

To make authentication of WCF service more secure use server certificate for authentication. If certificate is available include it in WCF server otherwise we can also create self-signed certificate from IIS.

Is WCF secure?

By default, anyone on the same Windows domain can access WCF services. Because those users have logged on to the network, they are trusted. The messages between a service and a client are encrypted for confidentiality and signed for integrity.


1 Answers

check these pages:

Pedram Razei's Ramblings

Microsoft Howto

like image 123
Ric Tokyo Avatar answered Oct 06 '22 08:10

Ric Tokyo