I'm working on an MVC application using WIF.
I'm trying to store some session variables in a ClaimsIdentity
using something like:
ClaimsIdentity identity = HttpContext.User.Identity as ClaimsIdentity;
identity.AddClaim(new Claim("foo", "bar"));
This seems to store everything in a cookie.
I'm trying to figure out how I could store this data on the server. I looked around, but didn't manage to find anything really useful (I'm a total newbie when it comes to WIF).
Is there an easy way to do that ?