Hi,
I'm trying to establish a connection to an XMPP server using smack.
ConnectionConfiguration cf = new ConnectionConfiguration("jabber.ccc.de");
cf.setTruststorePassword("changeme");
this.connection = new XMPPConnection(cf);
this.connection.connect();
this.connection.login("user", "password");
But whenever logging in I get an XMPPException (No response from the server.: ) and the socket gets closed.
Any ideas what's going wrong here?
Regards