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
LDAP Queries
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: LDAP Queries
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).
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).
Various teststacks and stuff:
http://bjoernke.com
Chat with other RunRev developers:
chat.freenode.net:6666 #livecode
http://bjoernke.com
Chat with other RunRev developers:
chat.freenode.net:6666 #livecode
Re: LDAP Queries
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.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).
Thanks.
Larry