2

我收到一个需要帮助调试的 win32 异常。我有一个包含自定义 Web 部件的 SharePoint 页面,当我浏览到该页面时,我收到以下消息:

In w3wp.dmp the assembly instruction at ntdll!RtlReportCriticalFailure+62 in 
C:\Windows\System32\ntdll.dll from Microsoft Corporation has caused an unknown
exception (0xc0000374) on thread 43

Unhandled exception at 0xHEX in w3wp.exe: 0xc0000374: 
A heap has been corrupted

我真的不知道从哪里开始调试这个问题并且搜索互联网产生的结果很少。

我已保存 DMP 文件并将其加载到调试诊断工具中进行分析。我不知道哪些部分最重要,所以如果有人可以告诉我应该发布哪些部分,我会发布它们。

我认为问题出在哪里:

我已经缩小了问题可能出现的位置。如果我不调用这些方法,我不会得到错误。我访问 TermStore 的方式有问题吗?

    private void GetTerms()
    {
        using (SPSite site = new SPSite(PhaseListUrl.Value))
        {
            var session = new TaxonomySession(site);
            if (session.TermStores == null || session.TermStores.Count == 0) return;

            OfficeDropdown.Items.Clear();
            OfficeDropdown.Items.Add("");

            var termStore = session
                .TermStores
                .FirstOrDefault(ts => ts.Groups.Any(g => g.Name == TaxonomyName.Value));
            try
            {
                var group = termStore.Groups[TaxonomyName.Value];
                foreach (var ts in group.TermSets)
                {
                    if (!ts.IsAvailableForTagging) continue;

                    AddTerms(site, termStore, ts.Id, ts.Terms);
                }
            }
            catch (NullReferenceException) { OfficeDropdown.Items.Add("ERROR: Check your Org Term Store Name"); }
            catch (ArgumentOutOfRangeException) { OfficeDropdown.Items.Add("ERROR: Check your Org Term Store Name"); }
        }
    }

    private void AddTerms(SPSite site, TermStore termStore, Guid tsId, TermCollection coll)
    {
        foreach (var t in coll)
        {
            if (t.IsAvailableForTagging)
            {
                var wssIds = TaxonomyField.GetWssIdsOfTerm(site, termStore.Id, tsId, t.Id, true, 1000);

                if (wssIds.Length != 0)
                {
                    var id = wssIds[0];
                    var validatedString = string.Format("{0};#{1}{2}{3}", id, t.Name, TaxonomyField.TaxonomyGuidLabelDelimiter, t.Id);
                    OfficeDropdown.Items.Add(new ListItem(t.Name, validatedString));
                }
                else
                {
                    int id = -1;
                    var value = new TaxonomyFieldValue(SPContext.Current.Web.AvailableFields[new Guid("{a64c1f69-c0d6-421a-8c8a-9ef8f459d7a2}")]);
                    value.TermGuid = t.Id.ToString();

                    var dummy = value.ValidatedString;
                    if (dummy != null)
                        id = value.WssId;

                    var validatedString = string.Format("{0};#{1}{2}{3}", id, t.Name, TaxonomyField.TaxonomyGuidLabelDelimiter, t.Id);
                    OfficeDropdown.Items.Add(new ListItem(t.Name, validatedString));
                }
            }
            AddTerms(site, termStore, tsId, t.Terms);
        }
    }

更新:

该错误在TaxonomyField. 我正在访问术语跨站点集合,但尚未生成 ID。还要注意TermStore不是同一个跨站点集合的 ID(并知道您从哪里呼叫以及呼叫到哪里!)

4

1 回答 1

0

这里有一些建议。

  1. 拉起ULS日志查看器并研究日志,如果您点击该页面并收到该错误,则应该将其记录在那里。

  2. 检查 Web 前端服务器上的应用程序事件日志。

  3. 您是否也尝试过附加到W3P.exe流程并调试解决方案?(假设它当然不是生产环境)。

于 2013-02-15T02:12:22.583 回答