Arsen Mkrtchyan
Arsen Mkrtchyan

Reputation: 50732

Supported bindings for WCF streaming transfers

I was using basicHttpBinding for streaming transfer, When I change binding to netTcpBinding , Service start to throw exception... Please help me to understand the fastest binding to transfer streams...
Thanks a lot!

Upvotes: 0

Views: 3504

Answers (1)

Tanner
Tanner

Reputation: 22743

Some good links for file transferring, might help you get to the bottom of what's going on:

...you can use only transport-level security options for streaming and you cannot turn on reliable sessions. Streaming is only available with the following system-defined bindings:

  • BasicHttpBinding
  • NetTcpBinding
  • NetNamedPipeBinding
  • WebHttpBinding

Upvotes: 2

Related Questions