No response to log in to openFire server using Asmark. Request help

The first is the connection server code

    public static XMPPConnection getXMPPConnection(String server, int port){
        try{
            // get service connection
            ConnectionConfiguration config = new ConnectionConfiguration(server, port);
            config.setReconnectionAllowed(true);
            config.setSecurityMode(ConnectionConfiguration.SecurityMode.disabled);
            config.setSendPresence(true);
            SASLAuthentication.supportSASLMechanism("PLAIN", 0);
            //SASLAuthentication.supportSASLMechanism("DIGEST-MD5", 0);
            XMPPConnection connection = new XMPPTCPConnection(config);
            connection.connect();
            return connection;
        }catch (Exception e){

        }
        return null;
    }

then going to log in

                    XMPPConnection connection =  XMPPUtil.getXMPPConnection(loginData.ServerIP);
                    if(!connection.isAuthenticated() && connection.isConnected()){
                        connection.login(usrn,pasw);
                        Presence presence = new Presence(Presence.Type.available);
                        presence.setMode(Presence.Mode.available);
                        connection.sendPacket(presence);
                        DataWarehouse.setXMPPConnection(getApplicationContext(),connection);
                    }

When connection.login(usrn,pasw) begins run, an exception is thrown

2022-04-01 22:38:49.372 3735-3791/com.example.mywork W/IQReplyFilter: Rejected potentially spoofed reply to IQ-packet. Filter settings: packetId=Ha4P2-1, to=null, local=null, server=169.254.0.169. Received packet with from=usr5@desktop-gem4jjl
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err: org.jivesoftware.smack.SmackException$NoResponseException
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err:     at org.jivesoftware.smack.PacketCollector.nextResultOrThrow(PacketCollector.java:191)
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err:     at org.jivesoftware.smack.PacketCollector.nextResultOrThrow(PacketCollector.java:175)
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err:     at org.jivesoftware.smack.XMPPConnection.bindResourceAndEstablishSession(XMPPConnection.java:535)
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err:     at org.jivesoftware.smack.tcp.XMPPTCPConnection.login(XMPPTCPConnection.java:260)
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err:     at org.jivesoftware.smack.XMPPConnection.login(XMPPConnection.java:442)
2022-04-01 22:38:54.370 3735-3789/com.example.mywork W/System.err:     at com.example.mywork.MainActivity$4.run(MainActivity.java:108)
2022-04-01 22:38:54.397 3735-3789/com.example.mywork W/System.err: Fri Apr 01 22:38:54 GMT+08:00 2022 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
2022-04-01 22:38:54.398 3735-3789/com.example.mywork D/NetworkSecurityConfig: Using Network Security Config from resource network_security_config debugBuild: true

Please help me with this difficulty,thanks