November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Basically you cannot do async in blocks which are rendered in a content areas. For async to work, everything top-down from the request to your code must be async and MVC does not support it for child actions. When it worked before it probably ran synchronously, blocking the thread anyway.
There are two modes of async in ASP.NET 4.5. One is "compatibility mode" and the other is the new mode which support new async/await pattern and web sockets etc. As of CMS 9 we added a setting(aspnet:UseTaskFriendlySynchronizationContext) in web.config that enables ASP.NET 4.5 mode since it is required to use the new API's.
You can read more about the different modes here: https://blogs.msdn.microsoft.com/webdev/2012/11/19/all-about-httpruntime-targetframework/
Hello,
we implemented an async block controller in our project, using the approach described here http://world.episerver.com/forum/developer-forum/Developer-to-developer/Thread-Container/2015/9/async-actionresult/ . We had Epi server version 8.xxx. However, after upgrading to 9.12 this stopped working. We stargted getting errors like:
It is interesting that async actually works, when inheriting form BlockController. Action results can be async, but they need to be different from Index(). If you have async Index() and inherit from AsyncBlockController, we get the error.
Additionally, in MVC there is a restriction that child actions cannot be asynchronius. Is it possible Epi server to have changed something in the rendering in the newer version?