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

当您在例如文档上选择“发送到”上下文菜单时,发送到记录中心是否显示在网站集中?请仔细检查常规设置-> 配置发送到连接(在中央管理中),也许您为错误的 web 应用程序配置了它?

于 2013-04-25T11:55:13.483 回答