Subject: Can't get two agsXMPP apps to talk over gmail.com
I'm new to all this so bear with me. 
I wrote an app using agsXMPP that uses gmail.com server and it can communicate fine with a Google Talk app, but I can't get two copies of my agsXMPP app to talk to each other (two separate machines and gmail accounts).
I'm using very simple code from the command line example and they are both connecting fine (xmpp.Authenticated == true), just no messages getting back and forth:
I log out either one of them and login with same account using Google Talk app and I can send messages both directions fine.

I wrote an app using agsXMPP that uses gmail.com server and it can communicate fine with a Google Talk app, but I can't get two copies of my agsXMPP app to talk to each other (two separate machines and gmail accounts).
I'm using very simple code from the command line example and they are both connecting fine (xmpp.Authenticated == true), just no messages getting back and forth:
xmpp.Server = "gmail.com";
xmpp.AutoResolveConnectServer = true;
xmpp.Username = "account";
xmpp.Password = "password";
xmpp.Resource = null;
xmpp.Priority = 10;
xmpp.Port = 5222;
xmpp.UseSSL = true;
xmpp.SocketConnectionType = agsXMPP.net.SocketConnectionType.Direct;
xmpp.UseStartTLS = true;
xmpp.Open();
xmpp.AutoResolveConnectServer = true;
xmpp.Username = "account";
xmpp.Password = "password";
xmpp.Resource = null;
xmpp.Priority = 10;
xmpp.Port = 5222;
xmpp.UseSSL = true;
xmpp.SocketConnectionType = agsXMPP.net.SocketConnectionType.Direct;
xmpp.UseStartTLS = true;
xmpp.Open();
I log out either one of them and login with same account using Google Talk app and I can send messages both directions fine.