What is the primary architectural constraint of a RESTful web service?

  • Scalability
  • Security
  • Session Management
  • Statelessness
The primary architectural constraint of a RESTful web service is statelessness. This means that each request from a client contains all the information needed to understand and fulfill the request, and no session state is stored on the server between requests.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *