使用java连接到xmpp(openfire)服务器时出错

时间:2015-02-25 23:03:17

标签: java xmpp openfire smack

我是XMPP的新手。一整天我都无法从Java连接到我的XMPP服务器(Openfire版本3.9.3)。我正在使用Smack(版本4.0.7)库。这是简单的代码...

ConnectionConfiguration config =new ConnectionConfiguration("servername",5223);
XMPPTCPConnection connection = new XMPPTCPConnection(config);
    // Connect to the server
    try {
            connection.connect();
        connection.login("username", "password");

        }  catch (IOException e) {
            e.printStackTrace();
        } catch (XMPPException e) {
            e.printStackTrace();
        } catch (SmackException e) {
            e.printStackTrace();
        } 

但是当我运行此代码时,此错误显示...

org.jivesoftware.smack.SmackException$NoResponseException
at org.jivesoftware.smack.XMPPConnection.throwConnectionExceptionOrNoResponse(XMPPConnection.java:548)
at org.jivesoftware.smack.tcp.XMPPTCPConnection.throwConnectionExceptionOrNoResponse(XMPPTCPConnection.java:867)
at org.jivesoftware.smack.tcp.PacketReader.startup(PacketReader.java:113)
at org.jivesoftware.smack.tcp.XMPPTCPConnection.initConnection(XMPPTCPConnection.java:482)
at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectUsingConfiguration(XMPPTCPConnection.java:440)
at org.jivesoftware.smack.tcp.XMPPTCPConnection.connectInternal(XMPPTCPConnection.java:811)
at org.jivesoftware.smack.XMPPConnection.connect(XMPPConnection.java:396)
at test.third.<init>(third.java:19)
at test.third.main(third.java:34)

可能存在一个愚蠢的错误和简单的解决方案。我用谷歌搜索,但不知怎的,我没有得到正确的解决方案。

2 个答案:

答案 0 :(得分:0)

public  void connectAndLogin( {

    connect();
    login();

}

private void connect() {
    /**
     * Set server configuration
     * 
     * connect to server    
     */
    setConfiguration();
    try {
        getConnection().connect();
    } catch (XMPPException e) {
        e.printStackTrace();
        setConnection(null);
    }
    }

    private void setConfiguration() {
        ConnectionConfiguration config = new ConnectionConfiguration(Constants.IP);
        SmackConfiguration.setPacketReplyTimeout(Constants.PACKET_TIME_OUT);
        System.out.println(SmackConfiguration.getVersion());
        config.setRosterLoadedAtLogin(false);
        // config.setCompressionEnabled(true);
        config.setVerifyChainEnabled(false);
        config.setReconnectionAllowed(true);
        config.setSASLAuthenticationEnabled(false);
        config.setSecurityMode(SecurityMode.disabled);
        config.setDebuggerEnabled(false);
        connection = new XMPPConnection(config);
}

private void login() {
    if(getConnection()!=null){


    String USER_NAME="";

    String PASSWORD="";

    try {
        getConnection().login(USER_NAME,PASSWORD, Constants.RESOURCE);
    } catch (Exception e) {
        e.printStackTrace();
    }



    }
}

答案 1 :(得分:0)

尝试使用端口5222而不是5223.这是旧的SSL方式,通常不再使用。

相关问题