How can I deploy RTC SDK on Jazz CLM server?
![]()
I am trying to write some server extensions. For this I am depending on some plug-ins from the RTC SDK. How should I ensure even they are available when server starts?
Why I want it this way? I am writing multiple server extension which I intend to deploy using individual sites. Since these sites accepts features and the plug-in dependency is common across different extensions, I am looking for away to create a deployable site for RTC SDK. Let me know if one exists already. Context: RTC 4.0 and https://jazz.net/library/content/articles/rtc/4.0/extensions-workshop/downloads/RTC40ExtPoT.pdf |
Accepted answer
![]()
you cannot use 'CLIENT' jars from a SERVER plugin. client are client only
you must use the SERVICE functions instead.. IRepositoryService= getService(IRepositoryService.class); IWorkItemService = getService(IWorkItemService.class); ankur sharma selected this answer as the correct answer
|