C#agsxmpp域与连接服务器

时间:2015-06-09 03:18:46

标签: xmpp

我需要与以下数据建立连接:

Protocol: XMPP
Username: <Your username>
Password: AIR_<Your LoL password>
Domain: pvp.net
Connection security: Use old-style SSL
Connect port: 5223 

连接服务器:chat.euw1.lol.riotgames.com

我只设法以这种形式连接到普通域服务器:

username@domain.com/resource

但是,我需要以某种方式添加connectionserver(chat.euw1.lol.riotgames.com)。

我真的希望有人熟悉agsXMPP并且可以帮助我!

提前致谢!

1 个答案:

答案 0 :(得分:0)

好吧,我只是感到困惑,也许现在探索新的libs已经太晚了。

但是,如果有人像我一样在连接上遇到困难,这里有一个关于如何使用此库测试登录的简单解决方案:

            XmppClientConnection xmpp = new XmppClientConnection("pvp.net");
        xmpp.UseSSL = true;
        xmpp.Port = 5223;
        xmpp.ConnectServer = "chat.euw1.lol.riotgames.com";
        xmpp.Open("username", "AIR_password");

        xmpp.OnLogin += delegate(object o) { MessageBox.Show("logged in"); };