Common web services
The ports can be changed using the Web Server tab, or going to $HCIROOT/server/tomcat/conf/server.xml and manually changing the port.
String[] getSiteList()
retrieves the site list.This returns a string array that contains all the site names.
String[] getSiteListExt(HashMapWrapper paramsMap)
retrieves the site list, whereparamsMap
can be set to null.This returns a string array that contains all the site names.
String[] getProcessList(String siteName)
retrieves the process list from the specified site, wheresiteName
is the name of the site.This returns a string array that contains all the processes under the specified site.
String[] getProcessListExt(HashMapWrapper paramsMap)
retrieves the process list from the specified site, whereparamsMap
is the site name. The key issiteName
and value is the site name.This returns a string array that contains all the processes under the specified site.
String[] getThreadList(String siteName, String processName)
retrieves the thread list from the specified process that is under the specified site, where:-
siteName
is the site name. -
processName
is the process name.
This returns a string array that contains all the threads under the specified site.
-
String[] getThreadListExt(HashMapWrapper paramsMap)
retrieves the thread list from the specified process under the specified site, whereparamsMap
is the site name and process name in a map.-
siteName
is the name of the site name. -
processName
is the name of the process name.
This returns a string array that contains all the threads under the specified site.
-