Giusanny
unread,Mar 30, 2011, 6:29:27 AM3/30/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to red5
Hi group,
working on winXP and latest trunk of red5, I was tring to get
adminPlugin work whit no success.
I had a NullPointerException on getScopes(String scopeName) method of
AdminHandler class when I tried to login the demos/adminPanel.html
Than watching the adminPlugin code I replaced
String name2 = name.substring(1, name.length());
with
String name2 = name.startsWith("/")?name.substring(1,
name.length()):name;
and it worked!
It seems like now the scope name is "appName" and before was "/
appName", but with the red51.0RC1 I had no problems with the original
AdminPlugin.jar
what do you think about it? From what it depends? thel trunk code or
the operating system?
thanks