我正在尝试使用Java SDK连接Splunk,但出现“非法cookie属性”异常,
ServiceArgs loginArgs = new ServiceArgs();
loginArgs.setUsername("xxxxx");
loginArgs.setPassword("xxxxx");
loginArgs.setHost("eu-splunk-ops");
loginArgs.setScheme("https");
loginArgs.setPort(8089);
// Create a Service instance and log in with the argument map
Service service = Service.connect(loginArgs);
我遵循了Splunk教程中显示的示例。请尽早帮助我解决此问题。谢谢。