Hi, What is easiest way to get the list of all external components/in

Hi,

What is easiest way to get the list of all external components/interfaces and their details that Appian system is interactiong as part of various applications deployed? The idea behind this is to perform a daily "monitoring" of the status of the related xternal interfaces and thereby making sure that Appian is fit to be used.

Thanks,
Sherine...

OriginalPostID-96039

OriginalPostID-96039

  Discussion posts and replies are publicly visible

Parents
  • Sharepoint also has native web services which you can call to test using either the Call Web Service or the Send HTTP Request.

    On the other hand Sharepoint can also be seen as a URL that either is accessible or not which means you can still monitor it with the Send HTTP Request or any other custom smart service to simply query the URL:

    HttpClient client = new HttpClient();
    HttpMethod method = new GetMethod(url);
    ....
    client.executeMethod(method);
    method.getResponseBody();

    //Determine the status of the page through
    // method.getStatusCode()
Reply
  • Sharepoint also has native web services which you can call to test using either the Call Web Service or the Send HTTP Request.

    On the other hand Sharepoint can also be seen as a URL that either is accessible or not which means you can still monitor it with the Send HTTP Request or any other custom smart service to simply query the URL:

    HttpClient client = new HttpClient();
    HttpMethod method = new GetMethod(url);
    ....
    client.executeMethod(method);
    method.getResponseBody();

    //Determine the status of the page through
    // method.getStatusCode()
Children
No Data