I'm building a solution where 2 applications are involved. One of them handles the login and user management, and and other provides the service itself.
I need a way to send the user from the first app to the second, along with some data that derives from the whole login process. The data has to be sent in such a way that it can't be tampered with; or a way to check if it's legit has to be available.
Some more details:
- The solution consists of 2 ASP.NET (Webforms) websites
- Although both websites are sitting on the same server, a solution that doesn't rely on this is prefered
Thanks in advance.