Hi,
I currently have a WCF service which is accessed through basicHttpBinding, now I need to allow have one section of the web application work with https as the data coming in will be secure. Do I need to create an entirely new WCF service, or can the existing
one just have another endpoint added which will https rather and http?
pdassnyc
Member
221 Points
228 Posts
can a WCF service be both http and https?
Nov 09, 2012 02:21 PM|LINK
Hi,
I currently have a WCF service which is accessed through basicHttpBinding, now I need to allow have one section of the web application work with https as the data coming in will be secure. Do I need to create an entirely new WCF service, or can the existing one just have another endpoint added which will https rather and http?
Thanks.
anil.india
Contributor
2613 Points
453 Posts
Re: can a WCF service be both http and https?
Nov 09, 2012 04:00 PM|LINK
ys bt endpoint would be differ
plz note that if anything you change in Address, Binding or Contract, Endpoint get changed. ( A+B+c => E )
For more info, refer -
http://social.msdn.microsoft.com/Forums/en-US/wcf/thread/871b18b2-53fa-42c4-938e-6a6db9fe3dc5
http://msdn.microsoft.com/en-us/library/ms733768.aspx
http://jayakrishnagudla.blogspot.in/2009/12/configuring-wcf-services-to-work-with.html
http://stackoverflow.com/questions/4346926/how-can-i-combine-the-wcf-services-config-for-both-http-and-https-in-one-web-con
codepattern.net/blog ||@AnilAwadh
pdassnyc
Member
221 Points
228 Posts
Re: can a WCF service be both http and https?
Nov 09, 2012 04:07 PM|LINK
thanks, i'll start looking into those links.