DNS Client (UDP/TCP 53)

2007-12-05 Thread Cameron Taggart
Sorry if this is a bit off topic.  Has anyone used MINA to build a DNS
client?  I'm interested in doing nslookup type stuff from Java.

cheers,
Cameron


Re: DNS Client (UDP/TCP 53)

2007-12-05 Thread Trustin Lee
On Dec 6, 2007 9:55 AM, Cameron Taggart <[EMAIL PROTECTED]> wrote:
> Sorry if this is a bit off topic.  Has anyone used MINA to build a DNS
> client?  I'm interested in doing nslookup type stuff from Java.

There's some implementation in the Directory project sandbox AFAIK.
There was also a long discussion about providing asynchronous DNS
protocol provider in MINA in cooperation with the dnsjava author and
other concerned people, but it was not realized yet.  Any contribution
is always appreciated.

HTH,
Trustin
-- 
what we call human nature is actually human habit
--
http://gleamynode.net/
--
PGP Key ID: 0x0255ECA6


Re: DNS Client (UDP/TCP 53)

2007-12-06 Thread Stefano Bagnara
Cameron Taggart ha scritto:
> Sorry if this is a bit off topic.  Has anyone used MINA to build a DNS
> client?  I'm interested in doing nslookup type stuff from Java.
> 
> cheers,
> Cameron

If you just need a NIO+SEDA dns client then you can look at dnsjnio:
https://sourceforge.net/projects/dnsjnio/

It would be cool to have something similar MINA based so to optimize
threads usage and having the same "patterns" to monitor/tune the operations.

There is an ongoing MINA based DNS project under the Apache Directory
TLP umbrella, but this is more server oriented than a client library:
http://svn.apache.org/viewvc/directory/apacheds/trunk/protocol-dns/

HTH,
Stefano