• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

monitoring web services

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

We have many webservices applications running on Tomcat/webspere. Is there any mechanism by which we can constantly poll these applications to make sure they are up and running. There should be a notification(email) for any failure.


Thanks,
Prashant
 
Ranch Hand
Posts: 41
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Couple of ways:

1) Create a method in the webservice which can be used to poll the health of webservice.
2) I am not sure of how your webserices are built, but obtain the wsdl file by typing in the required url in the browser. For example to obtain wsdl file from weblogic you can type http://myServer:port/MyProject/MyWebService.jws?WSDL
3) If have a UDDI registry being used then I think you can inquire about a webservice.

 
reply
    Bookmark Topic Watch Topic
  • New Topic