Я пытаюсь отправить некоторые данные с клиента на сервер, используя функцию потоковой передачи в WCF.Я могу прочитать поток, возвращенный с сервера без проблем.Однако наоборот не работает.
Попытка оберточного потока в классе, украшенном MessageContract, безуспешна.
Конфигурация клиента:
<bindings>
<netTcpBinding>
<binding name="streamingBinding" transferMode="Streamed"
maxReceivedMessageSize="5000000000">
<security mode="None" />
</binding>
</netTcpBinding>
</bindings>
Конфигурация сервера:
<bindings>
<netTcpBinding>
<binding name="streamingBinding" transferMode="Streamed"
maxReceivedMessageSize="5000000000">
<security mode="None" />
</binding>
</netTcpBinding>
</bindings>
...
<service behaviorConfiguration="WcfSvc.WcfServiceBehavior"
name="Shared.StreamingService">
<endpoint address="" binding="netTcpBinding"
bindingConfiguration="streamingBinding"
contract="Shared.IStreamingService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexTcpBinding"
bindingConfiguration=""
contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="net.tcp://localhost:8733/StreamingTest/" />
</baseAddresses>
</host>
</service>
Хост-приложение:
private static IStreamingService _service;
private static ServiceHost _serviceHost;
static void Main()
{
_service = new StreamingService();
_serviceHost = new ServiceHost(_service);
_serviceHost.Open();
Console.WriteLine("Press enter to read data");
Console.ReadLine();
var stream = _service.GetData();
var file = File.Create(@"PATH TO NON EXISTING FILE");
stream.CopyTo(file);
file.Close();
Console.WriteLine("Press enter to close host");
Console.ReadLine();
_serviceHost.Close();
}
Клиентское приложение:
private const string EndpointAddress = "net.tcp://localhost:8733/StreamingTest/";
private const string TcpBindingConfigName = "streamingBinding";
private static WcfChannelFactory<IStreamingService> _factory = new WcfChannelFactory<IStreamingService>();
private static IStreamingService _service;
private static ICommunicationObject _communicationObject;
static void Main()
{
Console.WriteLine("Press enter to connect");
Console.ReadLine();
(_service, _communicationObject) = _factory.OpenAsync(EndpointAddress, TcpBindingConfigName).Result;
var s = File.OpenRead(@"PATH TO EXISTING FILE");
_service.SetData(s);
Console.WriteLine("Press enter to disconnect");
Console.ReadLine();
_communicationObject.Close();
}
Служба:
[ServiceContract(SessionMode = SessionMode.NotAllowed)]
public interface IStreamingService
{
[OperationContract]
void SetData(Stream data);
[OperationContract]
Stream GetData();
}
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)]
public class StreamingService : IStreamingService
{
private Stream _data;
public void SetData(Stream data)
{
_data = data;
}
public Stream GetData()
{
return _data;
}
}
Реализация фабрики каналов:
public class WcfChannelFactory<TService>
{
private ChannelFactory<TService> _channelFactory;
public async Task<(TService, ICommunicationObject)> OpenAsync(string endpointAddress, string tcpBindingConfigName)
{
var tcpBinding = new NetTcpBinding(tcpBindingConfigName);
_channelFactory = new ChannelFactory<TService>(tcpBinding);
await Task.Factory.FromAsync(_channelFactory.BeginOpen, _channelFactory.EndOpen, null);
var wcf = _channelFactory.CreateChannel(new EndpointAddress(endpointAddress));
return (wcf, wcf as ICommunicationObject);
}
public void Close()
{
_channelFactory?.Close();
_channelFactory = null;
}
}
Пожалуйста, заполните имена файлов в строках, где создаются файловые потоки.
После запуска хоста и клиента, нажмите ввод в окне клиента, а затем в окне хоста выдается исключение:
System.ObjectDisposedException: не удается получить доступ к закрытому потоку.(в строке stream.CopyTo (file); в хост-приложении)
Обратный сценарий работает отлично (отправка файла с сервера на клиент)