I couldn’t see any examples either. However, if you look at the tests in the
sources you’ll find a couple of very simple examples.
Eg. https://github.com/perl-ldap/perl-ldap/blob/master/t/60cancel.t
There’s another in
https://github.com/perl-ldap/perl-ldap/blob/master/t/04refloop.t but it doesn
> On 15 Dec 2021, at 22:27, johnhirsch via perl-ldap wrote:
>
> Hi. I am working on migrating a perl script that uses Net::LDAP from HP-UX to
> RedHat Linux. When running the script on RedHat Linux, the debug seems to
> indicate that Net:LDAP is returning a 00 for the ASN1 data type instead o
> On 19 Feb 2020, at 07:21, Vladimir Levijev wrote:
>
> Hi,
>
> Microsoft has announced the following:
>
> https://support.microsoft.com/en-us/help/4520412/2020-ldap-channel-binding-and-ldap-signing-requirement-for-windows
>
> Does Perl::LDAP support LDAP channel binding and signing?
The “s
> On 19 Jun 2018, at 05:58, Zeus Panchenko wrote:
>
> Chris Ridd wrote:
>> Net::LDAP's moddn method does not take a „recursively“ option.
>
> may it sound sane to add it to the method?
>
>> The LDAP modifydn operation is already defined to move all the
> On 18 Jun 2018, at 12:33, Zeus Panchenko wrote:
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> hi
>
> what is the best practice to moddn() for branch of objects?
I’m not really sure “best practice” is relevant here - whatever you need to do
needs to be expressed in LDAP protocol
> On 19 Jan 2018, at 14:26, Zeus Panchenko wrote:
>
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> hi,
>
> I need to know what script did ...
>
> what is the best way to log script all LDAP related activity?
>
> is it something like?
>
> sub each_ldap_related_anything {
> ...
> us
> On 2 Jan 2018, at 13:36, Burns, Victor M via perl-ldap
> wrote:
>
> Thanks for getting back to me. I suspect I confused the version number. As
> you know perl-ldap is a large set of classes. I am using the latest
> perl-ldap-0.65 and the class in Question Net::LDAP::Entry is 0.27 and is
>
Good idea!
> On 3 Aug 2017, at 17:42, Brandon Hume wrote:
>
>> On 8/3/2017 12:59 PM, Chris Ridd wrote:
>> I ended up patching Search.pm to avoid capturing each result when using
>> callbacks. Is there a better way to do this?
>
> Were you using paged results
> On 3 Aug 2017, at 17:35, Frank Swasey wrote:
>
> Was there a reason not to use ldapsearch or slapcat to extract the entries of
> interest or the entire database into an LDIF file and then process with
> Net::LDAP::LDIF?
I was wondering whether at some point exporting the database would mak
> On 3 Aug 2017, at 17:55, Graham Barr wrote:
>
>
>> On Aug 3, 2017, at 10:59 , Chris Ridd wrote:
>>
>> I had a requirement to extract 30+ million entries from an ldap server, and
>> naively thought that using callbacks would be useful.
>>
>
I had a requirement to extract 30+ million entries from an ldap server, and
naively thought that using callbacks would be useful.
While they are useful in getting me each result quickly, I didn't realise that
Search still captures each result in self. So after reading several million
entries Li
> On 27 Jul 2017, at 12:42, Burns, Victor M via perl-ldap
> wrote:
>
> I’ve been working with the Net::LDAP::Entry class.
> I think it would be keen/natural if the ->ldif method supported additional
> Net::LDAP::LDIF options.
> For example:
> print $entry->ldif( wrap => 0 );
Yes, that’s defin
> On 13 Jun 2015, at 12:30, Natxo Asenjo wrote:
>
>
>
> On Sat, Jun 13, 2015 at 11:47 AM, Chris Ridd wrote:
>
> > On 11 Jun 2015, at 22:45, David Lee Lambert wrote:
>
> > I've reduced my non-working code to the following...
> >
> > #! per
> On 11 Jun 2015, at 22:45, David Lee Lambert wrote:
>
> I know this question has been asked before, but maybe the
> answers were in response to differnt details...
>
> I'm trying to write a script that compares data in an Oracle
> database with Active Directory. So, it seems like I should be
> On 17 May 2015, at 16:10, Natxo Asenjo wrote:
>
> hi,
>
> connecting to a freeipa ldap host (that uses the 389 directory server under
> the hood) I can successfully retrieve certificates belonging to hosts.
>
> I can then use Crypt::X509 to extract info from that. But how could I get the
>
> On 30 Mar 2015, at 19:01, Téssio Fechine wrote:
>
> Hi,
>
> I want to pass a callback function to a search command. My function,
> compare_attributes, uses the method compare on the entry object passed as the
> 2th parameter. Is there a way to use the method compare without making the
> Ne
On 13 Oct 2014, at 17:12, VANOLE, MICHAEL J wrote:
> Thanks Dieter,
>
> Our ldap is compiled with sasl, but I don't think I asked the question
> correctly.
>
> Sun One must be doing the MD5 (or whatever) encryption locally and applying
> the userPassword that way. I just have to specify what
On 9 Jun 2014, at 23:31, Chris Franz wrote:
> I imagine this is obvious to some but it isn't to me. I wrote this simple
> script to update
> a single attribute of an existing 389 entry. It is shown below:
>
> #!/usr/bin/perl
>
> use Net::LDAP;
> use Net::LDAP::Entry;
> use Net::LDAP::LDIF;
On 1 Oct 2013, at 22:16, Quanah Gibson-Mount wrote:
> --On Tuesday, October 01, 2013 9:19 PM +0100 Chris Ridd
> wrote:
>
>>
>> On 1 Oct 2013, at 19:46, Clément OUDOT wrote:
>>
>>> You use a base in ldapsearch and a filter in your code. Use 'bas
On 1 Oct 2013, at 19:46, Clément OUDOT wrote:
> You use a base in ldapsearch and a filter in your code. Use 'base' in
> search() to set the search base.
For Paul's benefit: what's happening here is that LDAP searches *require* that
a search base is specified, a search scope is specified, and
On 26 Jul 2013, at 13:08, Dileep S wrote:
>
> Hi,
> I am new to perl scripting.
>
> I have downloaded perl-ldap-0.57 from http://ldap.perl.org/
>
> What should I have to do with the extracted perl-ldap-0.57.tar.gz
>
> Where Should I have to copy or how install ?
You should build and i
On 25 Apr 2013, at 15:03, "Zachary, Carlton - Hoboken"
wrote:
> Thanks David.
>
> -Original Message-
> From: david.suarezde...@telefonica.es
> [mailto:david.suarezde...@telefonica.es]
> Sent: Thursday, April 25, 2013 9:35 AM
> To: perl-ldap@perl.org
> Subject: Re: Net::LDAP Search Fi
On 14 Sep 2012, at 16:46, Bruce Johnson wrote:
>
> On Sep 14, 2012, at 12:13 AM, Chris Ridd wrote:
>>
>> By definition the values in a given stored LDAP attribute have to be all
>> unique, so most of your problem "goes away": @result is simply @a!
>
&
On 13 Sep 2012, at 20:47, "Stierwalt, Kyle" wrote:
> New to Perl, what I'm trying to do is print out the unique values for a given
> LDAP attribute.
By definition the values in a given stored LDAP attribute have to be all
unique, so most of your problem "goes away": @result is simply @a!
Che
On 22 Apr 2012, at 19:56, Alexei Znamensky wrote:
> Hi Peter,
>
> On 22 April 2012 15:10, Peter Marschall wrote:
>
>> Hi,
>>
>> On Sunday, 22. April 2012, Alexei Znamensky wrote:
>>> it looks like a problem to me, but I might be wrong. It seems
>>> that Net::LDAP::FilterMatch doesn't cope wit
On 22 Apr 2012, at 19:10, Peter Marschall wrote:
> Hi,
>
> On Sunday, 22. April 2012, Alexei Znamensky wrote:
>> it looks like a problem to me, but I might be wrong. It seems
>> that Net::LDAP::FilterMatch doesn't cope with filters of the type:
>>
>> (dn=*)
>> (dn=cn=joe doe,ou=somewhere)
>
>
On 8 Mar 2012, at 08:44, Clément OUDOT wrote:
> Maybe the error come from the CA certificate, which should contain a
> CN in his subject?
I'm not sure there are particular naming rules for CA DNs. What about the
subject name of the AD server itself - what's that? IO::Socket::SSL might be
incor
On 23 Feb 2012, at 22:19, tBM wrote:
> First let me ask for your forgiveness, I am a perl newbie.
>
> We have a little perl script that is currently doing cleartext authentication
> against Oracle Internet Directory 10G that we've revised to use LDAPS and
> have the following in our NET::LDAP
On 19 Jan 2012, at 14:05, Chris Ridd wrote:
>
> On 19 Jan 2012, at 14:00, John Devitofranceschi wrote:
>
>>
>>
>> On Jan 19, 2012, at 8:21, Chris Ridd wrote:
>>
>>>
>>> On 19 Jan 2012, at 12:39, John Devitofranceschi wrote:
>&g
On 19 Jan 2012, at 14:00, John Devitofranceschi wrote:
>
>
> On Jan 19, 2012, at 8:21, Chris Ridd wrote:
>
>>
>> On 19 Jan 2012, at 12:39, John Devitofranceschi wrote:
>>
>>> Two bugs! Such a deal!
>>
>> No extra charge :-)
>>
>
On 19 Jan 2012, at 12:39, John Devitofranceschi wrote:
> Two bugs! Such a deal!
No extra charge :-)
> Yes, the cookie setting code is in the while (1) loop and the callback merely
> prints out the dn of the returned entries.
You mentioned that the OpenLDAP ldapsearch command-line tool seemed
On 19 Jan 2012, at 01:35, John Devitofranceschi wrote:
> I am trying to use a slightly modified version of the Net::LDAP example
> scripts with paging and callbacks against Oracle Internet directory.
>
> I am using perl 5.14.2 and very fresh versions of all the CPAN modules.
>
> The script fai
On 1 Dec 2011, at 23:40, Nick Urbanik wrote:
> This is ugly, especially when I want to have other code to fetch only
> users who *have* expired. Do I really need to do this sort of thing?
> The server knows which ones have expired; it would be great if I had a
> way of asking it to filter them o
On 30 Nov 2011, at 22:21, Nick Urbanik wrote:
> Dear Folks,
>
> I am writing Perl software to manage our OpenLDAP cluster using the
> slapo.ppolicy overlay to manage password policy. I'm hoping to get
> this into production very soon.
>
> My problem: how to efficiently search for users who hav
On 8 Sep 2011, at 17:12, Chris Ridd wrote:
>
> On 8 Sep 2011, at 14:26, Graham Barr wrote:
>
>> On Sep 7, 2011, at 09:26 , Peter Marschall wrote:
>>> Hi Graham,
>>>
>>> please consider pulling the commits in my pull request
>>> https://gi
On 8 Sep 2011, at 14:26, Graham Barr wrote:
> On Sep 7, 2011, at 09:26 , Peter Marschall wrote:
>> Hi Graham,
>>
>> please consider pulling the commits in my pull request
>> https://github.com/gbarr/perl-ldap/pull/3
>> into master and release version 0.44 of perl-ldap really soon.
>>
>> Re
On 11 Aug 2011, at 18:04, Mehmet wrote:
> Peter,
>
> Thanks so much for your super-fast reply, which made me realize that
> entry->get_value($attr)
> returns a list which can be iterated :)
When you call it in an array context it will return all the values, otherwise
it will just return a sing
On 3 Aug 2011, at 18:06, Kevan Carstensen wrote:
> We can easily address this by changing the options we pass to
> IO::Socket::SSL's new and start_SSL functions. I'm attaching a patch
> that does this, setting SSL_verifycn_name to 'ldap'. This behaves
> correctly in my tests: LDAPS connections to
On 20 Jul 2011, at 13:36, Graham Barr wrote:
>
> On Jul 20, 2011, at 07:32 , Francis Swasey wrote:
>
>>
>>
>> On Jul 20, 2011, at 8:26, Chris Ridd wrote:
>>
>>>
>>>>
>>>>
>>>>
>>>
>>> Grah
On 20 Jul 2011, at 13:12, Clément OUDOT wrote:
> And what about doing this:
>
> $filter = Net::LDAP::Filter::_escape( $filter );
>
> Would this work?
>
That's an internal method used to escape assertion values. If you run it on the
whole filter string it will also escape the other characters
On 20 Jul 2011, at 11:34, Clément OUDOT wrote:
> Hi,
>
> I will have a look to Net::LDAP::Filter, but I see in Net::LDAP that a
> new Net::LDAP::Filter is created in the search subroutine when filter
> is a string. Why do the Net::LDAP::Filter object do not escape the
> special characters from t
On 20 Jul 2011, at 10:02, Clément OUDOT wrote:
> Hi,
>
> I have a piece of code where I build a search filter with some
> variables, like this:
>
>my $searchFilter =
> "(&(objectClass=" . $portal->{ldapGroupObjectClass} . ")(|";
>foreach ( split( $portal->{multiValuesSeparator}, $v
On 19 Jul 2011, at 16:17, Rick Sanders wrote:
> I am trying to capture a better error description than I am getting with the
> following code:
>
> use Net::LDAP::Util qw(ldap_error_name ldap_error_text ldap_error_desc);
>
> $result = $ldap->add( $dn, attr => [ %$attrs ] );
> if ( $result->code
On 18 May 2011, at 18:45, Brian Gaber wrote:
> This dn search of dn=cn=name,o=org works from a command line and returns all
> the attributes of the dn:
>
> ldapsearch -h host -x -b "cn=name,o=org"
>
> However, this Net::LDAP does not return anything:
>
> $mesg = $ldap->search(base=>"cn=name,o
On 14 Apr 2011, at 18:22, Mark Inaba wrote:
> hello perl-ldap mailing list,
>
> i'm wondering if i'm trying to do the impossible, even though it seems like
> this might be a common situation.
> i'm trying to verify a user/password by having the user bind to an ldap
> server. the problem is tha
On 21 Feb 2011, at 03:52, Threet, Robert A wrote:
>
> Yeah - adds work great! I didn't get how to modify the password. It looks
> like you have to read in the entire entry - modify - then re-add it. Noticed
> that thinking in the LDAP Admin Guide Friday night.
No, that absolutely shouldn'
On 17 Feb 2011, at 17:10, Robert Threet wrote:
> I have a working Net::LDAP::Entry program for adding users so I decided
> to gut it to create a userPassword changer.
>
> I keep getting "Error changing password: no objectClass attribute".
>
> I cannot find examples doing simple one-at-a-time ad
On 17 Feb 2011, at 21:13, Prentice Bisbal wrote:
> I cut off the last line of the errors, which says this, which might be
> an additional clue:
>
> ntUserDomainId: value #0 invalid per syntax
What does your $ntUserDomainId value look like?
If you call $ldap->debug(15) before $entry->add you wi
On 22 Dec 2010, at 09:02, LIBRIZZI FRANCESCO
wrote:
> Hello Chris,
> thank you for your answer :)
> I replace all 300 members at once because I'm importing data in my LDAP
> server from Active Directory Server.
> I'm using SSL/TLS for all operations.
>
> I thought to use modify/add and modify
On 21 Dec 2010, at 09:13, LIBRIZZI FRANCESCO wrote:
> Hello,
> I wrote a script for updating the LDAP content. I want to modify the members
> that belong to a group.
> Therefore I used the modify function with the replace option. In this latter
> I used as parameter the new member list.
> When
On 23 Sep 2010, at 08:06, sajuptpm wrote:
> How add new ObjectClass and Attributes via command line.
> I need to add a new Objectclass MyObject with new attributes group_id
> and role, and i also need existing attribute uid.
>
You will need to look at the documentation for your server. This lis
On 28 Aug 2010, at 21:03, Kilian Röhner wrote:
> Hi,
>
> when i'm trying to modify an attribute of an entry, i am not allow to
> modify, the update method gives me of course an "Insufficent Access Error".
>
> I want to prevent that, so my question is: How can i check _before_
> doing the modify
On 7 Jul 2010, at 22:47, rfran...@comcast.net wrote:
> my $HOST = "1";
> my $ADMIN = "cn=me,DC=corp";
> my $PWD = "0";
> my $BASEDN = "DC=corp";
>
> my $ldap = Net::LDAP->new("$HOST", port=>389) or die "$@";
> my $dn = $ldap->bind("$ADMIN", password=>"$PWD");
> my $mgrdn = $ldap->bind("$AD
On 12 Apr 2010, at 06:21, William King wrote:
> Is there a way to get the internal attributes? such as for an
> inetOrgPerson entry I would want access to:
>
> createTimestamp
> creatorsName
> modifiersName
> modifyTimestamp
>
> These are available when using phpldapadmin and selecting internal
On 31 Mar 2010, at 19:25, Prentice Bisbal wrote:
> It's my understanding that using LDAPS->new or $ldap->start_tls with the
> option
>
> verify => 'require'
>
> Should verify that the host name should be checked and fail if it's not
> an exact match. From my experience with websites, TLS/SSL re
On 29 Mar 2010, at 14:06, Leilani Tubungbanua wrote:
> Hi Mr. Barr,
>
> I have read your CPAN documentation for Net::LDAP. I do have few questions
> whose answers I can not find in the documentation. Hopefully you are the
> right person to ask these:
>
> 1. Using the Net::LDAP or rela
On 8 Mar 2010, at 09:00, Etienne Bagnoud wrote:
> On Fri, 05 Mar 2010 18:11:38 +
> Chris Ridd wrote:
>
>> You should also add an OID to Net::LDAP::Constant so that callers can
>> easily test for this extension's presence in the root DSE.
>>
>
> Is
On 5 Mar 2010, at 15:53, Etienne Bagnoud wrote:
> Hi,
>
> I needed the extended operation "refresh" as Net::LDAP extension. As I
> didn't find one, I wrote one.
> This is mainly copied from SetPassword.pm, it's my first Perl module I
> wrote.
> The copyright notice is set that way as I didn't kn
On 6 Feb 2010, at 10:43, Dieter Kluenter wrote:
> natx...@asenjo.nl (J.I. Asenjo) writes:
>
>> On Fri, 05 Feb 2010, 10:18:54AM +0100�, Buchan Milne said:
>>> On Tuesday, 19 January 2010 17:35:47 Young, Darren wrote:
>>
>> Am I the only one getting multiple times this same message?
>
> No, m
On 7 Dec 2009, at 11:06, Lupin Deterd wrote:
> On 12/7/09, Chris Ridd wrote:
>>
>> On 7 Dec 2009, at 09:38, Lupin Deterd wrote:
>>
>>> Hi,
>>>
>>> What is the correct syntax of adding an OU using Net::LDAP, I tried
>>> the followi
On 7 Dec 2009, at 09:38, Lupin Deterd wrote:
> Hi,
>
> What is the correct syntax of adding an OU using Net::LDAP, I tried
> the following:
> !/usr/bin/perl -w
>
> use 5.10.1; use strict;
>
> use Net::LDAP; use Data::Dumper;
>
> my $ldap = Net::LDAP->new("192.168.183.2") or die "$@"; my $mesg
On 21 Sep 2009, at 13:53, Graham Barr wrote:
On Sep 21, 2009, at 5:41 AM, Chris Ridd wrote:
On 20 Sep 2009, at 18:44, Parag Kalra wrote:
I think I got what was going wrong...If I am not wrong 'bind'
method uses
authentication hence credentials only while making any changes
(
On 20 Sep 2009, at 18:44, Parag Kalra wrote:
I think I got what was going wrong...If I am not wrong 'bind' method
uses
authentication hence credentials only while making any changes
(add/modify/delete) to ldap server.
So if I will use wrong credentials to modify ldap database then it
will
On 19 Sep 2009, at 14:24, Graham Barr wrote:
On Sep 15, 2009, at 2:36 PM, Graham Barr wrote:
On Sep 4, 2009, at 2:40 PM, Quanah Gibson-Mount wrote:
Just curious... I see no commits to git since 10/2008. I sent a
private email a while back about a nasty issue with
Net::LDAP::LDIF
when used
On 5 Sep 2009, at 19:26, Quanah Gibson-Mount wrote:
--On Saturday, September 05, 2009 6:48 PM +0100 Chris Ridd > wrote:
On 4 Sep 2009, at 20:40, Quanah Gibson-Mount wrote:
Just curious... I see no commits to git since 10/2008. I sent a
private email a while back about a nasty issue w
On 4 Sep 2009, at 20:40, Quanah Gibson-Mount wrote:
Just curious... I see no commits to git since 10/2008. I sent a
private email a while back about a nasty issue with Net::LDAP::LDIF
when used with UTF8 characters.
Are you looking at the git repo?
Cheers,
Chris
On 8 Jul 2009, at 17:12, bill.co...@unh.edu wrote:
Chris Ridd recently wrote (in part):
I think the problem's in the way Oracle's representing the
SYNTAX oid value. RFC 4512 ... You could ask Oracle how to
configure the server to return valid schema.
After looking at the
On 7 Jul 2009, at 22:06, bill.co...@unh.edu wrote:
Dear Perl LDAP users,
After lurking for a very long time on this list, I have a
question of my own. I'm trying to dump the schema from an Oracle
Internet Directory LDAP, a.k.a. OID. After successfully
connecting and binding to the LDAP serve
On 26 May 2009, at 16:17, Guillaume Rousse wrote:
Net::LDAP=HASH(0x9e63030) sending:
68: SEQUENCE {
00021: INTEGER = 2
0005 32: [APPLICATION 23] {
0007 23: [CONTEXT 0]
0009 : 31 2E 33 2E 36 2E 31 2E 34 2E 31 2E 34 32 30 33
1.3.6.1.4.1.4203
0019 : 2E
On 26 May 2009, at 15:56, Guillaume Rousse wrote:
Chris Ridd a écrit :
On 26 May 2009, at 14:42, Guillaume Rousse wrote:
Hello list.
Some time ago, I had an issue with set_password() not handling
controls:
http://www.nntp.perl.org/group/perl.ldap/2008/09/msg2950.html
It was fixed in
On 26 May 2009, at 14:42, Guillaume Rousse wrote:
Hello list.
Some time ago, I had an issue with set_password() not handling
controls:
http://www.nntp.perl.org/group/perl.ldap/2008/09/msg2950.html
It was fixed in perl-ldap 0.38.
I also opened an ITS in openldap, because apparently passwor
On 20 Mar 2009, at 16:23, Helmut Schneider wrote:
LDAPSHow do I turn on debugging for Net::LDAP? Also, I'm not
familiar with the ldapserach syntax, but:
Call $ldap->debug(n) - n is a mask of debug flags described in the
docs. But as it is mainly for debugging LDAP PDUs, it isn't going to
On 17 Mar 2009, at 12:30, Dieter Kluenter wrote:
Chris Ridd writes:
On 16 Mar 2009, at 14:05, raga wrote:
I've to store LDAP Name in a database Column. What should be the
minimum size of that column . And is there any rationale for that?.
The Format of LDAP Name is like that of e-ma
On 16 Mar 2009, at 14:05, raga wrote:
I've to store LDAP Name in a database Column. What should be the
minimum size of that column . And is there any rationale for that?.
The Format of LDAP Name is like that of e-mail id.
The mail attribute is defined in RFC 2798 as having a minimum upper
On 30 Jan 2009, at 22:57, Ismael Lezcano wrote:
Hello, new poster, all noob disclaimers apply.
I'm trying to write script that will be a concept for other scripts.
I want to connect to Active Directory and have the script
intelligently decipher the configuration naming context
On 8 Jan 2009, at 11:43, omi wrote:
Hi All,
1. Is there is any method in Net::LDAP that can gives me an LDAP
Schema type say RFC33.. or Windows AD.
See Net::LDAP::Schema. But it just gives you the definitions, it
doesn't judge whether the schema corresponds to a certain
manufacturer's id
On 8 Jan 2009, at 13:12, Karsten Kankowski wrote:
Hello community!
It is possible to define attributes using the "attrs =>" directive
at the
search method which are should NOT be returned?
like:
$mesg = $ldap->search( ... ,
attrs => ['*', &((!objectclass) ( !
secre
On 16 Dec 2008, at 06:21, Ambuj wrote:
Can any body tell me do that same thing in C#.net
Try asking on a C#.net list instead of a perl list.
Cheers,
Chris
On 15 Dec 2008, at 16:19, Graham Barr wrote:
Filters only compare actual attributes, not parts of the DN. Which
is why you only
Nod, though you could do an extensible match which just matched parts
of the DN. An exercise for the reader...
Cheers,
Chris
On 27 Nov 2008, at 15:58, Clément OUDOT wrote:
On Nov 26, 2008, at 4:28 AM, Clément OUDOT wrote:
Thanks for your answer. I have to translate java code to perl ;) But
another question, it seems the value we get from AD is binary, I use
the
"raw" attribute in Net::LDAP search but the value I ge
On 17 Oct 2008, at 18:49, Jason Vas Dias wrote:
What confused me is that when I list user objects their DNs all
print out as
"cn=$user_name,uid=$user_id,o=att.com" ;
I thought that "cn" is just an attribute as is "uid", and by
definition, when creating
a new object, the object that co
On 17 Oct 2008, at 19:56, Graham Barr wrote:
On Oct 17, 2008, at 12:49 PM, Jason Vas Dias wrote:
whereas it returned an empty string in errorMessage - an error
string would have greatly
helped in diagnosing the problem and correcting my mistake.
Tell you LDAP server vendor as that is the s
On 16 Oct 2008, at 05:51, [EMAIL PROTECTED] wrote:
hi, i am new to perl ldap world and trying to install it on my windows
xp pc. could someone help me on how to install and from where to
download. i tried download from ldap.perl.org, but that is only for
unix systems and i cannot use on windows
On 28 Jul 2008, at 17:21, Katsuhisa Fujinaga wrote:
Hi, all.
Does anybody know how to direct page access?
I need to do an LDAP search, via Net::LDAP, on a openLDAP.
Since large quantity of data are stored, I would like to use
"server side paging" interface.
For example:
- maximum page size
On 24 Jul 2008, at 18:45, Miller, Don C. wrote:
Kurt, do try using \# when connecting.
That is because the # character has significance when it is at the
start of the value of an RDN. See RFC 4514, which defines the string
representation of DNs.
Cheers,
Chris
On 24 Jul 2008, at 18:13, _V-IT-Systemhaus-Perl-LDAP von extern wrote:
uhm, I thought, I had understood and configured that correctly 8-(
Shouldn't think too much.
I installed our root certificate in /etc/ssl/certs, where "capath"
points
to. The .pem file is correctly linked to the file with t
On 22 Jul 2008, at 10:59, _V-IT-Systemhaus-Perl-LDAP von extern wrote:
Hi Chris,
[...]
Can you write a simple program just using IO::Socket::SSL
that shows the
problem? If you can, then you should ask the IO::Socket::SSL
developers
about it...
thx for this hint.
A newer version of IO::Socke
_V-IT-Systemhaus-Perl-LDAP von extern wrote:
Hi,
On 19/07/2008, _V-IT-Systemhaus-Perl-LDAP von extern
<[EMAIL PROTECTED]> wrote:
Hi *,
- Novell SLES 10 (x86_64)
- Net::LDAP 0.36
- Net::SSLeay 1.32
- openssl 0.9.8a-18.23
First thoughgt ...
SLES has some iptables filtering going by default,
Daniel Stutz wrote:
Chris Ridd wrote:
The only difference is in the field name, and as it is not part of the
encoding I see no particular reason to change anything.
The field name is part of the _decoding_. That means the attribute
"response" is now "responseValue" in th
Daniel Stutz wrote:
Hi all,
according to RFC 4511 an ExtendedResponse has the following format:
ExtendedResponse ::= [APPLICATION 24] SEQUENCE {
COMPONENTS OF LDAPResult,
responseName [10] LDAPOID OPTIONAL,
responseValue[11] OCTET STRING OPTIONAL
Manuel Vacelet wrote:
Hello,
My question is probably more related to my own understanding of perl
than Net::LDAP module but it causes some headaches to me :)
The following code just works fine:
1 use strict;
2 use warnings;
3 use Net::LDAP;
4 my @servers =
['ldap://ldap5.example.com','ldap://ld
On 3 Jul 2008, at 20:20, Daniel Stutz wrote:
Hi all,
I am trying to implement an Net::LDAP::Extension and hit the wall,
when the first LDAPResponse from the server arrives.
ASN1::_decode returns an error, when it is called on that
LDAPResponse, which should contain an ExtendedResponse.
I
On 1 Jul 2008, at 07:52, Vartak, Yash V wrote:
Hey Chris I have tried that
but it returns exactly no that a page size is set to, If you set the
page size to a value greater than admin limit it would return the
amount
of entries to admin limit.
logically I need the flow need to go this way
On 1 Jul 2008, at 07:14, Vartak, Yash V wrote:
Dist,
I am using Net::LDAP to generate reports out of Microsoft Active
Directory, here my LDAP filter is expected to return roughly around
12,000 - 13,000 records.
But due to Admin limits on Active Directory the number of entries
returned are res
On 29 May 2008, at 14:03, Zumwalt, Robert wrote:
Well the DN is supposed to be all one line.. so outlook must have
formatted this improperly.
DISPLAYNAME=Name
1
,MAIL
[EMAIL PROTECTED],OU=OSS_8781150020001601_200805281457
19695574,O=blah.com,O=consumer,O=site
And this entry is below
MAIL
[EMA
On 16 Apr 2008, at 21:39, Mike Peachey wrote:
Peter Marschall wrote:
Hi Mike,
On Friday, 11. April 2008, Mike Peachey wrote:
I have discovered a critical bug in Net::LDAP 0.35 and submitted the
following ticket:
http://rt.cpan.org/Ticket/Display.html?id=34878
You are right, this is a bug.
I
On 7 Apr 2008, at 21:36, unxl3arn3r wrote:
hey i am having trouble doing a moddn, all I want to do is move the
object from one location to other. here is the script
$ldap = new Net::LDAP('10.1.1.2', port=>389) or die $!;
$ldap->bind (dn => 'cn=,cn=xx,dc=xxx,dc=xxx' ,
password
On 5 Apr 2008, at 19:15, Quanah Gibson-Mount wrote:
--On Friday, April 04, 2008 6:07 PM -0500 Graham Barr
<[EMAIL PROTECTED]> wrote:
Begin forwarded message:
Transaction: Ticket created by [EMAIL PROTECTED]
Queue: perl-ldap
Subject: suggestion for the position of CR character in
N
On 30 Mar 2008, at 20:07, Graham Barr wrote:
On Mar 20, 2008, at 4:08 PM, Chris Ridd wrote:
Git would work OK for me. Does the web site generate itself
automatically out of git as well as svn?
Yes, there is a web frontend for git. See http://git.kernel.org/gitweb.cgi?p=git/git.git;a=summary
On 20 Mar 2008, at 16:24, Graham Barr wrote:
On Mar 20, 2008, at 9:22 AM, Clément OUDOT wrote:
Sánta Gergely a écrit :
Hi!
I'd like to ask, are there any plans to release new version from svn
repository? There are many (for me mandatory) changes, which would
be
good to have by simple packa
1 - 100 of 463 matches
Mail list logo