This wasn't happening until recently, I believe.
I am tracking my users inside my Application.java. I want to link my users to their client objects by clientId.
Inside my appConnect I am creating a User object and setting the client id via:
u.setClientId( conn.getClient().getId() );
Pretty simple.
Unfortunately, I am getting a string for every one of my client id's as "not yet implemented".
Yet, inside my appJoin, I immediately ask for the client id:
log.info( "Client joined app " + client.getId() );
In the log the statement appears: "Client joined app 5"
Is the "not yet implemented" message a programmer message? A reminder of something that is not implemented?
Is there a way around this problem? I need to link my Users to my Clients.
Leif
_______________________________________________ Red5 mailing list [email protected] http://osflash.org/mailman/listinfo/red5_osflash.org
