what I am trying to achieve is to show in the xtrareport a plain text from a base64 string (or a byte array of an XML), this is the data that's saved to the db:
byte[] fileContents = System.Convert.FromBase64String(obj.column);
obj.rtf_handler = fileContents;
and what I have achieved instead is this long string of un-parsed(?) rtf content.
So how do you parse the 64base string from obj.rtf_handler to a plain text in xtrareport?