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