connection pool for JMX?
I have a web app, From with in the web app, I would talk JMX to some other process.
Now the question are
1) DO I need to store the one/same JMX connection and use that for all the requests. if so, how do I store it.a) Using a singleton object or 2) Store the JMX connection object in the servlet context .
2) If I have only one connection, how does it works on multiple requests (you know web apps, every request a thread)
I appriciate your response

