AVPList expRc = message.get(Common.EXPERIMENTAL_RESULT);
code = expRc.getValue(Common.EXPERIMENTAL_RESULT_CODE);
vendorId = expRc.getValue(Common.VENDOR_ID);
}
ResultCode rc = Dictionary.getInstance().getResultCode(vendorId, code);
if (rc == null)
rc = Factory.newResultCode(vendorId, code, "Unknown");
((DiameterAnswer) message).setResultCode(rc);
}