stateless Questions
3
Solved
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 fre...
Shopper asked 13/9, 2011 at 14:50
5
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)?
Reflate asked 30/5, 2011 at 13:23
2
Solved
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...
3
Solved
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 fia...
Scripture asked 16/5, 2011 at 22:2
2
Solved
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 ma...
1
Solved
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
http://download.oracle.com/javaee...
2
Solved
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 th...
Phelan asked 4/4, 2011 at 14:20
1
Solved
I am working on a REST API that will be used by developers writing mobile apps. Users will be able to use 3rd party services (Google, Twitter etc) to authenticate themselves, this is mainly handled...
2
Solved
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 learn...
3
Solved
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 pr...
Pomfret asked 6/4, 2010 at 21:12
7
Solved
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...
Sidney asked 6/1, 2010 at 3:6
2
Solved
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 OAu...
10
Solved
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...
© 2022 - 2024 — McMap. All rights reserved.