Openldap:将jpegPhoto添加到inetOrgPerson

时间:2014-05-29 10:12:22

标签: .net ldap openldap

我试图将jpegPhoto属性值设置为Openldap中的某个人。我正在使用Novell目录库,因为我无法打开与标准Microsoft库的连接。 我将图片作为字节数组进行处理,然后将其转换为基本的64字符串。然后,此值将用于jpegPhoto属性。但是,它稍后在JExplorer

中没有正确显示
byte[] myPhoto = GetPicture();
string base64PhotoString = Convert.ToBase64String(myPhoto);
attributeSet.Add(new LdapAttribute("jpegPhoto", base64PhotoString));

这是将图片添加到LdapEntry的正确方法吗?

0 个答案:

没有答案