NullReferenceException を時折報告する MVC3 アプリがあります。これまでのところ、問題を再現できませんでした。以下は、関数の編集バージョン (罪のない人を保護するため) と、NullReferenceException がスローされたときに取得する対応するスタック出力です。
[HttpPost]
public ActionResult DoSomething(FormCollection collection)
{
if (null == collection)
{
return RedirectToAction("Index", "Home");
}
// other work occurs...
// NOTE: no problem here accessing collection
QcModel qcModel = new QcModel (Int32.Parse(collection["Id"]), collection["Result"]);
try
{
Process(qcModel); // Process() throws some kind of exception
}
catch (Exception ex)
{
TempData["ValidationError"] = ex.Message;
// next line is the one that reports the NullReferenceException in stack, aka line 254
return RedirectToAction("Order", new { Id = Int32.Parse(collection["Id"]), result = collection["Result"], reserved = 0 });
}
// additional work if we make it here...
}
基本的に、これまでに推測したことは、catch{} で強調表示された行に到達するまでに、コレクション オブジェクトが null になっているということです。この特定のエラーを再現できなかったため、今は証明できませんが、キャッチで生成された例外が、このスタックを提供する電子メールを送信するハンドラーにさらにバブルアップするため、それが発生していると思います出力:
Exception: System.NullReferenceException
Error Message: Object reference not set to an instance of an object.
Stack: at MyWebsite.Controllers.MyController.DoSomething(FormCollection collection) in C:\MyWebsite\Controllers\MyController.cs:line 254
at lambda_method(Closure , ControllerBase , Object[] )
at System.Web.Mvc.ActionMethodDispatcher.Execute(ControllerBase controller, Object[] parameters)
at System.Web.Mvc.ReflectedActionDescriptor.Execute(ControllerContext controllerContext, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethod(ControllerContext controllerContext, ActionDescriptor actionDescriptor, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass15.<InvokeActionMethodWithFilters>b__12()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass15.<>c__DisplayClass17.<InvokeActionMethodWithFilters>b__14()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodFilter(IActionFilter filter, ActionExecutingContext preContext, Func`1 continuation)
at System.Web.Mvc.ControllerActionInvoker.<>c__DisplayClass15.<>c__DisplayClass17.<InvokeActionMethodWithFilters>b__14()
at System.Web.Mvc.ControllerActionInvoker.InvokeActionMethodWithFilters(ControllerContext controllerContext, IList`1 filters, ActionDescriptor actionDescriptor, IDictionary`2 parameters)
at System.Web.Mvc.ControllerActionInvoker.InvokeAction(ControllerContext controllerContext, String actionName)
at System.Web.Mvc.Controller.ExecuteCore()
at System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext)
at System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext)
at System.Web.Mvc.MvcHandler.<>c__DisplayClass6.<>c__DisplayClassb.<BeginProcessRequest>b__5()
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass1.<MakeVoidDelegate>b__0()
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _)
at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`1.End()
at System.Web.Mvc.MvcHandler.<>c__DisplayClasse.<EndProcessRequest>b__d()
at System.Web.Mvc.SecurityUtil.<GetCallInAppTrustThunk>b__0(Action f)
at System.Web.Mvc.SecurityUtil.ProcessInApplicationTrust(Action action)
at System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult)
at System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)