Notes about RESTful Service
We already discussed about the RESTful service compare with SOAP Service and etc. Here will point out the important notes about the RESTful Services . Hope it will useful while preparing the interview When we exposing any Service /API followings are mandatory 1) Accessibility ie How to access the Service 2) Request and Response 3) How to handle the exception 4) Versioning 5) Security 6) Performance REST is nothing but Representation State Transfer and its architecture style and RESTful is a mainly for exposing the Webservices access through HTTP. RESTful does not maintains any state between the Server and Client , Its stateless service . Stateless service always create the new request whenever client communicate with Server. Always independent Request between Client and Server RESTful service transports through HTTP Protocol ofcourse its supports HTTPS also. RESTful service transfer the different data format ie its supports XML/JSON and etc. In En...