Update of /cvsroot/perl-ldap/ldap/lib/Net
In directory sc8-pr-cvs1:/tmp/cvs-serv20121
Modified Files:
LDAP.pod
Log Message:
Added note about root DSE getting uncached
Index: LDAP.pod
===================================================================
RCS file: /cvsroot/perl-ldap/ldap/lib/Net/LDAP.pod,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- LDAP.pod 9 May 2003 12:05:10 -0000 1.26
+++ LDAP.pod 9 May 2003 13:32:49 -0000 1.27
@@ -472,8 +472,8 @@
=item root_dse ( OPTIONS )
-The root_dse method retrieves information from the server's
-rootDSE entry.
+The root_dse method retrieves cached information from the server's
+rootDSE.
=over 4
@@ -502,6 +502,11 @@
# get supported LDAP versions
$root->get_value('supportedLDAPVersion', asref => 1);
+As the root DSE may change in certain circumstances - for instance
+when you change the connection using start_tls - you should always use
+the root_dse method to return the most up-to-date copy of the root
+DSE.
+
=item schema ( OPTIONS )
Request that a schema search be performed. This can be used to read
@@ -509,7 +514,7 @@
The result is an object of class L<Net::LDAP::Schema>.
Read this documentation for further information about methods that
-can be preformed with this object.
+can be performed with this object.
=over 4
|