Hello,
do I understand it right that I can "automate" remote BMC Remedy server with this ?
Just want to create some requests and manage them.
I have this code :
try {
Logger log = Logger.getLogger(Main.class);
BasicConfigurator.configure();
ARServerUser server = new ARServerUser();
server.setServer("ip\_of\_server");
server.setUser("test");
server.setPassword("test");
server.verifyUser();
} catch (ARException e) {
e.printStackTrace();
}
The IP is pingable and I even tried DSN name instead -> nothing.
I get ERROR (90): Cannot establish a network connection to the AR System server; Connection refused: connect ip_of_server
So my question is : Can I really "control" remote server with this API ?
And if so what am I doing wrong ??
For @DMBsolutions