Error when deploying ASP.NET MVC NHibernate app to IIS7 - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:59:29Zhttp://stackoverflow.com/feeds/question/821934http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/821934/error-when-deploying-asp-net-mvc-nhibernate-app-to-iis70Error when deploying ASP.NET MVC NHibernate app to IIS7Gary2009-05-04T20:34:47Z2009-06-18T05:00:03Z
<p>I have an Asp.Net MVC application that works in the vs.net development web server. When I publish to IIS7 I get the following error. I have spent many hours and still no solution!</p>
<pre><code> [NullReferenceException: Object reference not set to an instance of an object.]
System.Web.PipelineStepManager.ResumeSteps(Exception error) +929
System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) +91
System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +508
</code></pre>
<p>Here is the Application_Start</p>
<pre><code>protected void Application_Start()
{
ConfigureLogging();
ComponentRegistrar.RegisterComponents();
NHibernateSession.InitSqlServer2005(new WebSessionStorage(this), Settings.Default.DefaultConnString);
CacheManager.InitCaches();
}
}
</code></pre>
<p>I came late to this application and do not know the best practices of MVC and NHibernate</p>
<p>Any help would be appreciated.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/821934/error-when-deploying-asp-net-mvc-nhibernate-app-to-iis7/828592#8285921Answer by Sly for Error when deploying ASP.NET MVC NHibernate app to IIS7Sly2009-05-06T08:28:49Z2009-05-06T08:28:49Z<p>You cant configure nhibernate in application start. I don't exactly know why, but I also had this problem.</p>
<p>You can initialize it in Init(). Also you can see it is done here
<a href="http://code.google.com/p/sharp-architecture/source/checkout" rel="nofollow">http://code.google.com/p/sharp-architecture/source/checkout</a></p>