Re: Libraries for dealing with DNS

2015-10-24 Thread Asim Jalis
Hi Kyle, DNSJava is a stable implementation of DNS in Java. http://www.dnsjava.org/ Here is the JavaDoc for doing DNS lookups: http://www.dnsjava.org/doc/org/xbill/DNS/Lookup.html Asim On Tue, Sep 15, 2015 at 3:34 PM, Kyle Sexton wrote: > Does anyone have a recommendation or know of a good l

Re: Libraries for dealing with DNS

2015-10-19 Thread David Powell
I've not used it, but Java comes with a DNS provider for JNDI too: https://docs.oracle.com/javase/8/docs/technotes/guides/jndi/jndi-dns.html On Mon, Oct 19, 2015 at 12:50 PM, Pierre-Yves Ritschard wrote: > Hi Kyle, > > If you don't mind synchronous queries, "InetAddress/getByName" will do the

Re: Libraries for dealing with DNS

2015-10-19 Thread Pierre-Yves Ritschard
Hi Kyle, If you don't mind synchronous queries, "InetAddress/getByName" will do the job just fine and use your system resolving parameters. http://docs.oracle.com/javase/6/docs/api/index.html?java/net/InetAddress.html#getByName Cheers, - pyr On Mon, Oct 19, 2015 at 9:56 AM, JvJ wrote: > DNS

Libraries for dealing with DNS

2015-10-19 Thread JvJ
DNS clients happen to be my job. If you can't find one, maybe I'll conttibute to something. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated

Libraries for dealing with DNS

2015-09-15 Thread Kyle Sexton
Does anyone have a recommendation or know of a good library to interact with DNS? I've found com.brweber2/clj-dns, but it is dated and I get NullPointerExceptions doing basic lookups. -- Kyle Sexton -- You received this message because you are subscribed to the Google Groups "Clojure" group.