Hdang
Hdang

Reputation: 1

Weblogic 10.3 Session Not timeout

I did upgrade Weblogic from version6 to version 10. Weblogic is configured replicated_if_cluster with 2 servers, and using "multicast" for communications between clusters. But Sessions never times out, even though I set Max Inactive Interval of Session session.setMaxInactiveInterval(300)

It worked before I did upgrade version, and it's working on a single server (not cluster). Please advise!

Upvotes: 0

Views: 3223

Answers (1)

sas
sas

Reputation: 11

Set the session time out intervals either in web.xml or weblogic.xml. This way it is guaranteed to work. Setting the setMaxInactiveInterval in the Session Object only invalidates the object inself.

Upvotes: 1

Related Questions