Приложение ASP.NET MVC 2 работает в VS, но ошибки на IIS - PullRequest
3 голосов
/ 25 мая 2011

Мы унаследовали приложение MVC 2, которое работает в Visual Studio, но когда мы пытаемся развернуть его на производственном сервере (Win 2008 x86) или даже на той же локальной машине Win7 x64, но с использованием IIS, AppPool на обоих - ASP.NET 4.0 с В интегрированном режиме мы получаем ту же ошибку NullReferenceException:

    Server Error in '/' Application.
--------------------------------------------------------------------------------

Object reference not set to an instance of an object. 
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.NullReferenceException: Object reference not set to an instance of an object.

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: 

[NullReferenceException: Object reference not set to an instance of an object.]
   System.Web.PipelineModuleStepContainer.GetEventCount(RequestNotification notification, Boolean isPostEvent) +30
   System.Web.PipelineStepManager.ResumeSteps(Exception error) +266
   System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) +132
   System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +709

--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1 

Кто-нибудь еще испытал это? Любой совет приветствуется.

Спасибо!

Ответы [ 2 ]

7 голосов
/ 26 мая 2011

Одна из возможных причин, по которой я могу придумать, заключается в том, что приложение размещено в интегрированной модели, а HttpContext недоступен в Application_Start.Поэтому, если ваше приложение пытается получить доступ к HttpContext, Request, Response, ... оно может выбросить это.

0 голосов
/ 12 января 2017

Удалите тег codedom из tbe web.config, это создаст проблему.(Я столкнулся с этой проблемой в сообществе VS 2017

<system.codedom>    </system.codedom>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...