I'm trying to change the role of a user using the java server libraries.
Here is the code I am running:AccountManager am = new AccountManager();am.login(,);am.setUserRole(roomID,am.getSession(roomID).getUserID(),
UserRoles.PUBLISHER);Nothing seems to happen when I run this, not even
an error.I have also tried running the setUserRole method like
this:am.setUserRole(roomID,, UserRoles.PUBLISHER);I know I am
connecting to the lccs service because I am able to create rooms just
fine using:am.createR...