I am developing a project with the Umbraco 7.2.1 and I installed mvcreportviewer (https://github.com/ilich/MvcReportViewer). This a helper to render reports from MS SS Report Server.
In my development machine (IISExpress) everything works fine.
But when I moved to IIS7.5 (W2008R2) or IIS8 (W2012) an RuntimeBinderException occurs.
This error disappears by deleting mvcReportViewer.dll.
Any suggestions?
Although I do not think it serves much the exception information is:
Tipo de excepción: RuntimeBinderException
Mensaje de la excepción: 'Umbraco.Web.Models.DynamicPublishedContentList' no contiene una definición para 'Count'.
en CallSite.Target(Closure , CallSite , Object )
en System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
en ASP._Page_Views_Partials_BloqueComunInicio_cshtml.Execute() en e:\Inetpub\Aplicaciones\ASOC_GENERAL.NET\u01\Views\Partials\BloqueComunInicio.cshtml:línea 10
en System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
en System.Web.Mvc.WebViewPage.ExecutePageHierarchy()
MVCReportViewer + IIS 7.5
I am developing a project with the Umbraco 7.2.1 and I installed mvcreportviewer (https://github.com/ilich/MvcReportViewer). This a helper to render reports from MS SS Report Server.
In my development machine (IISExpress) everything works fine.
But when I moved to IIS7.5 (W2008R2) or IIS8 (W2012) an RuntimeBinderException occurs.
This error disappears by deleting mvcReportViewer.dll.
Any suggestions?
Although I do not think it serves much the exception information is:
Tipo de excepción: RuntimeBinderException
Mensaje de la excepción: 'Umbraco.Web.Models.DynamicPublishedContentList' no contiene una definición para 'Count'.
en CallSite.Target(Closure , CallSite , Object )
en System.Dynamic.UpdateDelegates.UpdateAndExecute1[T0,TRet](CallSite site, T0 arg0)
en ASP._Page_Views_Partials_BloqueComunInicio_cshtml.Execute() en e:\Inetpub\Aplicaciones\ASOC_GENERAL.NET\u01\Views\Partials\BloqueComunInicio.cshtml:línea 10
en System.Web.WebPages.WebPageBase.ExecutePageHierarchy()
en System.Web.Mvc.WebViewPage.ExecutePageHierarchy()
...........and so
Solved! The whole problem was in DLL version conflicts.
This article gave me the hint: http://blog.bartdemeyer.be/2013/01/the-hard-search-for-missing-extension-methods-in-umbraco-4-7- 0 /
Finally I installed the ReportViewer 2012 runtimes to IIS 7.5 and updated Microsoft ASP.NET MVC version 4 4.0.40804 at the VS project.
is working on a reply...