Reputation: 183
I currently want to implement my own Yahoo and ICQ client in Java. I did search in SOF and found openymsg and joscarlib. But I have problems: 1. openymsg works, but there are Warning while login :
Jan 21, 2012 10:41:05 PM org.openymsg.network.Session removeSessionListener
WARNING: SessionListener not found to be removed.
java.lang.Throwable
at org.openymsg.network.Session.removeSessionListener(Session.java:270)
at org.openymsg.network.Session.resetData(Session.java:3688)
at org.openymsg.network.Session.login(Session.java:337)
at org.openymsg.network.Session.login(Session.java:292)
at imTypes.Yahoo.startListen(Yahoo.java:47)
at imServer.Main.main(Main.java:20)
But I did add SessionListener above the login : yahooSession.addSessionListener(this); ( this class extends SessionAdapter ofcourse).
And How to disable Logging ?
Thank you very much
Upvotes: 0
Views: 883
Reputation: 46904
I have found:
Upvotes: 1