Science, asked by sitharasinan3602, 1 year ago

What are the advantages and disadvantages of statelessness in RESTful Webservices?

Answers

Answered by PrinceJK786
0
As per the REST architecture, a RESTful Web Service should not keep a client state on the server. This restriction is called Statelessness. It is the responsibility of the client to pass its context to the server and then the server can store this context to process the client's further request. For example, session maintained by server is identified by session identifier passed by the client.
Similar questions