Hi , I am looking to find if a Jboss appserver is up and alive by using any ping service.Is there any Tomcat service or other way to do this using MBean ? I can write some ping utility but I wanted to know if there is an existing API point.
For example in Weblogic we can do
---------------------------------------------------
T3ServicesDef t3_services = T3Services.getT3Services();
String sent = "Okay";
String read = null;
read = t3_services.admin().ping( sent.getBytes() );
------------------------------------------------------
Thanks,
N
-
ping service in Jboss (1 messages)
- Posted by: Nams Rastogi
- Posted on: September 16 2004 11:04 EDT
Threaded Messages (1)
- ping service in Jboss by Arun Nair on September 17 2004 11:56 EDT
-
ping service in Jboss[ Go to top ]
- Posted by: Arun Nair
- Posted on: September 17 2004 11:56 EDT
- in response to Nams Rastogi
Do a resource look up against that server. you able to get the context then the server is running otherwise not .
-arun