Tagged Questions

4
votes
3answers
592 views

How do I create an SRV record in DNS with C#

I am using WMI to create different types of DNS records but am having a problem with SRV records. I keep getting a "Not found" error whenever I pass the DomainName parameter. The domain name looks ...
3
votes
3answers
1k 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, ...
2
votes
3answers
779 views

Why do browsers not use SRV records?

Why do browsers not use SRV records? It seems like a minimal amount of work and it will make the server-side implementation of reliable websites much simpler. For example, you can specify tiers, ...
2
votes
1answer
1k 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, ...
2
votes
3answers
1k views

How to check if a server support xmpp protocol?

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?
1
vote
1answer
403 views

Get DNS SRV record using JNDI

I am trying to get SRV records from a DNS server using JNDI. Hashtable<String, String> env = new Hashtable<String, String>(); env.put("java.naming.factory.initial", ...
1
vote
2answers
1k views

How do I resolve an SRV record in Python?

Something which doesn't rely on native libraries would be even more better.
0
votes
1answer
38 views

Anyone know of a good regular expression for SRV DNS Records?

So far I've got the following regex that matches against regular domains but not domains with underscores. Example: _tcp._sip.45.example.com. Any help would be greatly appreciated. ...
0
votes
3answers
94 views

SRV records order retrieved from a DNS server

I have to make a DNS lookup for SRV records in Android application and choose the select one of them. When I query a DNS server for multiple SRV records differ in priority and weight, I get the ...
0
votes
1answer
121 views

Howto look up an SRV record pointing to an IPv6 address

My C++ application has to lookup a DNS SRV record pointing to an IPv6 address. From what I researched so far, the res_search() family of functions is the way to go. Does anyone have an example how to ...
0
votes
1answer
174 views

JNDI DNS lookup with partial domain name

For example if I have the following SRV record defined in my DNS config _dev._tcp IN SRV 0 0 8400 dev.server.com. I can execute the following command host -lt SRV ...
0
votes
1answer
167 views

Does JNDI use the DNS search list?

I would like to use JNDI to look up Kerberos SRV records in a local network. I try to guess the local domain in hopefully clever ways. If that fails I would like to look up the plain entry, e.g. ...
0
votes
1answer
80 views

How retrieve DNS SRV informations in a WindowPhone7 Application?

I am looking for a way to query dns to get srv informations. Nothing seems to exist in standard in .NET. Is there any simple method to perform this action or should I create it myself ?
0
votes
2answers
27 views

Without using PECL or system() type functions, is there a way to look up DNS records using PHP?

I'm working on creating a new type of email protocol, and in order to do that I had to set up an SRV DNS record for my domain. In promoting this protocol, I'll need to be able to discover if a given ...
0
votes
0answers
398 views

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

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 I can use ...