Pascal
Pascal

Reputation: 12875

What is the scenario to make wsHttpBinding an alternative for netTcpBinding

We use netTcpBinding in an asp.net webforms intranet application.

On the client machines we have activeX (winforms) running which retrieves its data via wcf.

The activeX container is inside the asp.net application.

What advantage/benefit do we have from using wsHttpBinding over netTcpBinding?

Upvotes: 3

Views: 602

Answers (1)

Steve Wranovsky
Steve Wranovsky

Reputation: 5723

The primary benefit of using wsHttpBinding would be that you could embed your WCF server within IIS, and then use IIS to encrypt the transmission between the client and server. It also allows you to avoid firewall issues and use port 80 for the communications with the server.

Upvotes: 2

Related Questions