Supported Bindings for WCF Streaming

I used basicHttpBinding for streaming, When I change the binding to netTcpBinding the Service starts throwing an exception ... Please help me figure out how to quickly communicate with the transmission streams ...
Thanks a lot !

+1


source to share


1 answer


Some good file transfer links can help you figure out what's going on:



... you can only use transport layer security settings for streaming, and you cannot enable trusted sessions. Streaming is only available with the following system bindings:

  • BasicHttpBinding
  • NetTcpBinding
  • NetNamedPipeBinding
  • WebHttpBinding
+3


source







All Articles