stateless Questions
2
Solved
Is it necessary to use CSRF Protection when the application relies on stateless authentication (using something like HMAC)?
Example:
We've got a single page app (otherwise we have to append the ...
Opus asked 25/1, 2014 at 22:40
1
It is easy to create highly integrated code in python, so the need to quit and restart an application when its code is changed is understandable.
However, it surely must exist some strategies and ...
Cohbert asked 30/12, 2015 at 13:23
3
Solved
I am trying to understand token-based authentication these days, which claims to be a stateless authentication method. And I met the concept of stateless web application.
Below are some threads I ...
2
I had a concept that HTTP is stateless, so SOAP over HTTP (for web services) is also stateless. I used to think that state meant “state of the object”. For an example, suppose I have a class called...
Occurrence asked 2/5, 2012 at 6:17
2
Solved
I'm going to implement OAuth 2.0 and REST API with it
to grant different permissions per users and also to scale well.
To scale well, stateless is easier because there is
NO file, database, in-...
4
Solved
What does it mean for the web and the HTTP protocol to be stateless? Why are they stateless?
3
Solved
Hibernate has a Stateless Version of its Session: Does something similar exist for the JPA EntityManager? I.e. an EntityManager that does not use the first level cache?
Cologne asked 24/11, 2014 at 9:39
2
Solved
I know that to make a stateless application, we need to transfer the user state back and forth instead of server holds the user state.
However, there must be some states stored in the server, I re...
Vallonia asked 21/11, 2014 at 4:44
2
I know that there are many discussions on difference between stateful app and stateless app, and that stateless is what function programming language does, every function call with the same a...
Bo asked 9/11, 2014 at 16:14
2
I read What does “state transfer” in Representational State Transfer (REST) refer to? and several post or videos about REST, and I know one of the constraint of REST is stateless.
According to m...
Abie asked 19/11, 2014 at 12:0
1
Solved
I have spent a whole day understanding what stateless architecture is. I read many posts and answers like
Can My Web App Implement User Login and Remain Stateless?
Pros and Cons of Sticky Sessi...
Tameratamerlane asked 10/11, 2014 at 14:1
1
I would like to know, what are the principal differences between :
javax.enterprise.context.SessionScoped and javax.ejb.Stateful
javax.enterprise.context.ApplicationScoped and javax.ejb.Sin...
2
Solved
Bob uses a web application in order to achieve something. And:
His browser is on diet, therefore it does not support cookies.
The web application is a popular one, it deals with a lot of users a...
Hylotheism asked 14/12, 2013 at 21:29
0
I come from Play!framework. Very much like it's stateless architecture. Say the session concept is different from the class Java Servlet's HttpSession. Session in Play can store very limited string...
Lava asked 6/12, 2013 at 20:45
1
Solved
I have a web service written as an ASP MVC application which basically uses rolling cookies as its authentication mechanism. So someone sends their username and password over https to the service, ...
Jhansi asked 1/11, 2013 at 9:31
2
I have recently been thinking about how to get my webframework/application-stack right. I'm slowly moving over to scala and functional programming (coming from Python with CherryPy). So it was natu...
Conceptacle asked 30/4, 2013 at 16:29
5
Solved
I've seen this advice...
ideally the web should follow the REST principle and be completely stateless. Therefore a single URL should identify a single resource, without having to keep the naviga...
3
Solved
I have a stateless session bean which needs access to a factory class. Is it best to declare this factory class as a static or instance member in the SLSB? Am I correct in saying that, as SLSBs are...
2
With 15 years of stateful client-server software development experience (and it's inherent problems) I'm still trying to grasp the concept of statelessness in a RestFul architecture.
Suppose I hav...
1
Solved
I have assumed that if instance variables are managed by spring IOC, and are singletons that the desgin can be called stateless and threadsafe.This type of desgin could consequently be scaled to cl...
Villainage asked 25/6, 2012 at 13:2
2
Solved
I am building a Wicket web application which is going to have to handle a lot of simultaneous requests. I've setup a test environment and some jmeter scripts to do load testing and I notice I can r...
1
I hope you can help me with this:
I have a WebProject created with Eclipse as a dynamic web project, running on a Glassfish3 Server. I’m using EJB 3.0 to create a stateless Façade(@stateless Annota...
1
Solved
I was trying to translate the following Haskell code to C++:
data List t = Nil | Cons t (List t)
The straightforward translation of the algebraic data type to the stateless Visitor pattern yield...
Moulden asked 29/11, 2011 at 15:45
3
Solved
i was wondering about the benefits of stateless programming, and found someone who shared my question:
Advantages of stateless programming?
as i read through the answers though, it made me c...
Dallas asked 24/10, 2011 at 6:8
3
Solved
I want to implement double submission prevention in an existing java web application (struts actually). Architecture wise we are talking about 2 to N possible application servers (tomcat) and one s...
Indiscerptible asked 19/9, 2011 at 16:8
© 2022 - 2024 — McMap. All rights reserved.