Top "Stateless" questions

Stateless apps don't expose any information about what has happened or changed since it started running

OAuth 2.0. No session? (stateless)

I'm going to implement OAuth 2.0 and REST API with it to grant different permissions per users and also to scale …

session rest oauth oauth-2.0 stateless
What are the benefits of a stateless web application?

It seems some web architects aim to have a stateless web application. Does that mean basically not storing user sessions? …

session session-state session-variables stateless
RESTful APIs must be stateless, but what about concurrency?

I'm curious how I solve the concurrency issue for a RESTful API. More specifically, I have a collection of objects …

api rest concurrency stateless
What does it imply to call a web service (SOAP over HTTP) stateless?

I had a concept that HTTP is stateless, so SOAP over HTTP (for web services) is also stateless. I used …

web-services http soap state stateless
Differences : @SessionScoped vs @Stateful and @ApplicationScoped vs @Singleton

I would like to know, what are the principal differences between : javax.enterprise.context.SessionScoped and javax.ejb.Stateful javax.…

java singleton ejb stateless stateful
Java Persistance Application Stateless vs. Stateful

I am new in JPA and I can't understand the use and the difference between stateless and stateful. Any experiences? …

java jpa stateless stateful
Are WCF services stateless by default?

I've got a simple WCF service that lets clients/consumer applications log in by providing a username and password. If …

c# wcf stateless stateful
Stateless with cookie vs stateful

I found sth like this: "stateful – keep track of the previously stored information which is used for current transaction. stateless – …

session stateless
thread safe, stateless design using Spring

I have assumed that if instance variables are managed by spring IOC, and are singletons that the desgin can be …

java spring thread-safety scalability stateless
How do I make my Web Application stateless yet still do something useful?

I've seen this advice... ideally the web should follow the REST principle and be completely stateless. Therefore a single URL …

asp.net rest webforms stateless