String fileName = "";
Iterator<AVA> iterator = rdn.iterator();
while ( iterator.hasNext() )
{
AVA ava = iterator.next();
// First, get the AT name, or OID
String normAT = ava.getNormType();
AttributeType at = schemaManager.lookupAttributeTypeRegistry( normAT );
String atName = at.getName();
// Now, get the normalized value
String normValue = ava.getNormValue().getString();
fileName += atName + "=" + normValue;
if ( iterator.hasNext() )
{