smack を使用して XMPP サーバーへの接続を確立しようとしています。
ConnectionConfiguration cf = new ConnectionConfiguration("jabber.ccc.de");
cf.setTruststorePassword("changeme");
this.connection = new XMPPConnection(cf);
this.connection.connect();
this.connection.login("user", "password");
しかし、ログインするたびに XMPPException (No response from the server.:) が発生し、ソケットが閉じられます。
ここで何がうまくいかないのですか?
よろしく