Activity › Forums › Salesforce® Discussions › What are the advantages of statelessness in RESTful Webservices in Salesforce?
Tagged: REST, Rest API, Rest Service, Salesforce REST API, Web Service, Web Service Class
-
What are the advantages of statelessness in RESTful Webservices in Salesforce?
Posted by suniti on July 9, 2018 at 8:25 AMWhat are the advantages of statelessness in RESTful Webservices in Salesforce?
Aditya replied 6 years, 2 months ago 6 Members · 5 Replies -
5 Replies
-
Hi Suniti,
An advantage of statelessness in RESTful Webservices:-
- For this specialty, the web services can deal each method request independently.
- Web services do not maintain the record of the client’s previous interactions which simplifies designing the application.
- As RESTful web services constantly deal with HTTP protocols which are also a statelessness protocol that matches the basic criteria.
Thanks.
- [adinserter block='9']
-
Following are the benefits of statelessness in RESTful Web Services −
Web services can treat each method request independently.
Web services need not maintain the client’s previous interactions. It simplifies the application design.
As HTTP is itself a statelessness protocol, RESTful Web Services work seamlessly with the HTTP protocols.Thanks
-
Hi,
REST APIs are stateless, meaning that calls can be made independently of one another, and each call contains all of the data necessary to complete itself successfully.
Hope this helps.
-
As RESTful web services constantly deal with HTTP protocols which are also a statelessness protocol that matches the basic criteria.
-
Hi Pooja,
Web services do not maintain the record of the client’s previous interactions which simplifies designing the application.
As RESTful web services constantly deal with HTTP protocols which are also a statelessness protocol that matches the basic criteria.
Log In to reply.