You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now OpenID4Java comes with two implementations for
ServerAssociationStore, being the InMemoryServerAssociationStore and the
JdbcServerAssociationStore. While these implementations work just fine for most
deployments, they could pose some problems when there is a need for high
scalability where you run multiple instances of your OP and you don't want the
database to become a bottleneck.
For such deployments, a stateless implementation of the ServerAssociationStore
could be interesting. Here all instances of ServerAssociationStore share an AES
secret key. This secret key is used to encode all information of the
association within the association handle itself. This way, multiple
independent OP instances can work with the same associations, even without
explicitly communicating them with each other (via database or some messaging
system).
I've implemented such a StatelessServerAssociationStore as part of the eID IdP
project. See also: http://code.google.com/p/eid-idp/source/detail?r=455
It would be interested if OpenID4Java provided a reference implementation of
this mechanism.
Original issue reported on code.google.com by [email protected] on 25 Feb 2013 at 1:14
Original issue reported on code.google.com by
[email protected]
on 25 Feb 2013 at 1:14Attachments:
The text was updated successfully, but these errors were encountered: