Computer Science, asked by TbiaSamishta, 1 year ago

In rest architecture, there is a restriction where a rest web service is not allowed to keep a client state on the server. Such condition is known as

Answers

Answered by Arslankincsem
0

Explanation:

According to the REST (REpresentational "State" Transfer) design, the server does not store any state about the client session on the server side. This confinement is called Statelessness. Each ask for from the client to server must contain the majority of the information important to understand the demand, and can't exploit any stored setting on the server. Session state is accordingly kept totally on the client. the client is in charge of storing and handling all application state related information on the client side.

Similar questions