Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 697169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T03:08:26+00:00 2026-05-14T03:08:26+00:00

I have a web form that collects information and submits it to a cgi

  • 0

I have a web form that collects information and submits it to a cgi that attempts to insert the data into LDAP. The problem is that I’m trying to use a variable with ::ldap::add and it’s just not working. Here’s the code:

if {[string length env(QUERY_STRING)] != 0} {
    set handle [::ldap::connect localhost]
    set dn "cn=admin,dc=mycompany,dc=com"
    set pw "myPassword"

    ::ldap::bind $handle $dn $pw

    set dn "cn=[ncgi::value givenName] [ncgi::value sn],ou=people,dc=mycompany,dc=com"

    set formValues [
            puts "cn        {{[ncgi::value givenName] [ncgi::value sn]}}"
            puts "displayName       [ncgi::value givenName] [ncgi::value sn]"
            foreach {key value} [ncgi::nvlist] {
                    if {[string length $value] != 0} {
                            puts "$key      $value"
                    }
            }
            puts "objectClass       top"
            puts "objectClass       person"
            puts "objectClass       organizationalPerson"
            puts "objectClass       inetOrgPerson"
    ]

    ::ldap::add $handle $dn {
            $formValues
    }

    ldap::unbind $handle

}

However, if I replace $formValues with the actual entries that I want to insert into LDAP, they get added just fine.

I’m new to TCL so I wouldn’t be surprised if there were some glaring errors in this snippet.

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T03:08:26+00:00Added an answer on May 14, 2026 at 3:08 am

    The big mistakes:

    1. The square brackets substitute the result of the script inside it and not its output.
    2. The puts commands sends strings to stdout (or a file) and doesn’t save them for processing later.
    3. The curly braces totally quash all substitutions inside them.

    The fixes are to use list commands to build the description to use with ldap::add. For example:

    set formValues {}
    lappend formValues cn          "[ncgi::value givenName] [ncgi::value sn]"
    ### Might need this instead; it depends on how you want to do the construction
    # lappend formValues cn        [list [ncgi::value givenName] [ncgi::value sn]]
    lappend formValues displayName "[ncgi::value givenName] [ncgi::value sn]"
    foreach {key value} [ncgi::nvlist] {
        ### Could also use {$value ne ""} here
        if {[string length $value] != 0} {
            lappend formValues $key $value
        }
    }
    lappend formValues objectClass top
    lappend formValues objectClass person
    lappend formValues objectClass organizationalPerson
    lappend formValues objectClass inetOrgPerson
    
    ::ldap::add $handle $dn $formValues
    

    Also, if those keys are coming from a form, you should add more validation to stop malicious users from adding unexpected extras like additional objectClasses. An ounce of prevention is worth a hundredweight of cure.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a web form that binds a DataGrid to a, normally, different data
I have a web form that has multiple ListBoxes, TextBoxes, DropDowns. If I put
I have a web form that I am attempting to implement dynamic drop down
I have a checkbox list control on my asp.net web form that I am
Say you have a web form with some fields that you want to validate
We have a web application that is based around a form that gets passed
I have a web report that uses a Django form (new forms) for fields
Using web forms I know that you can only have one ASP.NET form on
I have a web form that allows users to search on and edit records
I have a web form that has 2 drop down menus, when the first

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.