Apache Directory Project - [jira] Created: (DIRSERVER-1093) the ResourceRecordEncoder and

This is Interesting: Free IT Magazines  
Home > Archive > Apache Directory Project > October 2007 > [jira] Created: (DIRSERVER-1093) the ResourceRecordEncoder and





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author [jira] Created: (DIRSERVER-1093) the ResourceRecordEncoder and
lizongbo (JIRA)

2007-10-31, 1:11 pm

the ResourceRecordEncoder and QuestionRecordEncoder have bug for empty domainName
------------------------------------------------------------------------------------

Key: DIRSERVER-1093
URL: https://issues.apache.org/jira/browse/DIRSERVER-1093
Project: Directory ApacheDS
Issue Type: Bug
Components: dns
Affects Versions: 1.5.1
Environment: Windows XP , apacheds-protocol-dns-1.5.1.jar
Reporter: lizongbo


When I use dig trace for Test the apache dns server. the QuestionRecord and ResourceRecord not encoded right for the empty Domain Name.

my Test command is:

E:\bind>dig @10.108.20.126 618119.com +trace



Then found this bug is caeused by the method "encodeDomainName" in QuestionRecordEncoder.java and "putDomainName" in ResourceRecordEncoder.java.

follow code can be test to get "labels.length == 1";

[code]
String s = "";
String[] labels = new String[0];
labels = s.split("\\.");
System.out.println("labels.length == " + labels.length);
[/code]


so i fix this bug by follow change :



[code]
String[] labels = domainName.split( "\\." );
[/code]

change to:

[code]
String[] labels = new String[0];
if (domainName != null && domainName.length() > 0) {
labels = domainName.split("\\.");
}
[/code]


Please fix the bug



--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com