What issues or refactoring did you have to do when you upgraded from ASP.NET MVC Preview 5 to the newly released Beta version?
|
1
|
|
|
|
|
|
I'm about to do this myself. Here's the list of changes from the readme: Changes Made Between CodePlex Preview 5 and Beta
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.
|
||
|
|
|
|
Issue number one: Yellow screen of death. 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. 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 here and delete the registry entry. I was then able to remove the gac's version of system.web.mvc. This STILL didn't fix the problem. I had to RE-ADD the references AGAIN. Now its working. Just to be clear!!! The beta assemblies were dropped under Program Files, while an older version of System.Web.Mvc was in the GAC. |
||||||||
|
|
|
I use Autofac as my DI container. A null container exception gets thrown when trying to dispose of the container objects. |
||
|
|
|
|
I experienced the same problem as Will and had to do similar things as him, including copying the dlls to the bin folder. Now things are working in the internal vs.net server but are causing IIS7 to crash. Ok, it turns out one of the major problems is that I missed the step to update the compilation assemblies in the web.config:
|
|||
|
|
|
Yup, also use Autofac as DI container. Get same issue as this guy http://groups.google.com/group/autofac/browse_thread/thread/68aaf55581392d08 No idea if a fix is possible but cant continue until this is fixed ...... |
||
|
|
|
Disregard this... I'm a loser - it's Microsoft ASP.net in program files... not just ASP.net Maybe this should be a second question, but I think keeping it all in one place might help. 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. I've uninstalled and reinstalled a couple times now without any luck. Anyone having a similar problem? |
||
|
|
|
|
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... 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... |
||
|
|
|
|
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. |
||
|
|
|
|
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 http://groups.google.com/group/autofac/browse_thread/thread/68aaf55581392d08 I hope they post a new version very very soon :-) |
||
|
|
|
|
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". I found the necessary assembly (Microsoft.Web.Mvc) @ http://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=aspnet&ReleaseId=18459 |
||
|
|
|
|
The problem with AutoFac has now been resolved in Revision 454 of the AutoFac code base http://code.google.com/p/autofac/issues/detail?id=86&can=1 |
||
|
|
|
|
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.. My old looked like:
The new one looks like:
Any hints? |
||
|
|
|
|
There is a breaking change in the ViewContext constructor. It has changed from: ViewContext(ControllerContext context, string viewName, ViewDataDictionary viewData, TempDataDictionary tempData) to: ViewContext(ControllerContext context, IView view, ViewDataDictionary viewData, TempDataDictionary tempData) 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: var view = ViewEngines.DefaultEngine.FindView(controllerContext, viewName, null); Not sure if this is the best practice, but it seems to work. |
||
|
|
|
|
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:
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. The best solution, it seems, is to put the following into every view that uses FormMethod:
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. |
||
|
|
|
|
It seems that Html.Image is broken. As of preview 5 it was moved to the futures assembly. I cannot imagine why. Anyway, the error is:
The best solution I can see is to replace this:
with this:
|
||
|
|
|
|
This is now broken:
In Preview 5 the above would bind the value of ViewData.Model.Name to the textbox. This still works:
But if you want to specify html attributes, you must also specify the value as follows:
Actually this is not really safe. If there is any chance ViewData.Model might be null you need to do something like this:
This change seems counter to the Beta release notes:
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. :( 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. |
|||
|
|
|
|
All i had to do was update the assemblies from %ProgramFiles%\Microsoft ASP.NET\ASP.NET MVC Beta Also get the most recent Microsoft.Web.MVC from codeplex to update my futures assembly too. add in 2 lines to the web.config This one to the
This one to the
Then i had to update all the On one code file i had to add the My stuff is based on Rob Conery's MVC Storefront, so anyone using that should be able to follow the above. Hope it helps someone out there. |
||
|
|
|
|
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). 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. In the unlikely 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! |
||
|
|
|
|
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. |
||
|
|
