tags:

views:

392

answers:

1

How to create Net.TCP WCF binding for\using SOAP 1.1? Is it posible?

If yes. What do I need?

  • MSDN if there is any help on this.
  • Open Source Libs/wrappers.
  • Tutorials and blog articles on How to do it.


If no: I need know where did you get the information from (link to MSDN or other official WCF information resource).

A: 
  • SOAP is an XML format.
  • Net tcpbinding is a binary format.

They are two different things.

What you can do is to expose a service with 2 endpoints, one SOAP and one binary.

Shiraz Bhaiji