日志错误:无法创建列表

发布于 2024-07-19 17:22:02 字数 687 浏览 5 评论 0 原文

我有一个网站模板,其中包含一些自定义列表和自定义页面。 我在需要时使用网站模板创建新网站。 创建 Web 后,我还使用 C# 代码本身设置了主题和 Web 的唯一权限,然后将页面重定向到新创建的 Web URL。 我的代码在长时间运行的操作中运行。 它始终工作正常,但在某些情况下,当页面重定向到新创建的网站时,我会收到错误“找不到文件”。

当我仔细观察时,我发现网络已正确创建并且权限已设置; 页面库和 还找到了其他列表,但未找到母版页库。 因此,我无法浏览页面库和页面中的任何页面。 我什至无法检查网络主题。 当我查看日志时,发现以下错误。

04/09/2009 14:22:49.35 w3wp.exe (0x11B4) 0x0D0C Windows SharePoint Services 常规 8z1y 中无法在 Web“http://rootsite/subsite”,HRESULT=0x81020012。 列表 XML: ""

什么可能导致此问题? 我并不是一直都遇到这个问题,只是有时我会遇到这个问题。 代码上没有抛出任何错误,但网络的母版页库未创建。 你有遇到过这样的问题吗? 我该如何解决这个问题?

提前致谢,

〜Yuva

I have a Site Template with few customized lists and customized pages. I create new webs when ever needed using the site template. After creating the web, I also set up a theme and unique permissions to the web using C# code itself, then I redirect the page to the newly created web URL. My code runs within a Long running operation. It works all the time fine, but in some circumstance I get an error "file not found" when the page re-directed to the newly created web.

When I had closer look, I see that the web was properly created and the permissions were set; the pages library & other lists are also found, but the master page gallery is not found. Due to that I could not browse any pages in the page library & I could not even check web theme. When I see the Logs I found the below error.

04/09/2009 14:22:49.35 w3wp.exe (0x11B4) 0x0D0C Windows SharePoint Services General 8z1y Medium Failed to create list "Master Page Gallery" in web "http://rootsite/subsite", HRESULT=0x81020012. List XML: ""

What could cause this issue? I don't get this all time only sometimes I get this issue. There were no errors thrown on code, but the web's master page gallery was not created. Have you ever faced such problem? How can I solve this?

Thanks in advance,

~Yuva

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万劫不复 2024-07-26 17:22:02

您获得的 HRESULT 来自 COM 错误:System.Runtime.InteropServices.COMException (0x81020012): 指定的名称已在使用中。

确保您尝试创建的图库位于 Web 级别,而不是站点或 Web 应用程序级别。 您能否发布该 URL 有效时和无效时的示例?

The HRESULT you're getting is from a COM error: System.Runtime.InteropServices.COMException (0x81020012): The specified name is already in use.

Make sure that the gallery you're trying to create is at the web level, not the site or webapplication level. Can you post examples of the URL when it worked vs. when it didn't?

风向决定发型 2024-07-26 17:22:02

母版页库通常不是位于站点而不是 Web 级别吗? 子网站可以使用父网站定义的母版页,因此尝试在子网站上定义母版页可能会造成混乱。

Isn't the master page gallery usually at the site rather than web level? Subsites can use a master page defined by the parent site, so you could be confusing things by trying to define the master pages on the subsite as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文