gpt4 book ai didi

java - 当我尝试连接到服务器时出现“远程服务器超时”异常

转载 作者:行者123 更新时间:2023-12-02 06:48:52 24 4
gpt4 key购买 nike

尝试通过以下代码连接到openfire服务器时:

Connection connection = new XMPPConnection("https://192.168.0.101:5222");
connection.connect();

我收到一个异常:

https://192.168.0.101:5222:5222 Exception: Could not connect 
to https://192.168.0.101:5222:5222.; : remote-server-timeout(504)

这可能是什么原因?

注意:我已经允许openfire fire server穿过防火墙。我也尝试关闭防火墙,但结果相同。服务器是我自己的机器。我尝试在同一台机器上运行该程序。

最佳答案

您可以使用

Connection connection = new XMPPConnection("192.168.0.101");
connection.connect();

或者如果您想指定端口

ConnectionConfiguration config = new ConnectionConfiguration("192.168.0.101", 5222);
Connection connection = new XMPPConnection(config);
connection.connect();

或类似的,默认端口 5222

ConnectionConfiguration config = new ConnectionConfiguration("192.168.0.101");
Connection connection = new XMPPConnection(config);
connection.connect();

关于java - 当我尝试连接到服务器时出现“远程服务器超时”异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18285323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com