Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

Application check possible without Login?

Hello,

with our Company's Tracking Environment we like to find out whether it is possible to check that a Server and/or Application  (like  DNG, LQE, ...) is still alive and working or has hang up.
For that we like to send any https Command towards a Server or App, and will send Alarm Mail for any any http Return Code unequal 200

Is this possible without a registered user + credentials ?

Main intention is to detect a Situation where App behaves like "frozen". Effect would be that Process is still existing on Server, but not reacting onto incoming requests.

Best Regards
Klaus Hoppe

0 votes



One answer

Permanent link

 Klaus,


You can try to access contextName/rootservices to check if the application is responding. It wont give you information about application status but You can check if application is deployed correctly.

0 votes

Comments

Do you have an example, how such a request would look like? 

 You can try a simple JS.


 var req = new XMLHttpRequest();
  req.open("GET", "http://cloud.doorsnext.com/jts/rootservices", false);
  req.setRequestHeader("Accept", "application/rdf+xml");
  req.setRequestHeader("Content-Type", "application/rdf+xml");
  try {
    req.send();
    console.log(req.status);
    console.log(req.response);
  }
catch(err){
}

Thanks, I'll try

 

If you will need help or services just send me an email bart.chrabski@reqpro.com

I was going to post exactly the same thing - checking rootservices is the simplest way to see if the application is functional

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 7,499
× 1,329

Question asked: Dec 01 '20, 7:21 a.m.

Question was seen: 2,864 times

Last updated: Dec 01 '20, 5:04 p.m.

Related questions
Confirmation Cancel Confirm