0

.NET API を介して SharePoint から documentum にファイルをアップロードしようとしており、可能なオプションを探しています。

私はこれらの解決策に出くわしました:

  • Documentum の相互運用アセンブリ (非推奨になると聞いています)

  • このコードプレックス ソリューション

推奨されるアプローチとそれに関連するプロトコル (HTTP、TCP) を誰か教えてもらえますか?

4

1 に答える 1

0

私は Documentum に詳しくありませんが、理論的には、HttpRequest (PUT 操作) を実行できれば、どのシステムにもファイルをアップロードできます。次に例を示します。

string localFilename = "<path to file you wish to upload>";
// ex. c:\temp\myFileToUpload.doc

FileStream myStream = new FileStream(localFilename, FileMode.Open, FileAccess.Read);
BinaryReader myReader = new BinaryReader(myStream);
byte[] bytesToOutput = reader.ReadBytes((int)myStream.Length);
myReader.Close();
myStream.Close();

using (WebClient client = new WebClient())
{
    client.Credentials = System.Net.CredentialCache.DefaultCredentials;
    client.UploadData(uploadPath, "PUT", bytesToOutput);
}
于 2011-10-19T11:37:16.017 に答える