Wrox Programmer Forums
|
Classic ASP Components Discussions specific to components in ASP 3.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Classic ASP Components section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 12th, 2004, 08:17 AM
Authorized User
 
Join Date: Aug 2003
Posts: 78
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to spraveens
Default Error while creating User acc In AD

Hi

I am getting the following error while executing a script to create an AD account:

"error '8000401a'
The server process could not be started because the configured identity is incorrect. Check the username and password.
/finder/CreateADUser.asp, line 423 "


This section of the script which displays all the available OU's available in a drop down is exhibiting the error:

 <%
    dim arrReturned
    Set moveuser= CreateObject("prjmoveuser.clsmoveuser")
    arrReturned=moveuser.listOU()

    lastIndex=ubound(arrReturned)-2
    'Response.Write "lastIndex=" & lastIndex
    Set moveuser = nothing
    %>
<SELECT id=selOu name=selOu style="HEIGHT: 22px; WIDTH: 214px;">
<%for iCtr=0 to lastIndex%>
<OPTION <%if trim(Request("selOu"))=split(arrReturned(iCtr),"|" )(0) then %> selected
<% end if %> value="<%=split(arrReturned(iCtr),"|")(0)%>"><%=sp lit(arrReturned(iCtr),"|")(1)%>
          </OPTION>
        <%next%>
    </SELECT>

    </TD>

=========================================

Here the line having "Set moveuser= CreateObject("prjmoveuser.clsmoveuser") " is throwing the error.it is the line 423,

Thanks and Regards,

Praveen.














Similar Threads
Thread Thread Starter Forum Replies Last Post
Add existing AD user to AD group via ADSI? thiazi Classic ASP Basics 0 August 24th, 2007 09:27 PM
Get an error when creating new user...??...Urgent riki_gill ASP.NET 2.0 Professional 2 November 14th, 2006 09:19 AM
get an error when creating a new user...?? riki_gill ASP.NET 1.x and 2.0 Application Design 1 October 29th, 2006 01:27 PM
error when creating a user Shell84 ASP.NET 2.0 Basics 0 February 28th, 2006 10:56 AM
Possible to Create Acc 97 mdb from Acc 2000?? timmaher Access VBA 2 April 21st, 2005 04:05 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.