Issues During ASP.NET MVC Upgrade from Preview 5 to Beta? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T14:51:25Zhttp://stackoverflow.com/feeds/question/208468http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta6Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Elijah Manor2008-10-16T13:07:35Z2008-11-05T10:20:48Z
<p>What issues or refactoring did you have to do when you upgraded from ASP.NET MVC Preview 5 to the newly released <a href="http://www.microsoft.com/downloads/details.aspx?familyid=a24d1e00-cd35-4f66-baa0-2362bdde0766&displaylang=en&tm" rel="nofollow">Beta</a> version?</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/208883#2088836Answer by Will for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Will2008-10-16T14:52:53Z2008-10-16T14:52:53Z<p>I'm about to do this myself. Here's the list of changes from the readme:</p>
<h2>Changes Made Between CodePlex Preview 5 and Beta</h2>
<ul>
<li>Changed the default validation messages to be more end-user friendly. </li>
<li>Renamed CompositeViewEngine to AutoViewEngine.</li>
<li>Added a Url property to Controller of type UrlHelper. This makes it convenient to generate routing-based URLs from within a controller.</li>
<li>Added the ActionNameSelectorAttribute abstract base class, which serves as the base type for ActionNameAttribute. By inheriting from this base attribute class, you can create custom attributes that participate in action selection by name.</li>
<li>Added a new ReleaseView method to IViewEngine that allows custom view engines to be notified when a view is done rendering. This is useful for cleanup or for view-pooling scenarios.</li>
<li>Renamed the ControllerBuilder method DisposeController to ReleaseController to fit with the pattern that is established for view engines.</li>
<li>Removed most of the methods on the HtmlHelper class, converting them to extension methods of the HtmlHelper class instead. These methods exist in a new namespace (System.Web.Mvc.Html). If you are migrating from Preview 5, you must add the following element to the namespaces section of the Web.config file:
<code><add namespace="System.Web.Mvc.Html"/></code>
This makes it possible for you to completely replace our helper methods with your own. </li>
<li>Changed the default model binder (DefaultModelBinder) to handle complex types. The IModelBinder interface has also been changed to accept a single parameter of type ModelBindingContext.</li>
<li><p>Added a new HttpVerbs enumeration that contains the most commonly used HTTP verbs (GET, POST, PUT, DELETE, HEAD). Also added a constructor overload to AcceptVerbsAttribute that accepts the enumeration. The enumerated values can be combined. Because it is possible to respond to HTTP verbs that are not included in the enumeration, the AcceptVerbsAttribute retains the constructor that accepts an array of strings as a parameter. For example, the following snippet shows an action method that can respond to both POST and PUT requests. </p>
<p>[AcceptVerbs(HttpVerbs.Post | HttpVerbs.Put)]<br />
public ActionResult Update() {...
}</p></li>
<li><p>Modified the RadioButton helper method to ensure that every overload accepts a value. Because radio buttons are used to specify a choice from a set of possible values, specifying a value for a radio button is necessary.</p></li>
<li>Made modifications and fixes to the default project template. This includes moving script files to a new Scripts folder. The default template uses the ModelState class to report validation errors.</li>
<li><p>Changed action-method selection. If two action methods match a request, but only one of those has an attribute that derives from ActionMethodSelectorAttribute that matches the request, that action is invoked. In earlier releases, this scenario resulted in an exception.
For example, the following two action methods are in the same controller:</p>
<p>public ActionResult Edit() {<br />
//...<br />
} </p>
<p>[AcceptVerbs(HttpVerbs.Post)]<br />
public ActionResult Edit(FormCollection form) {<br />
//...
}</p></li>
</ul>
<p>In Preview 5, a POST request for the Edit action would cause an exception, because two methods match the request. In the Beta, precedence is given to the method that matches the current request via the AcceptVerb attribute. In this example, the first method will handle any non-POST requests for the Edit action. </p>
<ul>
<li>Added an overload for the ViewDataDictionary.Eval method that accepts a format string.</li>
<li>Removed the ViewName property from the ViewContext class.</li>
<li>Added an IValueProvider interface for value providers, along with a default implementation, DefaultValueProvider. Value providers supply values that are used by the model binders when binding to a model object. The UpdateModel method of the Controller class has been updated to allow you to specify a custom value provider.</li>
</ul>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/209347#20934710Answer by Will for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Will2008-10-16T16:35:40Z2008-10-17T12:39:11Z<p>Issue number one: Yellow screen of death.<br />
<code>CS0234: The type or namespace name 'Mvc' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)</code></p>
<p>Solution: I removed all references in my project and re-added them, pointing to the assemblies in program files\asp.net\asp.net mvc beta\assemblies, but that didn't solve the problem.</p>
<p>I had a system.web.mvc dll in the gac (no idea how). Tried to delete it. Unable to; assembly is required by one or more applications. Had to find the assembly as described <a href="http://support.microsoft.com/kb/873195" rel="nofollow">here</a> and delete the registry entry. I was then able to remove the gac's version of system.web.mvc.</p>
<p>This STILL didn't fix the problem. I had to RE-ADD the references AGAIN. Now its working.</p>
<p><hr /></p>
<p><strong>Just to be clear!!!</strong> The beta assemblies were dropped under Program Files, while an older version of System.Web.Mvc was in the GAC. </p>
<p><hr /></p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/210288#2102881Answer by Korbin for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Korbin2008-10-16T20:57:28Z2008-10-16T20:57:28Z<p>I use Autofac as my DI container. A null container exception gets thrown when trying to dispose of the container objects.</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/210439#2104394Answer by JarrettV for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?JarrettV2008-10-16T21:52:25Z2008-10-18T21:57:15Z<p>I experienced the same problem as <a href="http://stackoverflow.com/users/1228/will">Will</a> and had to do similar things as him, including copying the dlls to the bin folder. </p>
<p>Now things are working in the internal vs.net server but are causing IIS7 to crash.</p>
<p>Ok, it turns out one of the major problems is that I missed the step to <strong>update the compilation assemblies in the web.config</strong>:</p>
<pre><code><add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</code></pre>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/211940#2119401Answer by Andy for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Andy2008-10-17T12:29:02Z2008-10-17T12:29:02Z<p>Yup, also use Autofac as DI container.</p>
<p>Get same issue as this guy</p>
<p><a href="http://groups.google.com/group/autofac/browse_thread/thread/68aaf55581392d08" rel="nofollow">http://groups.google.com/group/autofac/browse_thread/thread/68aaf55581392d08</a></p>
<p>No idea if a fix is possible but cant continue until this is fixed ......</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/212892#2128922Answer by HBoss for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?HBoss2008-10-17T16:37:35Z2008-10-17T16:37:35Z<p><strong>Disregard this... I'm a loser - it's Microsoft ASP.net in program files... not just ASP.net</strong></p>
<p>Maybe this should be a second question, but I think keeping it all in one place might help.</p>
<p>When running the Beta installer nothing ends up changing on my PC. I don't see the folder in the Program Files folder... no assemblies are added to the GAC... even the installer gets to the last step and then hangs for around 10 minutes or so.</p>
<p>I've uninstalled and reinstalled a couple times now without any luck.</p>
<p>Anyone having a similar problem?</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/213366#2133661Answer by HBoss for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?HBoss2008-10-17T18:47:18Z2008-10-17T18:47:18Z<p>After struggling with this for most of the day, I figured I'd post my solution here. Maybe this is normal Visual Studio behavior but I never noticed it before...</p>
<p>On my existing project, I actually had to manually move the Beta files to the Bin folder. For whatever reason, just browsing to it with Add Reference wasn't working...</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/213765#2137651Answer by derigel for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?derigel2008-10-17T20:39:26Z2008-10-17T20:39:26Z<p>Html.TextBox - value now is object, not string.
So, hidden errors possible (not at compile time and even not at runtime), for example I've used this overloaded method earlier Html.TextBox(string name, object htmlAttributes). Now my attrs go into textbox value.</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/213892#2138921Answer by TheCodeJunkie for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?TheCodeJunkie2008-10-17T21:18:49Z2008-10-17T21:18:49Z<p>About the Autofac issue. There is a thread on the autofac discussion group about the need to update the controller factory to be compatible with the Beta release of the MVC framework</p>
<p><a href="http://groups.google.com/group/autofac/browse_thread/thread/68aaf55581392d08" rel="nofollow">http://groups.google.com/group/autofac/browse_thread/thread/68aaf55581392d08</a></p>
<p>I hope they post a new version very very soon :-)</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/214449#2144491Answer by Jason Whitehorn for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Jason Whitehorn2008-10-18T02:46:13Z2008-10-18T02:46:13Z<p>When I upgraded from Preview 5 to Beta I had difficulty locating the generic overloads of ActionLink. It appears that those are not included in the main release of ASP.NET MVC but are being shipping as "futures".</p>
<p>I found the necessary assembly (Microsoft.Web.Mvc) @ <a href="http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=aspnet&ReleaseId=18459" rel="nofollow">http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=aspnet&ReleaseId=18459</a></p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/215522#2155222Answer by TheCodeJunkie for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?TheCodeJunkie2008-10-18T20:12:01Z2008-10-18T20:12:01Z<p>The problem with AutoFac has now been resolved in Revision 454 of the AutoFac code base
<a href="http://code.google.com/p/autofac/issues/detail?id=86&can=1" rel="nofollow">http://code.google.com/p/autofac/issues/detail?id=86&can=1</a></p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/216597#2165972Answer by Søren Pedersen for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Søren Pedersen2008-10-19T16:08:54Z2008-10-19T16:08:54Z<p>Im trying to find out how the new ModelBinder works, as far as I can see it's very different, but i haven't managed to find out how it works yet..</p>
<p>My old looked like:</p>
<pre><code>public class GuestbookEntryBinder : IModelBinder
{
#region IModelBinder Members
public object GetValue(ControllerContext controllerContext, string modelName, Type modelType, ModelStateDictionary modelState)
{
if (modelType == typeof(GuestbookEntry))
{
return new GuestbookEntry
{
Name = controllerContext.HttpContext.Request.Form["name"] ?? "",
Website = controllerContext.HttpContext.Request.Form["website"] ?? "",
Message = controllerContext.HttpContext.Request.Form["message"] ?? "",
};
}
return null;
}
#endregion
}
</code></pre>
<p>The new one looks like:</p>
<pre><code>#region IModelBinder Members
public ModelBinderResult BindModel(ModelBindingContext bindingContext)
{
throw new NotImplementedException();
}
#endregion
</code></pre>
<p>Any hints?</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/217521#2175211Answer by Tim Scott for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Tim Scott2008-10-20T04:29:06Z2008-10-20T04:29:06Z<p>There is a breaking change in the ViewContext constructor. It has changed from:</p>
<p>ViewContext(ControllerContext context, string viewName, ViewDataDictionary viewData, TempDataDictionary tempData)</p>
<p>to:</p>
<p>ViewContext(ControllerContext context, IView view, ViewDataDictionary viewData, TempDataDictionary tempData)</p>
<p>This broke my code because I am using MvcContrib.Services.IEmailTemplateService, which takes a ViewContext in its RenderMessage method. To get an IView from the template name, I am doing the following:</p>
<p>var view = ViewEngines.DefaultEngine.FindView(controllerContext, viewName, null);</p>
<p>Not sure if this is the best practice, but it seems to work.</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/218985#2189850Answer by Tim Scott for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Tim Scott2008-10-20T16:09:05Z2008-10-20T16:09:05Z<p>If you are using Html.Form from the futures assembly (Microsoft.Web.Mvc) you might get a name collision on the FormMethod enum. For example:</p>
<pre><code>Html.Form<FooController>(c => c.Bar(), FormMethod.Post, new Hash(@class => "foobar"))
</code></pre>
<p>This will complain that FormMethod is an ambiguous reference between Microsoft.Web.Mvc and System.Web.Mvc. This is quite sad because IMHO BeginForm does not provide a viable option due to its lack of an override that uses a lambda expression. Your only option is to use magic strings, which resist refactoring.</p>
<p>The best solution, it seems, is to put the following into every view that uses FormMethod:</p>
<pre><code><%@ Import Namespace="FormMethod=Microsoft.Web.Mvc.FormMethod"%>
</code></pre>
<p>Ugh. Hopefully this is temporary. I expect that the futures assembly can be changed to use the enum from System.Web.Mvc. Or much better yet, hopefully they overload BeginForm to use expressions.</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/219014#2190140Answer by Tim Scott for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Tim Scott2008-10-20T16:16:53Z2008-10-20T16:16:53Z<p>It seems that Html.Image is broken. <a href="http://stackoverflow.com/questions/114108/aspnet-mvc-preview-5-htmlimage-helper-has-moved-namespace">As of preview 5 it was moved to the futures assembly.</a> I cannot imagine why. Anyway, the error is:</p>
<pre><code>Method not found: 'Void System.Web.Mvc.UrlHelper..ctor(System.Web.Mvc.ViewContext)'
</code></pre>
<p>The best solution I can see is to replace this:</p>
<pre><code><%=Html.Image("~/Content/Images/logo.jpg") %>
</code></pre>
<p>with this:</p>
<pre><code><img src="<%=Html.ResolveUrl("~/Content/Images/logo_350.jpg")%>" />
</code></pre>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/219181#2191811Answer by Tim Scott for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Tim Scott2008-10-20T17:06:49Z2008-10-20T19:33:48Z<p>This is now broken:</p>
<pre><code><%=Html.TextBox("Name", new Hash(@class => "required"))%>
</code></pre>
<p>In Preview 5 the above would bind the value of ViewData.Model.Name to the textbox. This still works:</p>
<pre><code><%=Html.TextBox("Name")%>
</code></pre>
<p>But if you want to specify html attributes, you must also specify the value as follows:</p>
<pre><code><%=Html.TextBox("Name", ViewData.Model.Name, new Hash(@class => "required"))%>
</code></pre>
<p>Actually this is not really safe. If there is any chance ViewData.Model might be null you need to do something like this:</p>
<pre><code><%=Html.TextBox("Name", ViewData.Model == null ? null : ViewData.Model.Name, new Hash(@class => "required"))%>
</code></pre>
<p>This change seems counter to the Beta release notes:</p>
<blockquote>
<p>"...in order to reduce overload
ambiguity...the value parameter was changed
from object to string for several
helper methods."</p>
</blockquote>
<p>The value parameter for TextBox used to be string, and it was changed to object. So to avoid ambiguities they had to remove the one overload that I use the most. :(</p>
<p>IMHO, every HTML helper method should have overloads that allow binding in all cases without specifying the value. Otherwise we will end up with inconsistent view code that will confuse future devs.</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/225236#2252364Answer by CraftyFella for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?CraftyFella2008-10-22T10:57:07Z2008-10-22T10:57:07Z<p>All i had to do was update the assemblies from </p>
<p>%ProgramFiles%\Microsoft ASP.NET\ASP.NET MVC Beta</p>
<p>Also get the most recent Microsoft.Web.MVC from <a href="http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=18459" rel="nofollow">codeplex</a></p>
<p>to update my futures assembly too.</p>
<p>add in 2 lines to the web.config</p>
<p>This one to the <code><assemblies></code> Section:</p>
<pre><code><add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</code></pre>
<p>This one to the <code><namespaces></code> section:</p>
<pre><code><add namespace="System.Web.Mvc.Html"/>
</code></pre>
<p>Then i had to update all the <code><%using (Html.Form())</code> to <code><%using (Html.BeginForm())</code></p>
<p>On one code file i had to add the <code>System.Web.Mvc.Html;</code> namespace</p>
<p>My stuff is based on Rob Conery's <a href="http://blog.wekeroad.com/mvc-storefront/" rel="nofollow">MVC Storefront</a>, so anyone using that should be able to follow the above.</p>
<p>Hope it helps someone out there.</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/229125#2291250Answer by alexis.kennedy for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?alexis.kennedy2008-10-23T09:39:58Z2008-10-23T09:39:58Z<p>What Will said above, except that in addition to deleting the assemblies from the GAC and re-adding the references I also had to run the Beta installer again (putting the right assemblies in the GAC this time, though I'm just using a file reference).</p>
<p>I suspect if I'd deleted the Preview 5 assemblies from the GAC (and I've no idea how they got in there either) before I ran the installer, everything might have been OK. Worth trying.</p>
<p>In the <em>unlikely</em> event that anyone else out there is as daft as me and working on Vista, you may not need to do the registry hacking above in order to delete the old assemblies - just run gacutil from an admin command prompt. Doh!</p>
http://stackoverflow.com/questions/208468/issues-during-asp-net-mvc-upgrade-from-preview-5-to-beta/264775#2647750Answer by Mr. Kraus for Issues During ASP.NET MVC Upgrade from Preview 5 to Beta?Mr. Kraus2008-11-05T10:20:48Z2008-11-05T10:20:48Z<p>I found that updating the web.config namespaces element with the namespaces from a blank project fixed my problems. I also had to update my ModelBinders due to the interface change.</p>