Hi,
I am using the BOSH files from the BOSH branch.
I have the problem that reconnecting does not work.
1. The reconnection error listener is never called. Because the following piece of logic in BoshConnection.java does not make any sense at all.
if (connEvent.isError()) {
try {
connEvent.getCause();
}
catch (Exception e) {
notifyConnectionError(e);
}
}
because getCause never throws an exception.
I've fixed that.
2. Then the second problem is, if I reconnect and try to login (due to wasAuthenticated=true), I get no response from server during the SASL Authentication.
Anybody having similar experiences or an idea to my 2nd problem?