Appian Community
Site
Search
Sign In/Register
Site
Search
User
DISCUSS
LEARN
SUCCESS
SUPPORT
Documentation
AppMarket
More
Cancel
I'm looking for ...
State
Not Answered
Replies
7 replies
Subscribers
7 subscribers
Views
2831 views
Users
0 members are here
Share
More
Cancel
Related Discussions
Home
»
Discussions
»
General
Hi, What is easiest way to get the list of all external components/in
sheriner
over 11 years ago
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
0
Eduardo Fuentes
Appian Employee
over 11 years ago
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()
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Reply
0
Eduardo Fuentes
Appian Employee
over 11 years ago
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()
Cancel
Vote Up
0
Vote Down
Sign in to reply
Verify Answer
Cancel
Children
No Data