Почему wsHttpBinding не поддерживает потоковую передачу?
РЕДАКТИРОВАТЬ: Чтобы проверить мой комментарий о netTcpBinding, я попытался следующий код, который дает ошибку во время выполнения:
<netTcpBinding >
<binding name="myBinding" transferMode="Streamed">
<reliableSession enabled="true"/>
</binding>
</netTcpBinding>
Исключение во время выполнения:
Unhandled Exception: System.InvalidOperationException: Transfer mode Streamed is
not supported by ReliableSessionBindingElement.
at System.ServiceModel.Channels.ReliableSessionBindingElement.VerifyTransport
Mode(BindingContext context)
если <reliableSession enabled="true"/>
удален, код работает.