Hi all, I'm starting to rethink my current code structure. One of the question I came up with is where the application state is supposed to be. Currently I have a bean which holds my state in the session. If I moved this application to a new client, the state bean could end up in the database. So my question is what is appllication state considered, model, view or controller?
My guess would be model, and that you just save it in the session instead of the database because it is faster for web applications. Any ideas? Graham

