Help coderanch get a
new server
by contributing to the fundraiser
  • Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

How number of active Sessions count in Clustered server environment WAS7?

 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Dear experts,

We have our application running on 7 Web Sphere application servers running clustering environments. How we need to count number of active sessions at any given point in time?

Thanks,
SR
 
Ranch Hand
Posts: 446
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This can be achieved by SMS (Session Mgmt Server), which comes bundled with TAM for eBusiness. But simple one way to achieve this is:

1. Implement a HTTP Session Listener class, which will get called whenever a new session is created or destroyed.

2. Create a table in the database, which will store the session count.

3. Increment counter every time a new session is created and decrement every time a session is destroyed.

reply
    Bookmark Topic Watch Topic
  • New Topic