0

Sharepoint2010からRecordCenterURLを取得しようとしていますが、

RecordCenter または DocumentRepository に接続するための接続を作成しました。このリンクを使用しました

アプリケーションから OfficialFileUrl を取得しようとすると、常に NULL 値が返されます。

このサンプルコードを使用しました。この問題について助けてください。

string URL = "http://inblr-iifw8sv03:31521";

                SPSite site = new SPSite(URL);
                string recordCenterUrl = string.Empty;

                if (site.WebApplication.OfficialFileUrl != null)// This is Always NULL
                {
                    recordCenterUrl = site.WebApplication.OfficialFileUrl.ToString().
                        Replace("_vti_bin/officialfile.asmx", string.Empty);
                }

                Console.WriteLine("URL Found " + recordCenterUrl);
                Console.ReadLine();
4

1 に答える 1

0

ドキュメントなどで [送信先] コンテキスト メニューを選択すると、サイト コレクションに [レコードセンターへ送信] が表示されますか? [一般設定] -> [Send to Connection の構成] (Central Admin 内) を再確認してください。おそらく、間違った Web アプリケーション用に構成したのでしょうか?

于 2013-04-25T11:55:13.483 に答える