What is the script to make wsHttpBinding an alternative to netTcpBinding

We are using netTcpBinding in asp.net webforms intranet application.

The client machines are running activeX (winforms), which retrieves its data via wcf.

The ActiveX container is inside an asp.net application.

What's the use / benefit of using wsHttpBinding over netTcpBinding?

+3


source to share


1 answer


The main benefit of using wsHttpBinding is that you can embed your WCF server in IIS and then use IIS to encrypt the transmission between the client and server. It also avoids firewall issues and uses port 80 to communicate with the server.



+2


source







All Articles