我确信我使用的是正确的连接信息:
import com.bmc.arsys.api.ARException;
import com.bmc.arsys.api.ARServerUser;
/**
*
* A class to automate deletion of BMC Remedy incidents after deploying or decommissioning servers
*
*/
@SuppressWarnings("unused")
public class BMCIncidentDelete {
public static void main(String[] args) {
/*
* Authentication information
*/
String host = "";
String server = "";
String user = "";
String pass = "";
ARServerUser ctx = new ARServerUser();
ctx.setServer(host);
// ctx.setServer(server);
ctx.setUser(user);
ctx.setPassword(pass);
ctx.setPort(8080);
/*
* Verify user or print stack trace if not possible
*/
try {
ctx.verifyUser();
System.out.println("Connection verified!");
} catch (ARException e) {
System.out.println(e.getMessage().toString());
}
}
}
不幸的是,我收到以下错误:
ERROR (90): Cannot establish a network connection to the AR System server; Connection refused: connect
任何有AR System API经验的人都会看到此问题吗? https://communities.bmc.com/docs/DOC-17514
答案 0 :(得分:1)
此错误(连接被拒绝)表示无法从提供的主机和端口上的服务器访问Remedy服务器。您可以使用telnet
进行验证,将主机名替换为$host
:
$ telnet $host 8080
成功连接应该说“已连接到主机”,但根据您的问题,您可能会看到“连接被拒绝”。仔细检查Remedy服务器的主机名和端口号,如有必要,检查您和服务器之间是否没有防火墙等。