我有点被困在这里......
我的目标非常简单:我希望公开一个IIS托管(然后是Windows Azure)WCF服务,通过该服务我可以上传文件,使用流媒体,并添加一些有关我要上传的文件的META数据(文件名,MD5 - 所有常见的东西......),并能够显示有关上传的准确进度信息。
首先,我创建了一个派生类 StreamWithProgress ,它继承自 FileStream ,在那里我重写了 Read 方法来引发一个事件每次阅读都会传递进度信息。
其次,我使用 MessageContract (http://msdn.microsoft.com/en-us/library/ms730255.aspx)创建了一个WCF服务,以将META数据和流对象包装到一个SOAP信封中。这项服务非常简单,只提供一种上传方法。
我已将所有缓冲区大小设置为接受大量数据,具体如下:
和httpRuntime设置如下:
http://msdn.microsoft.com/en-us/library/e1f13641(v=vs.71).aspx 和
http://kjellsj.blogspot.com/2007/02/wcf-streaming-upload-files-over-http.html
IIS \ ASP兼容性设置依据:
按照以下方式禁用批处理:
我创建了一个自托管服务,通过该服务上传成功。 然后我'将它'升级为 IIS托管服务(在我的本地计算机上),这有效。 然后我创建了一个本地托管的Windows Azure服务,其中包含一个WCF webrole 。
但问题是,在所有实例中都没有实际流式传输...所有这些都在发送之前缓冲了数据。
当我看到我的客户端正在报告进度时,我遇到了这个问题,但是在整个文件被缓冲之后,服务器才开始编写文件。
我的实际代码如下。
任何想法\帮助? 任何事都将受到高度赞赏......
谢谢!
服务器web.config:
<?xml version="1.0"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="uploadBasicHttpBinding"
maxReceivedMessageSize="2147483647"
transferMode="Streamed"
messageEncoding="Mtom"
maxBufferPoolSize="2147483647"
maxBufferSize="2147483647">
<readerQuotas maxArrayLength="2147483647"
maxBytesPerRead="2147483647"
maxDepth="2147483647"
maxNameTableCharCount="2147483647"
maxStringContentLength="2147483647"/>
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="defaultBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
<dataContractSerializer maxItemsInObjectGraph="2147483647"/>
</behavior>
</serviceBehaviors>
</behaviors>
<!-- Add this for BufferOutput setting -->
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true"/>
<services>
<service name="WcfService1.Service1" behaviorConfiguration="defaultBehavior">
<endpoint binding="basicHttpBinding" contract="WcfService1.IService1" bindingConfiguration="uploadBasicHttpBinding"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
</service>
</services>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<system.web>
<compilation debug="true"/>
<httpRuntime maxRequestLength="2147483647" />
</system.web>
</configuration>
服务合同:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
using System.IO;
namespace WcfService1
{
[ServiceContract]
public interface IService1
{
[OperationContract(IsOneWay=true)]
void UploadStream(Encapsulator data);
}
}
实际服务:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.ServiceModel;
using System.ServiceModel.Web;
using System.Text;
using System.IO;
using System.Web;
using System.ServiceModel.Activation;
namespace WcfService1
{
[MessageContract]
public class Encapsulator
{
[MessageHeader(MustUnderstand = true)]
public string fileName;
[MessageBodyMember(Order = 1)]
public Stream requestStream;
}
[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class Service1 : IService1
{
public Service1()
{
HttpContext context = HttpContext.Current;
if (context != null)
{
context.Response.BufferOutput = false;
}
}
public void UploadStream(Encapsulator data)
{
const int BUFFER_SIZE = 1024;
int bytesRead = 0;
byte[] dataRead = new byte[BUFFER_SIZE];
string filePath = Path.Combine(@"C:\MiscTestFolder", data.fileName);
string logPath = Path.Combine(@"C:\MiscTestFolder", string.Concat(data.fileName, ".log"));
bytesRead = data.requestStream.Read(dataRead, 0, BUFFER_SIZE);
StreamWriter logStreamWriter = new StreamWriter(logPath);
using (System.IO.FileStream fileStream = new System.IO.FileStream(filePath, FileMode.Create))
{
while (bytesRead > 0)
{
fileStream.Write(dataRead, 0, bytesRead);
fileStream.Flush();
logStreamWriter.WriteLine("Flushed {0} bytes", bytesRead.ToString());
logStreamWriter.Flush();
bytesRead = data.requestStream.Read(dataRead, 0, BUFFER_SIZE);
}
fileStream.Close();
}
logStreamWriter.Close();
}
}
}
客户端app.config:
<?xml version="1.0"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IService1" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Mtom" textEncoding="utf-8" transferMode="Streamed"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost/WcfService1/Service1.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1"
contract="UploadService.IService1" name="BasicHttpBinding_IService1" />
</client>
</system.serviceModel>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
</configuration>
客户主要代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CustomFileUploaderTester.UploadService;
using System.ServiceModel;
using System.IO;
namespace CustomFileUploaderTester
{
class Program
{
private static long bytesRead = 0;
static void Main(string[] args)
{
Service1Client client = new Service1Client();
using (StreamWithProgress fstream = new StreamWithProgress(@"C:\BladieBla\someFile.wmv", FileMode.Open))
{
client.InnerChannel.AllowOutputBatching = false;
fstream.ProgressChange += new EventHandler<StreamReadProgress>(fstream_ProgressChange);
client.UploadStream("someFile.wmv", fstream);
fstream.Close();
}
Console.ReadKey();
}
static void fstream_ProgressChange(object sender, StreamReadProgress e)
{
bytesRead += e.BytesRead;
Console.WriteLine(bytesRead.ToString());
}
}
}
派生的FileStream类( StreamWithProgress )
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace CustomFileUploaderTester
{
public class StreamReadProgress : EventArgs
{
#region Public Properties
public long BytesRead
{
get;
set;
}
public long Length
{
get;
set;
}
#endregion
#region Constructor
public StreamReadProgress(long bytesRead, long fileLength)
: base()
{
this.BytesRead = bytesRead;
this.Length = fileLength;
}
#endregion
}
public sealed class StreamWithProgress : FileStream
{
#region Public Events
public event EventHandler<StreamReadProgress> ProgressChange;
#endregion
#region Constructor
public StreamWithProgress(string filePath, FileMode fileMode)
: base(filePath, fileMode)
{
}
#endregion
#region Overrides
public override int Read(byte[] array, int offset, int count)
{
int bytesRead = base.Read(array, offset, count);
this.RaiseProgressChanged(bytesRead);
return bytesRead;
}
#endregion
#region Private Worker Methods
private void RaiseProgressChanged(long bytesRead)
{
EventHandler<StreamReadProgress> progressChange = this.ProgressChange;
if (progressChange != null)
{
progressChange(this, new StreamReadProgress(bytesRead, this.Length));
}
}
#endregion
}
}
- 更新:2012-04-20
在我安装了一个环回适配器之后,我使用RawCap跟踪了这些通信,并看到数据实际上已经流式传输,但IIS服务器在调用Web方法之前缓冲了所有数据!
根据这篇文章:
http://social.msdn.microsoft.com/Forums/is/wcf/thread/cfe625b2-1890-471b-a4bd-94373daedd39
它是WCF继承的ASP.Net行为......但他们正在讨论.Net 4.5中的修复:|
如果有人有任何其他建议,那就太棒了!
谢谢!
答案 0 :(得分:3)
您正在将Mtom与流式传输模式一起使用。这可能会导致问题。请尝试删除Mtom。实际上,无论如何,Mtom是一个非常古老的标准。此外,当使用具有流传输模式的SOAP服务时,我们只能有一个类型为Stream的参数。我们不能使用像Encapsulator这样的自定义类型。
构建文件上载/下载服务的推荐解决方案是使用REST。在.NET平台上构建REST服务的方法之一是使用ASP.NET Web API:http://www.asp.net/web-api。使用此API,我们不需要处理流传输模式。我们需要处理的是Range标头。此博文可能有所帮助:http://blogs.msdn.com/b/codefx/archive/2012/02/23/more-about-rest-file-upload-download-service-with-asp-net-web-api-and-windows-phone-background-file-transfer.aspx。但请注意,此API尚未发布。如果您不想使用预发布产品,则可以使用其他技术,例如,您可以将MVC控制器用作REST服务,或使用WCF REST服务,或构建自定义http处理程序等。如果您需要要使用Stream,需要自定义流。我建议您查看http://blogs.msdn.com/b/james_osbornes_blog/archive/2011/06/10/streaming-with-wcf-part-1-custom-stream-implementation.aspx样本。
最诚挚的问候,
徐明。答案 1 :(得分:3)
经过一些严格的测试,我看到数据实际上是流式传输的。我将[MessageContract]
属性应用于Encapsulator类
(根据http://msdn.microsoft.com/en-us/library/ms733742.aspx),这使我能够发送一些关于该文件的额外元数据。运用
WireShark和RawCap很清楚,在读取Stream时,数据是通过线路发送的。
另一个困扰的问题是,在实际调用上传方法之前,流式传输的数据是缓冲服务器端(使用IIS 7.5)! 这有点令人担忧,但根据这个:http://social.msdn.microsoft.com/Forums/is/wcf/thread/cfe625b2-1890-471b-a4bd-94373daedd39, 修复应该在4.5版本的.Net
中