Advantages of Stateless service
- Better scaling
- No session storage on server
- Any server in a cluster can handle any request
- All the result pages can safely be cached
- More reliable
- client can safely re-send a request
- Better resource reuse
- All the result pages can safely be linked to
- By using REST over HTTP instead of SOAP, we can drastically reduce the overhead of message processing
- An HTTP server implementation is feasible for a mobile device