GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::LDAP::Makepath(3) User Contributed Perl Documentation Net::LDAP::Makepath(3)

Net::LDAP::Makepath - Provides a methode for creating paths in LDAP simply.

Version 1.0.1

    use Net::LDAP::Makepath;

        #Uses $ldap to create the new entries.
        #The objectClasses used are top and organizationalUnit.
        #The attribute used for the DNs is ou.
        #The path to be created is "some/path".
        #The base is "dc=foo,dc=bar".
        #
        #The resulting entries are...
        #dn: ou=some,dc=foo,dc=bar
        #objectClass: top
        #objectClass: orginationalUnit
        #ou: some
        #
        #dn: ou=path,ou=some,dc=foo,dc=ath
        #objectClass: top
        #objectClass: orginationalUnit
        #ou: path
        my $returned=LDAPmakepathSimple($ldap, ["top", "organizationalUnit"], "ou",
                                                "some,path", "dc=foo,dc=bar")
    if(!returned){
        print "LDAPmakepathSimple failed.";
    };

LDAPmakepathSimple

This creates a path from a comma seperated path. Five arguements are required.

The first arguement is a Net::LDAP connection object.

The second arguement is a array of objectClasses.

The third the attribute to use for creating the DNs.

The fourth is the path to use. It is broken apart at each ,.

The firth is the base DN to use.

The returned object is a perl boolean value.

Zane C. Bowers, "<vvelox at vvelox.net>"

Please report any bugs or feature requests to "bug-net-ldap-makepath at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-LDAP-Makepath>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.

    perldoc Net::LDAP::Makepath

You can also look for information at:

  • RT: CPAN's request tracker

    <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-LDAP-Makepath>

  • AnnoCPAN: Annotated CPAN documentation

    <http://annocpan.org/dist/Net-LDAP-Makepath>

  • CPAN Ratings

    <http://cpanratings.perl.org/d/Net-LDAP-Makepath>

  • Search CPAN

    <http://search.cpan.org/dist/Net-LDAP-Makepath>

Copyright 2008 Zane C. Bowers, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2010-06-26 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.