I'm looking for a way to check if a server is support xmpp protocol, i.e. xmpp-server is running on this domain.
Maybe special DNS check or something like that?
|
feedback
|
|
Most XMPP servers should support at least one of these DNS SRV records:
Some servers may not have these records published, but most of those will not want to talk to the outside world. As an example, you can use "dig" on the command line to check a domain, like this:
"+short" gets rid of a lot of DNS details, "-t SRV" says we want SRV records, and the dot at the end says to ignore your local domain name settings. (adding in response to @user188719) If you don't find an SRV record, you can try using the original domain name, and assuming port 5222 for client connections or 5269 for server connections. Once you have the hostname and port number to connect to, you can use
| ||||
|
feedback
|
|
Following Joe's explanation, I personally would check SRV records and fall back to a quick (short timeout) connect check on port 5269. Then cache the result. | |||
|
feedback
|
|
You can try IMtrends: http://www.process-one.net/en/imtrends/ | |||
feedback
|