这是我申请中的一个严重问题,几个月来没有找到任何好的解决方案。我注意到 C# 管理 Stream 类在 WCF 中流式传输的方式,而不考虑我的配置。
首先,我有一个继承自 FileStream 的类,因此我可以随时查看从客户端读取了多少内容:
public class FileStreamWatching : FileStream
{
/// <summary>
/// how much was read until now
/// </summary>
public long _ReadUntilNow { get; private set; }
public FileStreamWatching(string Path, FileMode FileMode, FileAccess FileAccess)
: base(Path, FileMode, FileAccess)
{
this._ReadUntilNow = 0;
}
public override int Read(byte[] array, int offset, int count)
{
int ReturnV = base.Read(array, offset, count);
//int ReturnV = base.Read(array, offset, count);
if (ReturnV > 0)
{
_ReadUntilNow += ReturnV;
Console.WriteLine("Arr Lenght: " + array.Length);
Console.WriteLine("Read: " + ReturnV);
Console.WriteLine("****************************");
}
return ReturnV;
}
}
其次,下面是我读取包含文件的客户端流的服务方法。我的主要问题是 FileStreamWatching.Read 每次我从下面的这种方法召唤它时都不会启动,而是 FileStreamWatching.Read 每调用一次 X 次就启动一次。奇怪。
*稍后查看输出
public void Get_File_From_Client(Stream MyStream)
{
using (FileStream fs = new FileStream(@"C:\Upload\" + "Chat.rar", FileMode.Create))
{
byte[] buffer = new byte[1000];
int bytes = 0;
while ((bytes = MyStream.Read(buffer, 0, buffer.Length)) > 0)
{
fs.Write(buffer, 0, bytes);
fs.Flush();
}
}
}
这是每次激活 FileStreamWatching.Read 时客户端的输出:(请记住缓冲区长度仅为 1000!)
Arr 长度:256,阅读:256
Arr 长度:4096,阅读:4096
Arr 长度:65536,阅读:65536
Arr 长度:65536,阅读:65536
Arr 长度:65536,阅读:65536
Arr 长度:65536,阅读:65536
....直到文件传输完成。
问题:
- 我带到读取方法的缓冲区长度不是 256/4096/65536。它是 1000。
- 每次我从服务中调用 FileStreamWatching 类的读取时,它都不会启动。
我的目标:
控制每次阅读我从客户那里收到多少。
每次我从服务调用它时,FileStreamWatching.Read 都会启动。
我的客户端配置:
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IJob" transferMode="Streamed"/>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8080/Request2" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IJob" contract="ServiceReference1.IJob"
name="BasicHttpBinding_IJob" />
</client>
</system.serviceModel>
</configuration>
我的服务配置(这里没有配置文件):
BasicHttpBinding BasicHttpBinding1 = new BasicHttpBinding();
BasicHttpBinding1.TransferMode = TransferMode.Streamed;
//
BasicHttpBinding1.MaxReceivedMessageSize = int.MaxValue;
BasicHttpBinding1.ReaderQuotas.MaxArrayLength = 1000;
BasicHttpBinding1.ReaderQuotas.MaxBytesPerRead = 1000;
BasicHttpBinding1.MaxBufferSize = 1000;
//
ServiceHost host = new ServiceHost(typeof(JobImplement), new Uri("http://localhost:8080"));
//
ServiceMetadataBehavior behavior = new ServiceMetadataBehavior();
behavior.HttpGetEnabled = true;
//
host.Description.Behaviors.Add(behavior);
ServiceThrottlingBehavior throttle = new ServiceThrottlingBehavior();
throttle.MaxConcurrentCalls = 1;
host.Description.Behaviors.Add(throttle);
//
//
host.AddServiceEndpoint(typeof(IJob), BasicHttpBinding1, "Request2");
host.Open();