Tagged Questions
The stateless tag has no wiki summary.
12
votes
10answers
2k views
Do stateless random number generators exist?
Is there a difference between generating multiple numbers using a single random number generator (RNG) versus generating one number per generator and discarding it? Do both implementations generate ...
11
votes
2answers
3k views
OAuth's tokens and sessions in REST
The other minute I read an article on OAuth. It described especially the tokens being exchanged between client and service provider during a series of requests.
The article also mentioned that OAuth ...
10
votes
2answers
980 views
Is it difficult to make a mainly stateless web application with Wicket?
I've been working with Wicket for month or two now, making simple web applications with it and getting used to models and so forth. Now I'd like to move forward and see if I can put what I've learned ...
8
votes
2answers
557 views
how to get advantage of stateless framework
I would like to use http://code.google.com/p/stateless in my code to separate the functionality from its dependencies. I didn't find any advanced examples of the usage, so this question is about ...
7
votes
1answer
206 views
Is stateless visitor pattern possible in C++?
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 yields ...
7
votes
3answers
249 views
Stateless Object Oriented Programming vs. Functional Programming?
One of the prime reasons for the increasing shift in attention towards functional programming these days is the rise of multithreading/processing and the advantages of FP's focus on side-effect free, ...
7
votes
3answers
191 views
C++ static initialization of stateless class
Suppose I have a class T where
T has no virtual functions.
T instances have no state.
T has static member instances of itself.
T itself has no other state.
Can the C++ static initialization fiasco ...
7
votes
5answers
2k views
.NET Workflow Engine Suggestions
I came across stateless, a hierarchical state machine framework based on Simple State Machine for Boo, but configured using C# 3.0
It is easy to configure and use, I will probably use it soon.
But I ...
5
votes
3answers
136 views
advantages of stateful programming? [closed]
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 curious ...
5
votes
3answers
198 views
Are there techniques to prevent double submissions in stateless web applications?
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 ...
5
votes
2answers
770 views
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 both the username and password are correct, the WCF service provides the client ...
5
votes
2answers
233 views
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? Or is there more to it?
If it is just the user session storing, what is the ...
5
votes
4answers
1k views
How do I make my Web Application stateless yet still do somthing useful?
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 ...
5
votes
2answers
2k views
Stateless Session Beans vs. Singleton Session Beans
The Java EE 6 Tutorial says:
To improve performance, you might choose a stateless session bean if it has any of these traits:
The bean’s state has no data for a specific client.
In a ...
4
votes
4answers
266 views
Stick to my REST guns or break statelessness? Advice needed
I wrote a RESTful servlet, and the UI developer wants to save the logged-in state on the server.
He made this strange claim: "I haven't encountered a production REST implementation that is pure ...
4
votes
7answers
345 views
What's the preferred method for authenticating users of a webpage in a RESTful way?
I'm developing a new experimental web-application framework, and I decided to give RESTful some attention. I've read up on the basics, and feel like I have a pretty good understanding of RESTful as a ...
3
votes
5answers
184 views
Should the strategy pattern be stateless?
Must a class that is a "gang of four" strategy be completely stateless (ie no fields) or can it contain immutable state (ie final fields)?
3
votes
1answer
193 views
Going “Stateless” and loading scripts dynamically
What I want to know is if I am approaching this from the right angle.
I have an asp.net app I am building. I am using a Masterpage for the overall look of the app (below you can see the code).
I'd ...
3
votes
2answers
840 views
Stateless vs Stateful - I could use some concrete information
This is my first post on stack overflow, and I got here because I'm reading a book by Jon Skeet (you probably already know which one I'm talking about) - C# in depth, really nice book, and he said ...
3
votes
1answer
249 views
Can i have both ISession and IStatelessSession side by side?
Consider a transaction-per-view model where with an IHttpModule i open a transaction using a standard ISession.
Now, i have a page where i want to do some batch operations. Since IStatelessSession is ...
3
votes
3answers
4k views
Stateful vs. Stateless Webservices
Imagine a more complex CRUD application which has a three-tier-architecture and communicates over webservices. The client starts a conversation to the server and doing some wizard like stuff. To ...
3
votes
1answer
813 views
Best 'logging' option on Amazon Cloud. RDS or SimpleDB?
My site's architecture includes ASP.Net & MySQL. I am planning to deploy it on Amazon Cloud. This would mean EC2 instance(s) and RDS. My query is regarding logging.
I'm ensuring that my ...
3
votes
1answer
156 views
Any existing way to make sure beans defined in spring xml are stateless?
Working on a large size project, we started to use spring to manage our dependency injection. Since most dev are migrate from coding stateful class, we found some of stateless bean actually contain ...
2
votes
2answers
61 views
Buzz words in architecture document
The architecture document of our application has a couple of buzz words that I am not able to relate to intuitively
Stateless distributable application
Pluggable security model
I can ...
2
votes
2answers
87 views
Design: Stateless Prototypes in Spring
I got used to create Spring beans for Service, DAO or Controller objects as Singletons. Well, it seems natural to me. Now a colleague of mine likes to make all such objects Prototypes.
What can be ...
2
votes
3answers
59 views
How can I avoid using server-side sessions for authentication in a Java webapp?
I'd like to secure access to resources in my web application, so I authenticate my users using the standard mechanisms and use server-side sessions to preserve the authenticated state.
I'd like to ...
2
votes
1answer
93 views
How can I send XMPP messages after a successful transaction?
In my project I have all services designed as stateless session beans. During the workflow, new data is created and this should be reported back to the clients. I only want to send this messages when ...
2
votes
2answers
110 views
If HTTP is stateless why do I need to close a database connection?
A commonly problem I see in lots of web languages is that database connections need to be closed otherwise the number of total connections gradually increases and then it grinds to a halt in whatever ...
2
votes
4answers
203 views
Is there a way using ASP.NET to always run some server side code when a user leaves a page?
I was wondering if there is any way to always run some server side code when a user leaves a page in ASP.NET. The page Unload event is no good because that doesn't get called if someone clicks on a ...
2
votes
1answer
278 views
Can Castle ActiveRecord open a stateless session?
Real simply question: can Castle ActiveRecord open a stateless session? If so, how would I do it? And if not, how would I go about opening a stateless session without it?
2
votes
3answers
132 views
Stateless Blocking Server Design
A little help please.
I am designing a stateless server that will have the following functionality:
Client submits a job to the server.
Client is blocked while the server tries to perform the job.
...
1
vote
1answer
125 views
EJB3 Stateless Bean is always null in REST-WebService (Glassfish3, EJB3, Stateless Bean,)
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 ...
1
vote
1answer
47 views
Local stateless EJB injection within singleton startup EJB
is this possible somehow? Following scenario:
statelesse local EJB with name A
singleton startup EJB with name B
B contains a reference to A
I tried but my application server (WAS) fails on ...
1
vote
1answer
52 views
how to navigate from one view to next in a JSF2/JPA/stateless EBJs (jsf managed controllers) and retain data
I have a web app using JSF2 with JPA Entities, Stateless ejb session beans as my facade/ejb objects, and managed beans (request and view scoped) as controllers exposing business methods, managed ...
1
vote
0answers
59 views
Can't convert from @stateless to @stateful beans
I'm having a problem instantiating a stateful session bean on glassfish3.1.
A @ManagedBean (session scoped) of a JSF application used to use a @Local interface of a @Stateless session bean and ...
1
vote
1answer
16 views
Instance variable in stateless session bean
I have a stateless session bean which has an instance variable and two public methods.Below is pseudo code of it.
private int instanceVar;
public void methodA(int x) {
instanceVar = x;
}
public ...
1
vote
1answer
80 views
EJB stateless - Private members initialisation
I'm new to EJB and I'm facing my first problem. I'm trying to use an @Schedule method contained in a Stateless EJB. I'd like this method to use a private member variable which would be set at bean ...
1
vote
1answer
28 views
How is it possible to have more then 1 concurrent connection in IIS?
From what I understand about the HTTP protocol is that it is stateless. This means (to me) that is, it is only ever serving one connection at a time.
Even if there is 1,000,000 million users trying ...
1
vote
1answer
137 views
How to use PHP sessions with REST client application ?
PHP use browser cookie PHPSESSID to store the session value let say 12345 and it does by creating a file for each session on server by default (session_12345.txt ) . What if the request is coming from ...
1
vote
3answers
190 views
What is a stateless state in web app or websites
I am just into learning the basics of web application development. As i was reading the different approaches like ASP.Net Web Forms, ASP.Net MVC ,etc. Most of the tutorials mentioned the term ...
1
vote
2answers
213 views
Opposite of Stateless Protocol?
I would like to know what the opposite of a 'stateless protocol' is. Am I correct in assuming that, seeing as HTTP is stateless, for example, then a protocol such as FTP is the opposite/one that ...
1
vote
1answer
287 views
instance variables in stateless session beans
I have read this post and it doesn't answer my question.
Stateless session bean with instance variables
I am reading the JEE5 tutorial and on this page it states
...
1
vote
1answer
383 views
Oracle CRM On Demand Stateless web service access
I've seen statements on various Oracle.com properties that claim Oracle CRM On Demand has the capability to access its webservices in a stateless manner however I can't seem to find any documentation ...
1
vote
1answer
148 views
Is Terracotta used professionally?
Today at work I had a discussion with my co-workers and my boss about stateless/stateful beans (we just finished a project using JSF, it was the first time anyone at this company did something JSF ...
1
vote
1answer
410 views
Wicket: stateless AJAX behaviors in stateful page without serialization
I have pretty stateful page with plenty of AJAX components. Most of these components have behaviors, which renders JavaScript code for calling AJAX requests to Java code. Because page isn't stateless, ...
1
vote
2answers
304 views
asynchronous stateless API
Imagine a table view listing some recipes. Each time the user taps on a recipe a new table view is loaded listing receipe ingredients.
To get the information, I'm asynchronous calling a REST API ...
1
vote
2answers
131 views
need help in EJB stateless beans
I am new to EJB. I have a requirement of calling a method of remote stateless bean and setting a value, before calling any method on the same bean. The value set from first method call should be ...
1
vote
2answers
472 views
Static vs Instance members in Stateless EJBs
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 ...
1
vote
3answers
109 views
Should I use a separate table to store online users or should I just use additional fields in the extant members table?
I'm working on an online system that allows users to interact socially and of course it will be important to be able to identify users that are in fact online. I know about HTTP being stateless and I ...
1
vote
1answer
253 views
Combining Stateless & Stateful Connection
My application have a Stateless EJB. And Now I need to do some db operation via Stateful. Can this Stateless EJB can access the DB Utility which will open connection stateful? Will this lead to any ...