From: <jh...@by...> - 2003-05-23 14:04:15
|
Hi All, I am trying to query a nameserver for a zone which should be configured their and the corresponding configured Nameservers. Easily speaking I am trying to see if the nameservers for a given zone are configured correctly. What I have so far is this: Records [] r =3D dns.getAnyRecords("byteaction.de", Type.NS) for(int i=3D0; i<r.length; i++) { System.out.println(r[i].rdataToString()); } But this does not work. I hav tried to set the Resolver explicitly with ExtendedResolver er =3D new ExtendedResolver(new String[] {"212.223.69.193"}); dns.setResolver(er); And then run the query but both won't work =3D( Kind regards =20 J=FCrgen Hoffmann ByteAction GmbH Auf der Beune 83-85 64839 M=FCnster HRB33271 mobil: +49 (0)163 29 83 002 phone: +49 (0)6071 9612-0 (09:00-18:00 Uhr) 0700 byteaction / 0700 29832284 (24x7) fax: +49 (0)6071 9612-20 0700 29832284 Email: jh...@by... Internet: www.byteaction.de ------------------------------------------------------------------------ -- This communication is intended only for the party to whom it is addressed, and may contain information which is privileged or confidential. Any other delivery, distribution, copying or disclosure is strictly prohibited and is not a waiver of privilege or confidentiality. If you have received this telecommunication in error, please notify the sender immediately by return electronic mail and destroy the message. ------------------------------------------------------------------------ -- =20 =20 |