【发布时间】:2012-02-18 06:54:07
【问题描述】:
我正在使用 Windows Azure Blob 存储和 WCF REST 服务一起上传带有块的大文件。
我可以轻松上传一个部分文件,但我必须找到一种方法将这些块合并到 Azure Blob 中。这样做的最佳做法是什么?
这是我的界面:
[OperationContract]
[WebInvoke(Method = "POST", UriTemplate="Upload?name={name}&chunk={chunk}&chunks={chunks}")]
int Upload(string name, string chunk, string chunks, Stream fileContents);
【问题讨论】:
标签: wcf rest upload azure-storage chunks