Hi,
Can anyone help me creating a Stateful statemachine? How can Stateful
statemachine maintain its state in terms of Web Application ?
Anybody please help me do this.
Thanks in advance
Oliver Wong - 15 Jun 2006 15:15 GMT
> Hi,
>
> Can anyone help me creating a Stateful statemachine?
How does a "Stateful statemachine" differ from a "normal" state machine?
> How can Stateful
> statemachine maintain its state in terms of Web Application ?
Depends on whether the state machine's state is persisted with respect
to a particular session, or globally across all sessions. In the former
case, store the state in the session. In the latter, store it in the DB or
filesystem.
- Oliver
jmcgill - 15 Jun 2006 20:23 GMT
> Hi,
>
> Can anyone help me creating a Stateful statemachine?
A stateless state machine would be pretty useless, don't you think?
> How can Stateful
> statemachine maintain its state in terms of Web Application ?
Do you mean to ask, "how can a web application maintain state between
queries?"
> Anybody please help me do this.
Try to be much more specific as to your needs. So far, your question
makes almost no sense. How can anybody possibly help you?