in Technology by

What is statelessness in RESTful Webservices?

Please log in or register to answer this question.

1 Answer

0 votes
by

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

Related questions

0 votes
asked Nov 7, 2020 in Technology by JackTerrance
0 votes
asked Nov 7, 2020 in Technology by JackTerrance
0 votes
asked Jun 24, 2021 in Technology by JackTerrance
...