Installed Application Server

Top  Previous 

SUMMARY

List the Installed Application Server for a User JVM.

 

SCRIPT

/usr/ngasi/apiclient/bin/ncli.sh -user=myuser -password=coolgeek -url=http://localhost:8666 -command=getappserver [-jvmid=1]

 

JAVA API

Properties properties = new Properties();

properties.put("url","http://localhost:8666");

properties.put("user","myuser");

properties.put("password","coolgeek");

properties.put("command","getappserver");

//properties.put("jvmid","1");

String result = NGAPIClient.exec(properties);