|
|
|
|
|
by alien_at_work
3189 days ago
|
|
>it’s sad to see a promising technology (in limited use cases) turn into a buzzword The same thing happened to REST. Every "web interface" is supposedly REST now, yet the client and server are even more coupled than they would have been if the interface were implemented in SOAP! |
|
The client-stateless-server style derives from client-server with the additional constraint that no session state is allowed on the server component. Each request from client to server must contain all of the information necessary to understand the request, and cannot take advantage of any stored context on the server. Session state is kept entirely on the client
I've heard enough verbal gymnastics to fill a book trying to excuse how modern web apps aren't violating this condition.