|
||||||||||
|
|
||||||||||
| Other Library Functions | ||||||||||
| function | ldapClose |
Available in:
Enterprise |
|
Library: omldap - LDAP support
Include: omldap.xin |
define external function ldapClose
value ldapConnection connection
where
The ldapClose function closes a connection to an LDAP server and releases the connection's resources.
In this example, a connection to an LDAP server is opened and then immediately terminated:
include "omldap.xin"
process
local ldapConnection my-ldap
...
set my-ldap to ldapOpen "www.omnimark.com"
ldapClose my-ldap
| ---- |