通过WSS 3.0版本公开的内置Web服务将文件上传到SharePoint服务器上的文档库的最佳方法是什么?
遵循两个初步答案......
我们肯定需要使用Web服务层,因为我们将从远程客户端应用程序进行这些调用。
WebDAV方法对我们有用,但我们更愿意与Web服务集成方法保持一致。
还有一个上传文件的网络服务,痛苦但一直有效。
您指的是“复制”服务吗?
我们已成功使用此服务的CopyIntoItems
方法。这是仅使用WSS Web服务API将文件上载到文档库的推荐方法吗?
我已将我们的代码发布为建议的答案。
答案 0 :(得分:17)
使用WSS“复制”Web服务将文档上载到库的示例...
public static void UploadFile2007(string destinationUrl, byte[] fileData)
{
// List of desination Urls, Just one in this example.
string[] destinationUrls = { Uri.EscapeUriString(destinationUrl) };
// Empty Field Information. This can be populated but not for this example.
SharePoint2007CopyService.FieldInformation information = new
SharePoint2007CopyService.FieldInformation();
SharePoint2007CopyService.FieldInformation[] info = { information };
// To receive the result Xml.
SharePoint2007CopyService.CopyResult[] result;
// Create the Copy web service instance configured from the web.config file.
SharePoint2007CopyService.CopySoapClient
CopyService2007 = new CopySoapClient("CopySoap");
CopyService2007.ClientCredentials.Windows.ClientCredential =
CredentialCache.DefaultNetworkCredentials;
CopyService2007.ClientCredentials.Windows.AllowedImpersonationLevel =
System.Security.Principal.TokenImpersonationLevel.Delegation;
CopyService2007.CopyIntoItems(destinationUrl, destinationUrls, info, fileData, out result);
if (result[0].ErrorCode != SharePoint2007CopyService.CopyErrorCode.Success)
{
// ...
}
}
答案 1 :(得分:9)
另一个选择是使用普通的'HTTP PUT:
WebClient webclient = new WebClient();
webclient.Credentials = new NetworkCredential(_userName, _password, _domain);
webclient.UploadFile(remoteFileURL, "PUT", FilePath);
webclient.Dispose();
remoteFileURL指向SharePoint文档库的位置......
答案 2 :(得分:8)
有几件事需要考虑:
答案 3 :(得分:6)
public static void UploadFile(byte[] fileData) {
var copy = new Copy {
Url = "http://servername/sitename/_vti_bin/copy.asmx",
UseDefaultCredentials = true
};
string destinationUrl = "http://servername/sitename/doclibrary/filename";
string[] destinationUrls = {destinationUrl};
var info1 = new FieldInformation
{
DisplayName = "Title",
InternalName = "Title",
Type = FieldType.Text,
Value = "New Title"
};
FieldInformation[] info = {info1};
var copyResult = new CopyResult();
CopyResult[] copyResults = {copyResult};
copy.CopyIntoItems(
destinationUrl, destinationUrls, info, fileData, out copyResults);
}
注意:将CopyIntoItems
的第一个参数更改为文件名Path.GetFileName(destinationUrl)
,会使取消链接消息消失。
答案 4 :(得分:4)
我很幸运使用此处描述的DocLibHelper包装器类:http://geek.hubkey.com/2007/10/upload-file-to-sharepoint-document.html
答案 5 :(得分:1)
来自工作中的同事:
懒惰方式:您的Windows WebDAV文件系统界面。它作为一种程序化解决方案很糟糕,因为它依赖于在您的操作系统上运行的WindowsClient服务,并且仅适用于在端口80上运行的网站。将驱动器映射到文档库并获取文件复制。
还有一个上传文件的网络服务,很痛苦,但一直有效。
我相信您可以通过FrontPage API上传文件,但我不知道有谁实际使用它。
答案 6 :(得分:1)
不确定要使用哪种Web服务,但如果您处于可以使用SharePoint .NET API Dll的位置,那么使用SPList和SPLibrary.Items.Add非常简单。