1

Sharepointサイトで、ユーザーは既に回答した調査にもう一度回答しようとします。IISはHTTP500を返し、次のエラーメッセージを含むページを提供します。

Server Error in '/' Application. 
--------------------------------------------------------------------------------
You are not allowed to respond again to this survey. 

Description: An unhandled exception occurred during the execution of the current web  request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Runtime.InteropServices.COMException: You are not allowed to respond again to this survey.

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

Stack Trace: 

[COMException (0x81020039): You are not allowed to respond again to this survey.]
    Microsoft.SharePoint.Library.SPRequestInternalClass.IsVotingAllowed() +0
    Microsoft.SharePoint.Library.SPRequest.IsVotingAllowed() +174
[SPException: You are not allowed to respond again to this survey.]
    Microsoft.SharePoint.Library.SPRequest.IsVotingAllowed() +312
    Microsoft.SharePoint.WebPartPages.ListFormWebPart.OnInit(EventArgs e) +955
    System.Web.UI.Control.InitRecursive(Control namingContainer) +143
    System.Web.UI.Control.AddedControl(Control control, Int32 index) +271
    System.Web.UI.WebControls.WebParts.WebPartManagerControlCollection.AddWebPartHelper(WebPart webPart) +305
    System.Web.UI.WebControls.WebParts.WebPartManagerControlCollection.AddWebPart(WebPart webPart) +1930590
    System.Web.UI.WebControls.WebParts.WebPartManagerInternals.AddWebPart(WebPart webPart) +63
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.AddWebPartWithRetry(WebPart webPart) +147
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.AddDynamicWebPart(WebPart webPart) +122
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts) +12053
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.LoadWebParts() +93
    Microsoft.SharePoint.WebPartPages.SPWebPartManager.OnPageInitComplete(Object sender, EventArgs e) +690
    System.EventHandler.Invoke(Object sender, EventArgs e) +0
    System.Web.UI.Page.OnInitComplete(EventArgs e) +11038910
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1674

そこには2つの例外が報告されています-System.Runtime.InteropServices.COMExceptionSPException

そんなことがあるものか?ASP.NETレベルで、2つの例外が同時に報告されるとどうなりましたか?

4

1 に答える 1

2

一方はもう一方の内部例外です。

于 2012-06-01T13:41:30.110 に答える