Code on demand: Difference between revisions

Content deleted Content added
copyvio from: https://www.kennethlange.com/posts/What-are-RESTful-Web-Services.html
No edit summary
Line 15:
To further simplify interactions between clients and servers, the second constraint is that the communication between them must be stateless.
 
This means that all information about the client’s session is kept on the client, and the server knowsis nothingcompletely of it (so no cookies, session variables, or other naughty stuff!)unaware. The consequence is that each request must contain all information necessary to perform the request (i.e. it cannot rely on any context information).
 
=== Cache ===