I am new to using genesys apis. I am trying to use ConfService APIs to access transactions. The issue I am facing is while creating confservice, I am getting a compile error on the ConfServiceFactory.createConfService(protocol) line.
Endpoint cfgServerEndpoint =
new Endpoint(cfgsrvEndpointName, cfgsrvHost, cfgsrvPort);
ConfServerProtocol protocol = new ConfServerProtocol(cfgServerEndpoint);
protocol.setClientName(clientName);
protocol.setClientApplicationType(clientType.ordinal());
protocol.setUserName(username);
protocol.setUserPassword(password);
IConfService service = ConfServiceFactory.createConfService(protocol)
It gives me same compilation error. It says “Add argument …”. I think it requires SubScriptionService. What should that do? The confservice sample does not have that.
You’re using an old version of the Platform SDK that requires EventBrokerService (EventBrokerService is a subclass of SubscriptionService).. 8.1 has it, 8.5 doesn’t