Tagged Questions

3
votes
2answers
82 views

.NET Workflow Engine Suggestions ( currently considering stateless )

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 …
2
votes
2answers
106 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 m …
1
vote
2answers
48 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 t …
2
votes
3answers
56 views

Stateless Blocking Server Design

Hello Ladies and Gents, 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 blocke …
1
vote
3answers
45 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 be …
0
votes
0answers
51 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 …
1
vote
4answers
137 views

Preserving checkbox states on same page with query results

I'm using django, and have a static webpage with a GET form, and about 30 checkboxes. The user selects various boxes, and clicks search, and a result from a database is returned to …
8
votes
10answers
980 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 impleme …
1
vote
1answer
233 views

Can someone explain the difference between @Remote / @Local or only @Stateless in ejb?

I guess the topic says it. I have tried googling this, but havent gotten the answer I am looking for. I have many EJB's with only @Stateless. And sometimes I put @Local on them wi …