Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

looking for WCF basicHttpBinding https tutorial or samples [closed]

Tags:

c#

.net

https

wcf

I am using VSTS 2008 + .Net 3.5 + C# to develop a console application as a WCF cient, and host WCF service in IIS 7.0 at server side (server using Windows Vista x64).

Currently, my WCF client and server works quite well with http. Now I want to add https support and still use basicHttpBinding. Any easy to learn tutorials? I do not want to make too much modification to my WCF client/server and want to find a way which involves minimal code change. :-)

BTW: for IIS server certificate, I want client side to accept all server certificate. And I just use https encryption feature.

thanks in advance, George

like image 712
George2 Avatar asked Jan 23 '23 06:01

George2


1 Answers

See those excellent articles:

  • Fundamentals of WCF Security
  • p&p WCF Security Application Scenarios
  • MSDN Common Security Scenarios
  • WCF Security Part 3 of 10
  • WCF Security Guidance on Codeplex - basically covers everything there is, in great detail, sometimes almost a bit too much :-)

Marc

like image 135
marc_s Avatar answered Jan 28 '23 04:01

marc_s