XMPP Component from nsoftware.com-IP*Works

Discussion in 'General troubleshooting' started by abbas100, Mar 14, 2009.

  1. Hi all,

    I'm trying to use the XMPP component from nsoftware.com-IP*Works.
    my code that tries to connect to my google account is:
    Code:
    protected void btnConnect_Click(object sender, EventArgs e)
        {
            Xmpp x1 = new Xmpp();
            x1.IMPort = 5222;
            x1.IMServer = "gmail.com";
            x1.UserDomain = "www.mydomainname.org";
            
            x1.ServerDomain = "[email protected]";
            x1.LocalHost = "www.mydomainname.org";
            x1.Connect("myaccount", "mypassword");
            
            Response.Write(x1.Connected.ToString());
        }
    
    I get the folowing error message:

    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 209.85.171.83:5222

    Am I missing something or writing something wrong!
    please help
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    Your host is not responding. I tried telnet to the host (209.85.171.83) over that port, it is not even listening.
     

Share This Page