Hello all,
In a session-less application, i would need to store state in the
client. At least a pointer (ID, URI, UUID, etc), for the remote server
to retrieve my data. Let us consider the regular browser + javascript
client and the problem of keeping state across pages.
As i can't count on posted forms, i think a "postback" approach is out
of question to store such reference.
I suppose cookies would have the same drawbacks as the usual http
session, plus "reinventing" the wheel.
A client-side storage, e.g. google gears, could handle it, but that
opens another can of worms.
So that leaves me with an ugly hack, suck as storing stuff on
window.name or something like that.
Am i missing something? Have anyone found good solutions for such problem?