Hi folks,
Thank you for all your counsels. I checked all of them!
In my scenario, the "
https://github.com/synopse/mORMot/blob/master/SynLZO.pas" worked liked a charm.
This is what I had to do:
1) copy SynLZO.pas and Synopse.inc to my application directory and include SynLZO unit inside my app.
2) To use the function This adjustment need to be made:
CompressSynLZO( string_to_be_compreesed, true);
string_to_be_compressed := EncodeStringBase64(string_to_be_compressed);
If I do not do encode (base64) the string I receive "malformed string" error.
It was VERY hard to discover this. Thanks to MorMOT developers help in their forum.

Thank you guys, you Rock!