How to get Client Library in RTC Plugin ?
Hi All,
I am trying to get IProcessClientService client library in RTC Plugin.
I used the below code to get Client library.
ITeamRepository teamRepository = TeamPlatform.getTeamRepositoryService().getTeamRepository(repositoryURI);
teamRepository.registerLoginHandler(new LoginHandler(userId, password));
teamRepository.login(monitor);
IProcessClientService processClient = (IProcessClientService) teamRepository.getClientLibrary(IProcessClientService.class);
But it returns null.
Anyone have any idea??
Please Help.