Tagged Questions

1
vote
2answers
132 views

How do I resolve an SRV record in Python?

Something which doesn't rely on native libraries would be even more better.
1
vote
1answer
170 views

Using DNS SRV records with C#

Is there a built in (to the .net framework) class or function to resolve a SRV entry to the corresponding records? IE: _dmsc._tcp.network.local to an array of information (host, port, weight, …
0
votes
3answers
130 views

How to check if a server support xmpp protocol?

Hi, 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?
0
votes
0answers
112 views

Using a SRV DNS entry to connect to SQL Server in .NET

Hi guys, We have a cluster SQL Server and we use a SRV DNS entry to locate the service (i.e sql.mycompany.com). MyCompany.com_tcp_http Service Location (SRV) [0][0][1433]sql.Mycompany.com Now, how …
3
votes
3answers
315 views

SRV record lookup with PHP

If you type nslookup -type=SRV _xmpp-server._tcp.gmail.com (or use the dig command in OSX) you get some SRV records relating to google chat I would like to replicate this functionality in PHP, …