I know that Weblogic cluster replicates session state between nodes of the cluster (according to replication policy), but as far as I understand it does not replicate ServletContext (application scope) state.
Is there any configuration in Weblogic to make do this?
I have a list of messages (which are set by system admin) in application scope, and the application shows them to users.
Everything was fine before clustering the application servers, but after that there are some problems. The messages which are updated by admin are not shown to all users, and I believe the messages are just set on a single node of the cluster.
Also I track list of online users in the application (I update the list on user login and logout) and store the list in application scope. How can I maintain the list on cluster?