Here is the funny thing; now it is exactly the same as on the server. I've changed in ldapsend.pas:

function TLDAPAttribute.Get(Index: integer): string;
begin
 Result := inherited Get(Index);
 //if FIsbinary then
 //  Result := DecodeBase64(Result);
end;

procedure TLDAPAttribute.Put(Index: integer; const Value: string);
var
 s: string;
begin
 s := Value;
 //if FIsbinary then
 //  s := EncodeBase64(Value)
 //else
 //  s :=UnquoteStr(s, '"');
 inherited Put(Index, s);
end;


From: "Lukas Gebauer" <[EMAIL PROTECTED]>
Reply-To: [email protected]
To: [email protected]
Subject: Re: [Synalist] LDAP: Saving binary atribute
Date: Thu, 18 May 2006 14:36:51 +0200

> Thank you, but it still differs.
> Please, does nobody know why is this so. I have to copy certificates
> from LDAP server and they are binary attribute.

How it is differ? Have you latest ldapsend? (from synasnap).
See:
http://synapse.ararat.cz/Synapse_history.htm#ldapsend



--
Lukas Gebauer.

E-mail: [EMAIL PROTECTED]
http://www.ararat.cz/synapse/ - Ararat Synapse - TCP/IP Lib.



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public

_________________________________________________________________
Don't just search. Find. Check out the new MSN Search! http://search.msn.com/



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
synalist-public mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/synalist-public

Reply via email to