How to manage state in REST
Posted
by user317050
on Stack Overflow
See other posts from Stack Overflow
or by user317050
Published on 2010-04-15T00:13:18Z
Indexed on
2010/04/15
0:23 UTC
Read the original article
Hit count: 311
rest
I guess this question will sound familiar, but I am yet another programmer baffled by REST.
I have a traditional web application which goes from StateA to StateB and so on If the user goes to (url of) StateB, I want to make sure that he has visited StateA before. Traditionally, I'd do this using session state.
Since session state is not allowed in REST, how do I achieve this?
© Stack Overflow or respective owner