From: <ste...@or...> - 2013-12-04 17:09:38
|
Hello, I would like to update a SRV record with the following code: Name zone = Name.fromString("mydomain.com."); Name host = Name.fromString("host", zone); Update update = new Update(zone); update.replace(host, Type.SRV, 3600, "30443"); Resolver res = new SimpleResolver(); res.setTSIGKey(new TSIG("HMAC-MD5", "ddns-key", "jlkdlfkjereuj" )); res.setTCP(true); Message response = res.send(update); But, the following error occurs: org.xbill.DNS.Tokenizer$TokenizerException: <none>:1: expected an integer at org.xbill.DNS.Tokenizer.exception(Tokenizer.java:691) at org.xbill.DNS.Tokenizer._getIdentifier(Tokenizer.java:383) The replace() is ok with other type of record (A for instance), but not with SRV. Any help, please ? Stéphane _________________________________________________________________________________________________________________________ Ce message et ses pieces jointes peuvent contenir des informations confidentielles ou privilegiees et ne doivent donc pas etre diffuses, exploites ou copies sans autorisation. Si vous avez recu ce message par erreur, veuillez le signaler a l'expediteur et le detruire ainsi que les pieces jointes. Les messages electroniques etant susceptibles d'alteration, Orange decline toute responsabilite si ce message a ete altere, deforme ou falsifie. Merci. This message and its attachments may contain confidential or privileged information that may be protected by law; they should not be distributed, used or copied without authorisation. If you have received this email in error, please notify the sender and delete this message and its attachments. As emails may be altered, Orange is not liable for messages that have been modified, changed or falsified. Thank you. |