Which API to use for RTC server/client side plug-in development?
![]()
If I want to develop a server side plug-in for RTC how can I find out whether I am using the correct APIs resp. the allowed dependencies during development?
Can I simply follow the rule that I should not use any java package/plug-in that contains the term "client". Or is it not that simple?
The same question I have for the client side plug-in development.
Thank you
|
Accepted answer
![]()
Ralph Schoon (62.0k●3●36●43)
| answered Mar 10 '15, 11:48 a.m.
FORUM ADMINISTRATOR / FORUM MODERATOR / JAZZ DEVELOPER
Start here:
As a general rule the packages *.common.* is available as client and server API - you get the service in a different way though. *.server.* is only available on the server. *.client.* is only available as client API.
Marko Tomljenovic selected this answer as the correct answer
Comments I already knew the pages, anyway thank you for the links. |