我正在尝试从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();