Subject: Connection with external network issue.
my xmpp server domain was register in internal network and it was working with following code . but now i hosted my domain in external network for public use and server is opening from browser and showing all the records my webservice is also in external network and working fine but em not accessing the server not receiving and sending message from server, question is i need to set some property in xmpp client while connecting with external network or something else?
- xmppClient.XmppDomain = Domain;
- xmppClient.Username = username;
- xmppClient.Password =password;
- xmppClient.Show = Matrix.Xmpp.Show.NONE;
- xmppClient.StartTls = false;
- xmppClient.Open();