Hi,
does anybody got an idea?
We use Smack's BOSHConnection (http://svn.igniterealtime.org/svn/repos/smack/branches/bosh/)
With 3.7.1 it worked quite well. But now with 3.8.1 the login fails.
In this method (in SASLAuthentication class), after the authenticate call, the connection.isConnected() return false and therefore crashes later. At the beginning of this method the connection was connected.
public String authenticateAnonymously() throws XMPPException {
try {
currentMechanism = new SASLAnonymous(this);
currentMechanism.authenticate(null,null,"");
// Wait until SASL negotiation finishes
synchronized (this) {
...
}
}
Does anybody have an idea?
I also tested for non-anonymous logins, but I also get the "not connected to server" error after a while.