使用Web Api打开Office文档并使用MS Office保存回站点

时间:2013-08-21 08:40:13

标签: .net asp.net-mvc sharepoint ms-office asp.net-web-api

我做了一些研究,但这超出了我的理解范围。我正在使用Fiddler尝试捕获请求/响应 目标是这个webapi表现得像一个没有太多资源和许可证的股票文档存储库 我在获取文件方面取得了一些进展:

public HttpResponseMessage Get(int id)
{
    byte[] content = null;
    using (FileStream fs = File.Open(@"d:\some.docx", FileMode.Open))
    {
        content = new byte[fs.Length];
        fs.Read(content, 0, (int)fs.Length);
    }
    HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
    response.Content = new ByteArrayContent(content);
    response.Content.Headers.ContentType = new MediaTypeHeaderValue("application/msword");
    response.Content.Headers.ContentDisposition = new ContentDispositionHeaderValue("inline")
    {
        FileName = "some.docx"
    };
    return response;
}

浏览器提供打开文件,但名称为5,因此此部分仍然无法正常工作。
该请求很容易获取,由浏览器启动,响应看起来像这样(没有内容):

HTTP/1.1 200 OK
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 403170
Content-Type: application/msword
Expires: -1
Server: Microsoft-IIS/8.0
Content-Disposition: inline; filename=some.docx
X-AspNet-Version: 4.0.30319
X-SourceFiles: =?UTF-8?B?QzpcV29ya1xSZXNlYXJjaFxXZWJBcGlUb09mZmljZVxXZWJBcGlUb09mZmljZVxhcGlcV29yZEFwaVw1?=
X-Powered-By: ASP.NET
Date: Wed, 21 Aug 2013 08:27:02 GMT  

我通过网址http://localhost:49590/api/WordApi/5访问该文件。

与此同时,我发现了以下文章:http://support.microsoft.com/kb/838028
我承认我并不完全理解它,但我认为我应该在我的申请中实施WebDAV 我试图添加一些选项,希望Office发出的请求发生变化,如下所示:

public HttpResponseMessage Options()
{
  HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.OK);
  response.Headers.Add("MS-AUTHOR-VIA", new[] { "LOCK", "UNLOCK", "PROPPATCH" });
  return response;
}

但遗憾的是没有任何改变。办公室的要求是:

OPTIONS http://localhost:49590/api/WordApi/ HTTP/1.1
X-IDCRL_ACCEPTED: t
User-Agent: Microsoft Office Protocol Discovery
Host: localhost:49590
Content-Length: 0
Connection: Keep-Alive
Pragma: no-cache

然后再做一个:

HEAD http://localhost:49590/api/WordApi/5 HTTP/1.1
X-IDCRL_ACCEPTED: t
User-Agent: Microsoft Office Existence Discovery
Host: localhost:49590
Content-Length: 0
Connection: Keep-Alive
Pragma: no-cache

有什么方法可以让Office在保存时欺骗Office发送我的Web API吗? 另一个有趣的事情是,当我在调试时,在应用程序中调用方法Options()Head(int id, [FromBody] string value)两次,但根据Fiddler的说法,请求仅在上述两种情况下发送一次。

知道如何使用webapi实现这种打开/保存机制吗?

更新:

看起来每个人都错过了这一点。问题不是打开文档,而是使用Office在本地保存(不是在应用程序中上传页面) 如果我将附件用作Content-Disposition,则浏览器会以不同的方式打开文件。它将文件保存到temp并从该位置打开文档。在这种情况下,Office甚至没有尝试连接到我的webapi 但是,如果我使用内联Office,则从网站位置打开文档,并通过OPTIONS和HEAD请求检查我的webapi的功能。
浏览器生成以下打开的对话框:
如果设置为附件:
With 'attachment'
如果设置为内联:
With 'inline'

1 个答案:

答案 0 :(得分:0)

答案很痛苦。解决方案是在自定义处理程序中实现WebDAV。