We have a stateless web api application where we only use the token(obtained on login) as an identifier, which we decrypt, determine user and perform the action.
We now need to store a rather big object in session and it is a load balanced environment so SQL Server session state seems like a good fit.
Is it possible to use session in a stateless web api application?