Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

wsHttpsBinding Vs wsHttpBinding

I have often come across wsHttpBinding when writing code for WCF projects. However, I have never used wsHttpsBinding.

Question: Does wsHttpsBinding even exist in WCF or its a custom binding? If it exists, then why would a developer use wsHttpsBinding rather than wsHttpBinding?

like image 553
Sunil Avatar asked Nov 09 '22 09:11

Sunil


1 Answers

WsHttpBinding also supports interoperability. With this binding, the SOAP message is, by default, encrypted. It supports HTTP and HTTPS. In terms of encoding, it provides support for Text as well as MTOM encoding methods. It supports WS-* standards like WS-Addressing, WS-Security and WS-ReliableMessaging. By default, reliable sessions are disabled because it can cause a bit of performance overhead. http://www.codeproject.com/Articles/431291/WCF-Services-Choosing-the-appropriate-WCF-binding

like image 173
Lalit Raghav Avatar answered Nov 15 '22 06:11

Lalit Raghav