1

I am trying to set up NET.TCP bindings for a WCF application deployed on IIS. I have already added net.tcp to Enabled Protocols of application, but when I am trying to add net.tcp binding, its throwing the error shown below:

enter image description here

I have also activated the Windows Communication Foundation Non-HTTP Activation. NET.TCP services are also running.

Thanks in advance

Scorpion
  • 149
  • 2
  • 11

1 Answers1

2

you can setup by command prompt

appcmd.exe set site "Default Web Site" –+bindings.[protocol='net.tcp',bindingInformation='808:*']

Jocinei
  • 36
  • 2
  • to be more precise: the actual command for me was `appcmd.exe set site /site.name "Default Web Site" /+bindings.[protocol='net.tcp',bindingInformation='808:*']` to add the binding – spankmaster79 Jul 22 '16 at 11:56