You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(200) |
Jun
(129) |
Jul
(184) |
Aug
(204) |
Sep
(106) |
Oct
(79) |
Nov
(72) |
Dec
(54) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(83) |
Feb
(123) |
Mar
(84) |
Apr
(184) |
May
(106) |
Jun
(111) |
Jul
(104) |
Aug
(91) |
Sep
(59) |
Oct
(99) |
Nov
(100) |
Dec
(37) |
2002 |
Jan
(148) |
Feb
(88) |
Mar
(85) |
Apr
(151) |
May
(80) |
Jun
(110) |
Jul
(85) |
Aug
(43) |
Sep
(64) |
Oct
(89) |
Nov
(59) |
Dec
(42) |
2003 |
Jan
(129) |
Feb
(104) |
Mar
(162) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Chris R. <chr...@me...> - 2001-07-30 16:20:14
|
"Alwicher, Vincent VAG SITI-GRSE3" <Vin...@is...> wrote: > Hi, > > I was wondering if there is a function that can split the DN into an array > comtaining the separate components of the DN? > > In the competing Perl LDAP module LDAPapi there is a function called > "explode_dn" available which can do this. > I cannot find a similar function in mr. Graham Barr's module. > Thanks in advance! > > Kind regards / Met vriendelijke groet, > Vincent Alwicher > Technical Consultancy and Solution Development > SITI-GRSE3 - Global Practice Infrastructure Solutions Europe / Africa > Shell Information Technology International B.V. > There isn't really an equivalent, but I note that Net::LDAP::Util has a canonical_dn function that uses a regex to 'explode' DNs. You could copy that code... Cheers, Chris |
From: Alwicher, V. V. SITI-G. <Vin...@is...> - 2001-07-30 16:03:07
|
Hi, I was wondering if there is a function that can split the DN into an array comtaining the separate components of the DN? In the competing Perl LDAP module LDAPapi there is a function called "explode_dn" available which can do this. I cannot find a similar function in mr. Graham Barr's module. Thanks in advance! Kind regards / Met vriendelijke groet, Vincent Alwicher Technical Consultancy and Solution Development SITI-GRSE3 - Global Practice Infrastructure Solutions Europe / Africa Shell Information Technology International B.V. |
From: dave h. <red...@ya...> - 2001-07-25 14:25:29
|
Graham, Thanks for making these handouts available. I tried hard to convince my employer to send me to the conference, but it didn't work out. Will you be giving any tutorials in the Chicago area in the near future? Thanks again from an LDAP-newbie, Dave Hoover Internet Specialist American Medical Association --- Graham Barr <gb...@po...> wrote: > The handouts for the tutorial I tought at OSCON 2001 > are now avaliable on the > perl-ldap website > http://perl-ldap.sourceforge.net/perl-ldap-oscon2001.pdf > > Graham. > __________________________________________________ Do You Yahoo!? Make international calls for as low as $.04/minute with Yahoo! Messenger http://phonecard.yahoo.com/ |
From: Jim H. <ha...@us...> - 2001-07-25 12:07:50
|
You probably want print $entry->get_value("uid"); On Tue, 24 Jul 2001, Graham Barr wrote: > ----- Forwarded message from Joseph Kezar <jk...@do...> ----- > > Date: Tue, 24 Jul 2001 15:34:07 -0400 > To: gb...@po... > From: Joseph Kezar <jk...@do...> > Subject: Returning Attribute info > X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.4.2-2 i686) > > Graham, > Why wont this work after retrieving an entry? > > #I want it to print: jkezar > print $entry->{uid}; > Instead I get: Use of uninitialized value at ./netdap line 22. > Please tell me how I can return individual attribute values. > Thank You, > > Joseph Kezar > MIS Department > jk...@do... > (Vermont Department of Corrections) > > > ----- End forwarded message ----- > > |
From: Graham B. <gb...@po...> - 2001-07-24 23:18:43
|
----- Forwarded message from Christoph Neumann <en...@ap...> ----- Date: Fri, 20 Jul 2001 16:18:28 -0700 (PDT) To: Graham Barr <gb...@po...> From: Christoph Neumann <en...@ap...> Subject: Expression to Filter Conversion In-Reply-To: <200...@po...> Graham, I would appreciate if I could get your opinion. I created a library that translates traditional boolean style expressions into the LDAP filter syntax. When I need to construct a query based on user input, I find it easier to construct the boolean expressions than the LDAP filters. The nested nature of the LDAP filter makes them difficult to read and construct. Also, the LDAP design choice to minimize the set of comparison operators is annoying. Examples: Expression: cn = *Neumann && uid = e* Filter : (&(cn=*Neumann)(uid=e*)) The library supports operator precidence and parenthetical grouping. Also, it handles translating comparison operators that LDAP does not support into their logical eqivalents. Expression: uid >= E && uid < F Filter : (&(uid>=E)(!(uid>=F))) It supports the ! operator too. Expression: cn >= C && cn < D || ! ( uid = t* && uid != test* ) Filter : (|(&(cn>=C)(!(cn>=D)))(!(&(uid=t*)(!(uid=test*))))) Do you know of any other publically available libraries to do this? I couldn't find any. Do you think this is something that would be nice to incorporate into the Net::LDAP suite? Maybe something like "Net::LDAP::Filter::Expression"? Do you have any recommendations for features? - Christoph Neumann Database and Directory Services Administrator Azusa Pacific University ----- End forwarded message ----- |
From: Graham B. <gb...@po...> - 2001-07-24 22:52:07
|
----- Forwarded message from Joseph Kezar <jk...@do...> ----- Date: Tue, 24 Jul 2001 15:34:07 -0400 To: gb...@po... From: Joseph Kezar <jk...@do...> Subject: Returning Attribute info X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.4.2-2 i686) Graham, Why wont this work after retrieving an entry? #I want it to print: jkezar print $entry->{uid}; Instead I get: Use of uninitialized value at ./netdap line 22. Please tell me how I can return individual attribute values. Thank You, Joseph Kezar MIS Department jk...@do... (Vermont Department of Corrections) ----- End forwarded message ----- |
From: Graham B. <gb...@po...> - 2001-07-24 16:56:28
|
The handouts for the tutorial I tought at OSCON 2001 are now avaliable on the perl-ldap website http://perl-ldap.sourceforge.net/perl-ldap-oscon2001.pdf Graham. |
From: Alexis B. <ale...@di...> - 2001-07-24 16:20:37
|
I have seen AD schema extended via LDIF files in the past. You might want to dig around and see if you can figure something out in that space using LDIFDE. -- Alexis -----Original Message----- From: per...@li... [mailto:per...@li...] On Behalf Of chad r. west Sent: Tuesday, July 24, 2001 12:02 PM To: Robert Vera Cc: per...@li... Subject: Re: adding to the AD schema bob, unfortunately, AD doesn't allow you to update the schema from the LDAP protocol. here is a support page which tells you exactly what to do to modify the default schema: http://support.microsoft.com/support/kb/articles/Q279/9/78.ASP if this can be done via LDAP, then i would love to be enlightened! :-) enjoy, chad Robert Vera wrote: > > Hello, > > Could someone point me in the right direction regarding updating the AD schema from an NDS/LDAP schema using perl? > > I know how to create an LDIF file. I have done schema updates fromone NDS server to another. I just cannot seem to get it right for and AD update. > > Thanks, > Bob Vera > > ITSD > United States Naval Academy > Ward Hall G6 > Annapolis, MD 21402 > Ph: (410)293-1451 > Fx: (410)293-4878 -- chad r. west virage inc. software engineer 177 bovet road, suite 520 cw...@vi... san mateo, ca 94402 http://www.virage.com/ |
From: chad r. w. <cw...@vi...> - 2001-07-24 16:02:23
|
bob, unfortunately, AD doesn't allow you to update the schema from the LDAP protocol. here is a support page which tells you exactly what to do to modify the default schema: http://support.microsoft.com/support/kb/articles/Q279/9/78.ASP if this can be done via LDAP, then i would love to be enlightened! :-) enjoy, chad Robert Vera wrote: > > Hello, > > Could someone point me in the right direction regarding updating the AD schema from an NDS/LDAP schema using perl? > > I know how to create an LDIF file. I have done schema updates fromone NDS server to another. I just cannot seem to get it right for and AD update. > > Thanks, > Bob Vera > > ITSD > United States Naval Academy > Ward Hall G6 > Annapolis, MD 21402 > Ph: (410)293-1451 > Fx: (410)293-4878 -- chad r. west virage inc. software engineer 177 bovet road, suite 520 cw...@vi... san mateo, ca 94402 http://www.virage.com/ |
From: Robert V. <ve...@gw...> - 2001-07-24 15:51:02
|
Hello, Could someone point me in the right direction regarding updating the AD = schema from an NDS/LDAP schema using perl? I know how to create an LDIF file. I have done schema updates fromone NDS = server to another. I just cannot seem to get it right for and AD update. Thanks, Bob Vera ITSD United States Naval Academy Ward Hall G6 Annapolis, MD 21402 Ph: (410)293-1451 Fx: (410)293-4878 |
From: Christopher A B. <ca...@tc...> - 2001-07-23 18:25:21
|
As Emeric LOISEAU once put it so eloquently: > Can you tell me, if the perl can read active directory in windows 2000 > server. This worked for me: #!/usr/local/bin/perl use Net::LDAPS; # actual application uses Net::DNS to find SRV records for LDAP service $ldaps = new Net::LDAPS('foo.umn.edu', port => 636) or die; $ldaps->bind(dn => 'cn=Administrator, cn=Users, dc=foo, dc=umn, dc=edu', password => 'PASSWORD', version => 3 ); $mesg = $ldaps->search( base => 'dc=foo, dc=umn, dc=edu', filter => 'cn=Test User' ); $mesg->code && die $mesg->error; foreach $entry ($mesg->all_entries) { $entry->dump; } $ldaps->unbind; %% Christopher A. Bongaarts %% ca...@tc... %% %% Internet Services %% http://umn.edu/~cab %% %% University of Minnesota %% +1 (612) 625-1809 %% |
From: Emeric L. <te...@ie...> - 2001-07-23 18:01:45
|
Hi, Can you tell me, if the perl can read active directory in windows 2000 server. Thanks Emeric |
From: Emeric L. <e.l...@at...> - 2001-07-23 17:59:23
|
Hi, Can you tell me, if the perl can read active directory in windows 2000 server. Thanks Emeric |
From: Rafael C. <Raf...@li...> - 2001-07-19 13:09:58
|
Hi Hans, I think you should use the Unicode::MapUTF8 module: use Unicode::MapUTF8 qw(from_utf8); ... (now, if you have an entry $entry) ... print from_utf8({-string =3D> $entry->get_value('cn'), -charset =3D> 'ISO-8859-1'}) . "\n"; will print you the cn attribute, translated to ISO-8859-1 Bye, Rafael -----Original Message----- From: Klunder, JAA (Hans) [mailto:J.A...@rf...]=20 Sent: jeudi, 19. juillet 2001 14:45 To: 'per...@li...' Subject: utf8 in LDIF Hi, My question might be off-topic but I'm sure someone has seen this before. I have an LDIF containing base64 data: dn: uid=3Dbruins,dc=3Drabobank, dc=3DNL objectClass: top objectClass: rabomailItem cn:: QnJ1aW5zIFNsb3QsIEogKEp1bGnCunR0ZSk=3D sn: Bruins l: Waalre uid: bruins When I dump this entry after reading with Net::LDAP::LDIF I get: objectclass: top rabomailItem cn: Bruins Slot, J (Juli=C2=BAtte) sn: Bruins l: Waalre uid: bruins I would like to get Juli=EBtte instead of Juli=C2=BAtte . Is there a trick to obtain this latin-1 value instead of the UTF8. I tried: my $cn=3D$entry->get_value('cn'); $cn=3D~ tr/\F0-\x{FF}//UC;=20 print "$cn \n"; Which results in: Bruins Slot, J (Juli=BAtte) I'm using perl 5.6.0 on NT4. Hans Klunder Infra Services Rabobank ICT ZLG 385 Laan van Eikenstein 9 3705 AR Zeist 030-2154036 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D De informatie opgenomen in dit bericht kan vertrouwelijk zijn en=20 is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht=20 onterecht ontvangt, wordt u verzocht de inhoud niet te gebruiken en=20 de afzender direct te informeren door het bericht te retourneren.=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The information contained in this message may be confidential=20 and is intended to be exclusively for the addressee. Should you=20 receive this message unintentionally, please do not use the contents=20 herein and notify the sender immediately by return e-mail. |
From: Klunder, J. (Hans) <J.A...@rf...> - 2001-07-19 12:45:38
|
Hi, My question might be off-topic but I'm sure someone has seen this before. I have an LDIF containing base64 data: dn: uid=3Dbruins,dc=3Drabobank, dc=3DNL objectClass: top objectClass: rabomailItem cn:: QnJ1aW5zIFNsb3QsIEogKEp1bGnCunR0ZSk=3D sn: Bruins l: Waalre uid: bruins When I dump this entry after reading with Net::LDAP::LDIF I get: objectclass: top rabomailItem cn: Bruins Slot, J (Juli=C2=BAtte) sn: Bruins l: Waalre uid: bruins I would like to get Juli=EBtte instead of Juli=C2=BAtte . Is there a trick to obtain this latin-1 value instead of the UTF8. I tried: my $cn=3D$entry->get_value('cn'); $cn=3D~ tr/\F0-\x{FF}//UC;=20 print "$cn \n"; Which results in: Bruins Slot, J (Juli=BAtte) I'm using perl 5.6.0 on NT4. Hans Klunder Infra Services Rabobank ICT ZLG 385 Laan van Eikenstein 9 3705 AR Zeist 030-2154036 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D De informatie opgenomen in dit bericht kan vertrouwelijk zijn en=20 is uitsluitend bestemd voor de geadresseerde. Indien u dit bericht=20 onterecht ontvangt, wordt u verzocht de inhoud niet te gebruiken en=20 de afzender direct te informeren door het bericht te retourneren.=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D The information contained in this message may be confidential=20 and is intended to be exclusively for the addressee. Should you=20 receive this message unintentionally, please do not use the contents=20 herein and notify the sender immediately by return e-mail. |
From: Reich, S. <Ste...@dg...> - 2001-07-19 09:10:31
|
Hi all, each time I try to connect to an LDAP Server on our Linux Machine, I get an immediate IO::Socket::INET: Timeout Telnet on LDAP Port works, so the network connection should be ok. Tnx for any help Stefan P.S.: On SUN, the same script works fine. |
From: Graham B. <gb...@po...> - 2001-07-18 21:00:28
|
This has been reported to me. Just add 1; to the end of test.cfg Graham. On Wed, Jul 18, 2001 at 09:40:38PM +0100, Chris Covell wrote: > Guys > > Has anyone else had problems with installing 0.24 ? I am currently running > 0.22 and this went in fine. > > I get the following error after make test: > > root@floppy:/home/chris/download/perl-ldap-0.24 > make test > PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib > -I/usr/lib/perl5/5.6.0/i586-linux -I/usr/lib/perl5/5.6.0 -e 'use > Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t > t/00ldif-entry......test.cfg did not return a true value at t/common.pl line > 4. > BEGIN failed--compilation aborted at t/common.pl line 45. > Compilation failed in require at t/00ldif-entry.t line 4. > BEGIN failed--compilation aborted at t/00ldif-entry.t line 5. > t/00ldif-entry......dubious > Test returned status 255 (wstat 65280, 0xff00) > t/01canon_dn........ok > t/02filter..........ok > t/50populate........test.cfg did not return a true value at t/common.pl line > 4. > BEGIN failed--compilation aborted at t/common.pl line 45. > Compilation failed in require at t/50populate.t line 4. > BEGIN failed--compilation aborted at t/50populate.t line 6. > t/50populate........dubious > Test returned status 255 (wstat 65280, 0xff00) > Undefined subroutine &Test::Harness::WCOREDUMP called at > /usr/lib/perl5/5.6.0/Test/Harness.pm line 334. > make: *** [test_dynamic] Error 255 > > Chris... > > > ---------- Forwarded Message ---------- > Subject: [Fwd] CPAN Upload: G/GB/GBARR/perl-ldap-0.24.tar.gz > Date: Tue, 17 Jul 2001 14:05:45 +0100 > From: Graham Barr <gb...@po...> > To: LDAP Mailing List <per...@li...> > > > perl-ldap-0.24.tar.gz should be on a CPAN near you soon. > > It is also avaliable from > > http://prdownloads.sourceforge.net/perl-ldap/perl-ldap-0.24.tar.gz > > Graham. > > ----- Forwarded message from PAUSE <up...@p1...> ----- > > Date: Tue, 17 Jul 2001 15:01:04 +0200 > To: "Graham Barr" <GB...@cp...>, cpa...@pe... > From: PAUSE <up...@p1...> > Subject: CPAN Upload: G/GB/GBARR/perl-ldap-0.24.tar.gz > > The uploaded file > > perl-ldap-0.24.tar.gz > > has entered CPAN as > > file: $CPAN/authors/id/G/GB/GBARR/perl-ldap-0.24.tar.gz > size: 241406 bytes > md5: 2c85434c06c1956d28ff3daf28c5ccda > > No action is required on your part > Request entered by: GBARR (Graham Barr) > Request entered on: Tue, 17 Jul 2001 12:59:40 GMT > Request completed: Tue, 17 Jul 2001 13:01:04 GMT > > Virtually Yours, > Id: paused,v 1.74 2001/05/20 14:59:52 k Exp k > > ----- End forwarded message ----- > > ------------------------------------------------------- > |
From: Chris C. <ch...@ka...> - 2001-07-18 20:41:58
|
Guys Has anyone else had problems with installing 0.24 ? I am currently running 0.22 and this went in fine. I get the following error after make test: root@floppy:/home/chris/download/perl-ldap-0.24 > make test PERL_DL_NONLAZY=1 /usr/bin/perl -Iblib/arch -Iblib/lib -I/usr/lib/perl5/5.6.0/i586-linux -I/usr/lib/perl5/5.6.0 -e 'use Test::Harness qw(&runtests $verbose); $verbose=0; runtests @ARGV;' t/*.t t/00ldif-entry......test.cfg did not return a true value at t/common.pl line 4. BEGIN failed--compilation aborted at t/common.pl line 45. Compilation failed in require at t/00ldif-entry.t line 4. BEGIN failed--compilation aborted at t/00ldif-entry.t line 5. t/00ldif-entry......dubious Test returned status 255 (wstat 65280, 0xff00) t/01canon_dn........ok t/02filter..........ok t/50populate........test.cfg did not return a true value at t/common.pl line 4. BEGIN failed--compilation aborted at t/common.pl line 45. Compilation failed in require at t/50populate.t line 4. BEGIN failed--compilation aborted at t/50populate.t line 6. t/50populate........dubious Test returned status 255 (wstat 65280, 0xff00) Undefined subroutine &Test::Harness::WCOREDUMP called at /usr/lib/perl5/5.6.0/Test/Harness.pm line 334. make: *** [test_dynamic] Error 255 Chris... ---------- Forwarded Message ---------- Subject: [Fwd] CPAN Upload: G/GB/GBARR/perl-ldap-0.24.tar.gz Date: Tue, 17 Jul 2001 14:05:45 +0100 From: Graham Barr <gb...@po...> To: LDAP Mailing List <per...@li...> perl-ldap-0.24.tar.gz should be on a CPAN near you soon. It is also avaliable from http://prdownloads.sourceforge.net/perl-ldap/perl-ldap-0.24.tar.gz Graham. ----- Forwarded message from PAUSE <up...@p1...> ----- Date: Tue, 17 Jul 2001 15:01:04 +0200 To: "Graham Barr" <GB...@cp...>, cpa...@pe... From: PAUSE <up...@p1...> Subject: CPAN Upload: G/GB/GBARR/perl-ldap-0.24.tar.gz The uploaded file perl-ldap-0.24.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GB/GBARR/perl-ldap-0.24.tar.gz size: 241406 bytes md5: 2c85434c06c1956d28ff3daf28c5ccda No action is required on your part Request entered by: GBARR (Graham Barr) Request entered on: Tue, 17 Jul 2001 12:59:40 GMT Request completed: Tue, 17 Jul 2001 13:01:04 GMT Virtually Yours, Id: paused,v 1.74 2001/05/20 14:59:52 k Exp k ----- End forwarded message ----- ------------------------------------------------------- |
From: Graham B. <gb...@po...> - 2001-07-18 12:24:50
|
It was not intentional, just an oversight. Net::LDAP::Message::is_error returns true for any value that is not LDAP_SUCESS, each sub-class needs to override if they need something different, for example Net::LDAP::Compare does. However, my original thought was that acceptable codes should be passed to the method. Some people may not want referral others do. So those that do would need add $ldap->search( ..., allow => [ LDAP_REFERRAL ]); which would prevent LDAP_REFERRAL from being treated as an error. I just never got that far :) Graham. On Wed, Jul 18, 2001 at 10:22:39AM +0100, Chris Ridd wrote: > It appears as though if a search receives a referral (and maybe a > continuation reference, but I haven't checked this), this is considered by > Net::LDAP::Message::is_error to be an error and therefore the 'onerror' > handler gets called. > > Is this intentional? It is bad news if onerror is set to 'die' and the > server returns a referral :-( > > Cheers, > > Chris > |
From: Chris R. <chr...@me...> - 2001-07-18 09:22:58
|
It appears as though if a search receives a referral (and maybe a continuation reference, but I haven't checked this), this is considered by Net::LDAP::Message::is_error to be an error and therefore the 'onerror' handler gets called. Is this intentional? It is bad news if onerror is set to 'die' and the server returns a referral :-( Cheers, Chris |
From: Graham B. <gb...@po...> - 2001-07-17 13:07:25
|
perl-ldap-0.24.tar.gz should be on a CPAN near you soon. It is also avaliable from http://prdownloads.sourceforge.net/perl-ldap/perl-ldap-0.24.tar.gz Graham. ----- Forwarded message from PAUSE <up...@p1...> ----- Date: Tue, 17 Jul 2001 15:01:04 +0200 To: "Graham Barr" <GB...@cp...>, cpa...@pe... From: PAUSE <up...@p1...> Subject: CPAN Upload: G/GB/GBARR/perl-ldap-0.24.tar.gz The uploaded file perl-ldap-0.24.tar.gz has entered CPAN as file: $CPAN/authors/id/G/GB/GBARR/perl-ldap-0.24.tar.gz size: 241406 bytes md5: 2c85434c06c1956d28ff3daf28c5ccda No action is required on your part Request entered by: GBARR (Graham Barr) Request entered on: Tue, 17 Jul 2001 12:59:40 GMT Request completed: Tue, 17 Jul 2001 13:01:04 GMT Virtually Yours, Id: paused,v 1.74 2001/05/20 14:59:52 k Exp k ----- End forwarded message ----- |
From: Chris R. <chr...@me...> - 2001-07-17 10:06:43
|
He...@wh... wrote: > Hello all, > > have just installed perldap1.4 on my machine. It seems to me that it has > installed perfectly as you can see from below pasted output. > > C:\perldap-1.4>c:\perl\bin\make install > > Microsoft (R) Program Maintenance Utility Version 1.50 > Copyright (c) Microsoft Corp 1988-94. All rights reserved. > > Installing C:\Perl\site\lib\auto\Mozilla\LDAP\API\API.bs You probably want to talk to the Mozilla folks, since this list is about the Net::LDAP set of modules. Look at the README file in the perldap distribution for more contact details :-) Cheers, Chris |
From: <He...@wh...> - 2001-07-16 22:12:43
|
Hello all, have just installed perldap1.4 on my machine. It seems to me that it has installed perfectly as you can see from below pasted output. C:\perldap-1.4>c:\perl\bin\make install Microsoft (R) Program Maintenance Utility Version 1.50 Copyright (c) Microsoft Corp 1988-94. All rights reserved. Installing C:\Perl\site\lib\auto\Mozilla\LDAP\API\API.bs Installing C:\Perl\site\lib\auto\Mozilla\LDAP\API\API.dll Installing C:\Perl\site\lib\auto\Mozilla\LDAP\API\API.exp Installing C:\Perl\site\lib\auto\Mozilla\LDAP\API\API.lib Installing C:\Perl\site\lib\Mozilla\LDAP\API.pm Installing C:\Perl\site\lib\Mozilla\LDAP\Conn.pm Installing C:\Perl\site\lib\Mozilla\LDAP\Entry.pm Installing C:\Perl\site\lib\Mozilla\LDAP\LDIF.pm Installing C:\Perl\site\lib\Mozilla\LDAP\oldtest.pl Installing C:\Perl\site\lib\Mozilla\LDAP\Utils.pm Installing C:\Perl\site\lib\auto\Mozilla\LDAP\API\autosplit.ix Writing C:\Perl\site\lib\auto\Mozilla\LDAP\API\.packlist Appending installation info to C:\Perl\lib/perllocal.pod But now when I try to run any damn single example(from examples directory),perldap crashes with memory violation.Can anyone just suggest me syntax for a silly,simple example(may be just how to connect) , to any publically available server? I will be really grateful to you all. I am ready to provide any information you want. my server info is HOST: hetal.whitelight.com ,PORT: 27033, BASE: cn=arad,ou=faculty,o=whitelight.com. Please reply, Thanks in advance, hetal |
From: Chris C. <ch...@ka...> - 2001-07-15 19:20:50
|
Looks good to me Clif, I have not bashed it very hard as yet, but the response seems fine on the couple of lookups I have done. Chris... >>or the last few weeks I have been working on this project and >>as of tonight it is online and ready for your review and >>suggestions. |
From: Ken L. <cc...@us...> - 2001-07-14 11:25:23
|
Could anyone show me a code snippet how to retrieve information reading a LDIF command file using Net::LDAP::LDIF->read_cmd? For changetype "add" and "delete", it is simple. However, it seems complicated for changetype "modify". How can I know which attributes are added/deleted/replaced in the "modify" command? Any help is really appreciated. Thanks! Ken |