Web form to reset password on both mainframe and windows environment using LDAP

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Web form to reset password on both mainframe and windows environment using LDAP

    The LDAP is located on the mainframe. I can successfully
    select records using some ASP (Classic) script. I choose
    to use ASP classic because there are very few examples I
    could find of using the directory services other than the
    MS AD. Anywho, as I said I can select the LDAP record
    using a mixture of SQL and LDAP dialects but now I am at a
    standstill... I have been asked to create a form to reset
    the passwords on both the mainframe and the network at the
    same time. The actual user accounts on the mainframe
    exist in RACF and the "field" I need to access is
    racfPassword, could this be accomplished via a SQL Update
    command using the same mix of SQL and LDAP dialects? Any
    help is greatly appreciated.

    mike dot mahon at txdps dot state dot tx dot us
    Mike Mahon Guest

  2. Similar Questions and Discussions

    1. Need to reset password
      For Contribute 3 under WIndows XP, my password is no longer accepted. How do I reset the password and, if necessary, the user ID?
    2. Reset CF 7 Password
      Hello, ColdFusion 7 was installed on a server by a former employee some time ago. I, as his replacement, need to access the Administrator's...
    3. Password reset -CF 4.5.1 SP2
      Hi, Anyone know how to reset the CF4.5.1 SP2 admin page password. Currently CF 4.5.1 SP2 running on Windows NT4.0. Please help. Thanks,...
    4. password reset
      Be sure it is not a caps lock problem, and everything is spelt wright.It can work by resetting jumpers but this depends on your mother...
    5. I need to know how to reset my password
      I am the administrator of my computer and I have a probmlem that I forgot my password. The deal is that I dont have the Welcome screen that...
  3. #2

    Default Re: Web form to reset password on both mainframe and windows environment using LDAP

    No, the SQL dialect for AD is read-only.

    There really shouldn't be much difference between using classic ASP and
    System.DirectoryServices to access LDAP resources. They use the same stuff
    under the hood (ADSI and LDAP API). If you are using ASP though, why post
    to a .NET newsgroup?

    Regarding changing passwords on the mainframe, that will depend completely
    on that directory's semantics for changing passwords. They won't be the
    same as AD, so you can't use SetPassword or ChangePassword (which are
    AD-specific).

    Also, when you say "change the network password", what do you mean by that?
    Is the user in a Windows domain as well?

    Joe K.

    "Mike Mahon" <anonymous@discussions.microsoft.com> wrote in message
    news:7ed401c52896$246d5e80$a601280a@phx.gbl...
    > The LDAP is located on the mainframe. I can successfully
    > select records using some ASP (Classic) script. I choose
    > to use ASP classic because there are very few examples I
    > could find of using the directory services other than the
    > MS AD. Anywho, as I said I can select the LDAP record
    > using a mixture of SQL and LDAP dialects but now I am at a
    > standstill... I have been asked to create a form to reset
    > the passwords on both the mainframe and the network at the
    > same time. The actual user accounts on the mainframe
    > exist in RACF and the "field" I need to access is
    > racfPassword, could this be accomplished via a SQL Update
    > command using the same mix of SQL and LDAP dialects? Any
    > help is greatly appreciated.
    >
    > mike dot mahon at txdps dot state dot tx dot us

    Joe Kaplan \(MVP - ADSI\) Guest

  4. #3

    Default Re: Web form to reset password on both mainframe and windows environment using LDAP

    Quote Originally Posted by Mike Mahon View Post
    The LDAP is located on the mainframe. I can successfully
    select records using some ASP (Classic) script. I choose
    to use ASP classic because there are very few examples I
    could find of using the directory services other than the
    MS AD. Anywho, as I said I can select the LDAP record
    using a mixture of SQL and LDAP dialects but now I am at a
    standstill... I have been asked to create a form to reset
    the passwords on both the mainframe and the network at the
    same time.
    mike dot mahon at txdps dot state dot tx dot us
    yes i agree but The actual user accounts on the mainframe
    exist in RACF and the "field" I need to access is
    racfPassword, could this be accomplished via a SQL Update
    command using the same mix of SQL and LDAP dialects? Any
    help is greatly appreciated.
    umerwaqas is offline Junior Member
    Join Date
    Apr 2012
    Posts
    4

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139