I have ASP.NET MVC 4. Just recently I upgraded to .NET Framework 4.5, VS 2012, and I believe it also upgraded IIS express to version 8.
Now that I upgraded, my application looses POST data. In one of my WCF components I look into HttpContext.Current.Request.Form
-- it now gives me 0 fields, while I expect 4 fields. For troubleshooting, I added HttpModule with an empty body, and if I break on BeginRequest, I consistently can see all my form fields in HttpContext.Current.Request.Form
from HttpModule, but when I hit F5, I sometimes get the Form fields in the component and sometimes the Forms objects is empty.
Sounds like some kind of race condition inside of ASP.NET, MVC or something.
I am at a loss.