Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there a way to interact with websphere 6.1 from a servlet to check if an application is running ? If so, is such transaction too resource-consuming operation to do it let's say before an "index" page is loaded ?.

The java.net.URL approach is simpler but discarded.

Thanks

share|improve this question
Are you trying to know if an WebApp is running from a Servlet? If you are inside your servlet this mean your app is Running. Also, it depends what you mean by running: The App Server is running, The DB is responding, etc. Any way, you could check the Perf Servlet, this might help you: hostname/wasPerfTool/servlet/perfservlet – Aerosteak Jan 28 '11 at 22:08

1 Answer

up vote 1 down vote accepted

you can use the mbean/jmx interface: search for this infocenter topic in your release: tjmx_updating_app.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.