我试图将jpegPhoto属性值设置为Openldap中的某个人。我正在使用Novell目录库,因为我无法打开与标准Microsoft库的连接。 我将图片作为字节数组进行处理,然后将其转换为基本的64字符串。然后,此值将用于jpegPhoto属性。但是,它稍后在JExplorer
中没有正确显示byte[] myPhoto = GetPicture();
string base64PhotoString = Convert.ToBase64String(myPhoto);
attributeSet.Add(new LdapAttribute("jpegPhoto", base64PhotoString));
这是将图片添加到LdapEntry的正确方法吗?