0

我们开发了一个 WebPart 来读取 SiteCollection 中文档库中文件的内容。我使用以下代码来阅读内容。

 WebClient wc = new WebClient();
 wc.Credentials = CredentialCache.DefaultNetworkCredentials;
 string documenturl = siteurl+"/" + file.Url.ToString();
 content = wc.DownloadData(documenturl);//documenturl is the file path of the document

但是,我收到以下错误 401 未经授权的异常

System.Net.WebException: The remote server returned an error:(401) Unauthorized. at System.Net.WebClient.DownloadDataInternal(Uri address,WebRequest& request) at System.Net.WebClient.DownloadData(Uri address)

供您参考,我已经尝试通过 SPFile openBinary 方法下载文档。但它只适用于文档较小的情况。请参考以下网站。

在 SharePoint 2010 中阅读文档时出现 ComException

提前致谢。

4

1 回答 1

0

可能是本地环回检查。(通过在您的 SharePoint 服务器上运行的 IE 尝试使用相同的 URL 访问您的网站进行验证)

另外 - 为什么您使用 Web 服务来访问本地内容而不是 SharePoint 对象模型 (Microsoft.SharePoint.dll)?

于 2011-09-26T13:21:22.733 回答