Unix and Linux Discussions Tagged with ldap |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
5,683 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
8,622 |
AIX |
|
|
|
1 |
3,777 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
4,069 |
UNIX for Beginners Questions & Answers |
|
|
|
8 |
5,465 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
7,923 |
Linux |
|
|
|
1 |
6,772 |
Red Hat |
|
|
|
0 |
7,860 |
Red Hat |
|
|
|
2 |
3,761 |
Solaris |
|
|
|
1 |
2,753 |
Solaris |
|
|
|
3 |
6,175 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
10,735 |
OS X (Apple) |
|
|
|
8 |
28,052 |
Shell Programming and Scripting |
|
|
|
15 |
27,465 |
AIX |
|
|
|
0 |
2,188 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
12,392 |
Emergency UNIX and Linux Support |
|
|
|
0 |
2,827 |
HP-UX |
|
|
|
0 |
3,501 |
HP-UX |
|
|
|
7 |
7,627 |
AIX |
|
|
|
2 |
13,504 |
AIX |
|
|
|
3 |
5,191 |
AIX |
|
|
|
3 |
4,376 |
Web Development |
|
|
|
3 |
4,406 |
Shell Programming and Scripting |
|
|
|
0 |
4,058 |
Red Hat |
|
|
|
3 |
7,152 |
Emergency UNIX and Linux Support |
|
|
|
3 |
4,365 |
Emergency UNIX and Linux Support |
|
|
|
2 |
3,380 |
Shell Programming and Scripting |
|
|
|
1 |
2,216 |
Solaris |
|
|
|
0 |
8,381 |
UNIX and Linux Applications |
|
|
|
1 |
4,904 |
AIX |
|
|
|
2 |
3,398 |
Solaris |
|
|
|
1 |
7,445 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
4,733 |
Solaris |
|
|
|
0 |
3,177 |
Solaris |
|
|
|
2 |
3,417 |
Red Hat |
|
|
|
4 |
7,903 |
Red Hat |
|
|
|
1 |
3,160 |
UNIX and Linux Applications |
|
|
|
0 |
3,182 |
UNIX and Linux Applications |
|
|
|
0 |
6,099 |
Solaris |
|
|
|
7 |
11,439 |
Solaris |
Net::LDAP::Extension::WhoAmI(3) User Contributed Perl Documentation Net::LDAP::Extension::WhoAmI(3)
NAME
Net::LDAP::Extension::WhoAmI - LDAP "Who am I?" Operation
SYNOPSIS
use Net::LDAP;
use Net::LDAP::Extension::WhoAmI;
$ldap = Net::LDAP->new( "ldap.mydomain.eg" );
$ldap->bind('cn=Joe User,cn=People,dc=example,dc=com",
password => 'secret');
$mesg = $ldap->who_am_i();
die "error: ", $mesg->code(), ": ", $mesg->error() if ($mesg->code());
print "you are bound with authzId ", $mesg->response(), "
";
DESCRIPTION
"Net::LDAP::Extension::WhoAmI" implements the "Who am I?" extended LDAPv3 operation as described in draft-zeilenga-ldap-authzid-09.
It implements no object by itself but extends the Net::LDAP object by another method:
METHODS
who_am_i
Obtain the authorization identity which the server has associated with the user or application entity.
SEE ALSO
Net::LDAP, Net::LDAP::Extension
AUTHOR
Norbert Klasen <norbert.klasen@avinci.de>,
Please report any bugs, or post any suggestions, to the perl-ldap mailing list <perl-ldap@perl.org>
COPYRIGHT
Copyright (c) 2002-2004 Graham Barr. All rights reserved. This program is free software; you can redistribute it and/or modify it under the
same terms as Perl itself.
perl v5.12.1 2010-03-12 Net::LDAP::Extension::WhoAmI(3)