Monitoring of different webMethods server’s availability

Dear Experts,
I am looking for some ideas on how i can monitor different/multiple webMethods servers are up and available.

NOT looking for any specific tools to monitor, i need to implement this as a flow service or a java service.

Basically i would like to input the URL of webMethods server and i wanted to know if that server is up and available .
I am aware of “pub.client:http” service, but for this we need to input the user and password to authenticate which i do not want .

So let me know if any other ideas to do this.

Appreciate your thoughts and ideas in this regard.

Thanks,
Venkata Vidya Sagar P

loop over
pub.remote:invoke

service= “wm.server:ping” and
alias=server_alias defined in remote servers.

Have a dsp call this service.

1 Like

You can call the below url: without any authentication

http://ip:port/invoke/wm.server/ping?

Hello,

What is the wM version? If its 9.x , you may want to try command central tool for monitoring and administering the servers.

regards,
Shahed

@ Mohammed,

Looks like he is not looking for tool “NOT looking for any specific tools to monitor, i need to implement this as a flow service or a java service.”

Yes, command central OOTB is a right candidate to monitor and install/configure the components of the landscape. But it requires SPM to be running on all the nodes.

Thank you all for your thoughts, it looks what ever Mahesh suggested is going to work for me in my case.

@Mahesh…Thank you!