这可能看起来有点微不足道,但我一直无法弄清楚。我正在打开一个 SPSite,然后尝试在该 SPSite 下打开一个 SPWeb。这在具有相同站点集合/站点层次结构的 VPC 上运行良好,但在生产中,当我尝试 SPSite.OpenWeb(webUrl); 时,我收到一个异常,告诉我 URL 无效。我已经验证了 URL 是正确的。
编码:
try
{
SPSite scheduleSiteCol = new SPSite(branchScheduleURL);
lblError.Text += Environment.NewLine + "Site Collection URL: " + scheduleSiteCol.Url;
SPWeb scheduleWeb = scheduleSiteCol.OpenWeb(branchScheduleURL.Replace(scheduleSiteCol.Url, "")); //<--- Throws error on this line
SPList scheduleList = scheduleWeb.GetList(branchScheduleURL + "/lists/" + SPContext.Current.List.Title);
return scheduleList.GetItemById(int.Parse(testID));
}
catch (System.Exception ex)
{
lblError.Text += Environment.NewLine + ex.ToString();
return null;
}
注意:
branchScheduleURL 实际上是包含 Web 的 URL 的整个 URL。
输出+异常:
网站集 URL:https
://ourSite.com/mocc System.ArgumentException:无效的 URL:/internal/scheduletool。在 Microsoft.SharePoint.SPSite.OpenWeb(String strUrl, Boolean requireExactUrl) 在 Microsoft.SharePoint.SPSite.OpenWeb(String strUrl) 在 MOCCBranchScheduleListWeb.MOCCBranchScheduleListV3.GetConflictListItem(String branchScheduleURL, String testID)System.NullReferenceException: 对象引用未设置为对象的实例。在 MOCCBranchScheduleListWeb.MOCCBranchScheduleListV3.CheckForConflicts(字符串 [] cfcFlags1,日期时间开始时间,日期时间结束时间,字符串 [] cfcFlags2)
注意:
https : //ourSite.com/mocc/internal/scheduletool 是我要打开的 SPWeb。
我错过了一些明显的东西吗?任何帮助将不胜感激。
谢谢。