I am running an ASP.NET MVC 5 project in VS 2013, which will ultimately need to support CAS (Central Authentication Service) for authentication. Jasig has an official official .NET client , but it is somewhat old and seems to have been created in MVC for 3 days.
Does anyone have any experience marrying this technology with the new MVC 4 or 5? My particular concern is that MVC 5 now uses OWIN authentication instead of the old forms authentication that is associated with CAS in ASP.
I want this project to start on the right foot, so when it comes time to add CAS, I'm not trying to recreate the main parts of the code. I would prefer to do this in MVC 5 with VS 2013, but MVC 4 in VS 2012 is also an option.
e: I understand that I really did not ask the question, as SO prefers. It boils down to the following: can I use CAS with MVC 5, what limitations will I name, and what special workarounds (if any) are needed to integrate it into my project?
source share