Question

I'm trying to get started using agsXMPP, but I'm having some problems. I'm trying to run this code:

using System;
using agsXMPP;

namespace TestAgs
{
    class MainClass
    {
        public static void Main (string[] args)
        {
            XmppClientConnection connection = new XmppClientConnection ();
            connection.OnLogin += delegate {
                Console.WriteLine ("logged in");
            };
            connection.Server = "gmail.com";
            connection.ConnectServer = "talk.google.com";
            connection.Username = "my username"; // I tried both with and without '@gmail.com'
            connection.Password = "my password";
            connection.Open();
        }
    }
}

This compiles fine, but when I try to run it, nothing happens. It runs and completes without any errors, but "logged in" never gets printed to the console. What am I doing wrong?

If it makes a difference, I'm using Mono 2.4 on Ubuntu 10.04.

Was it helpful?

Solution

Unless connection.Open () blocks, which I doubt, the issue is that your program hits the end of main, and therefore it is done running and ends.

How you want to keep it from exiting depends on what you are trying to do, but one way would be a ManualResetEvent:

var mre = new System.Threading.ManualResetEvent (false);
mre.WaitOne ();

Of course, now you may have the opposite problem, there is no way for your app to finish.

OTHER TIPS

I think issue is port number. You did not supply 5222 or 5223 in the connection.

just add Console.ReadLine(); after the line 'connection.Open();'

// connection.Server = "gmail.com";
connection.ConnectServer = "talk3.l.google.com"; OR
connection.ConnectServer = "talk2.l.google.com";
connection.Username = "my username"; // I tried both with and without '@gmail.com'
connection.Password = "my password";
connection.Open();

talk3.l.google worked fine for me.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top