Page 1 of 1

LDAP Queries

Posted: Wed Jan 13, 2010 6:08 pm
by bohrme
Does Revolution support LDAP or Active Directory queries yet? If so, would someone post an example? If not, what's an example of a usable work around?

thanks.

Larry

Re: LDAP Queries

Posted: Thu Jan 14, 2010 1:33 am
by BvG
LDAP is a protocol that runs on TCP sockets. if you read the rfc. then you can replicate it's functionality by using some of these rev terms:
open socket
accept
close socket
socketerror
socketclosed


I know that is not the answer you want. But beyond dns, html and non-encrypted ftp, there's no build in protocols for rev (tho there's third party additions for email stuff).

Re: LDAP Queries

Posted: Sat Jan 16, 2010 2:47 am
by bohrme
BvG wrote:I know that is not the answer you want. But beyond dns, html and non-encrypted ftp, there's no build in protocols for rev (tho there's third party additions for email stuff).
I wasn't sure if Rev supported it in a library or what. Since it doesn't, I can code what I need easy enough in Perl and just shell out.

Thanks.

Larry