ASP.NET, ADODB and "Access Denied"

From: ASP.Confused (anonymous_at_)
Date: 06/03/04


Date: Thu, 3 Jun 2004 12:42:28 -0400

The old message looked a little stale, so I am re-posting it here. Anybody
have any ideas of what I could do?!? The previous responses to this
question are below. If you want to look at the original question, the
subject line is:

ADODB.NET and "Access Denied"

I have an ASP.NET page writtein in VB that uses ADODB. I just had to
force-install MDAC 2.8 after I tried to rollback to 2.6 (my web host uses
this, and I wanted to be compatible with them.) I had to manually install
all of the ODBC drivers and the rest of the DLL's, and now I am getting
"Access is Denied" errors on any page that uses ADODB.

How do I fix it? I already gave the ODBC drivers in the folders in
"c:\program files\common files\system\" full access rights for both IUSR
accounts and the ASPNET account.

Here is the output of the error:

Access is denied.
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information
about the error and where it originated in the code.

Exception Details: System.UnauthorizedAccessException: Access is denied.

ASP.NET is not authorized to access the requested resource. Consider
granting access rights to the resource to the ASP.NET request identity.
ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or
Network Service on IIS 6) that is used if the application is not
impersonating. If the application is impersonating via <identity
impersonate="true"/>, the identity will be the anonymous user (typically
IUSR_MACHINENAME) or the authenticated request user.

To grant ASP.NET write access to a file, right-click the file in Explorer,
choose "Properties" and select the Security tab. Click "Add" to add the
appropriate user or group. Highlight the ASP.NET account, and check the
boxes for the desired access.

Source Error:

Line 1: <script language="VB" runat="server">
*** Line 2: dim oConn as ADODB.Connection = new ADODB.Connection()
Line 3: </script>
Line 4: <%

"ASP.Confused" <anonymous@> wrote in message
news:%23WR%232SOSEHA.1348@TK2MSFTNGP12.phx.gbl...
> Well, I have the exact same script running on 3 other servers, so I know
the
> script is working. I meant that I didn't want to take the time to create
a
> dataset within Visual Studio.NET's interface (since my SQL tables are not
> owned by "dbo", and it's a pain to create them if the table is not owned
by
> "dbo".)
>
> I'm thinking that when I had to force install MDAC 2.8, it did not set
file
> permissions properly. I went in to set all of the ODBC drivers to have
full
> access by ASPNET, IUSR and IWAM accounts, but that did not fix it yet.
>
> Do you know what might need to be set to get this to work, or do you know
> how I could force install MDAC through the setup program (I originally had
> to do it file by file.)
>
>
>
>
> "Raterus" <raterus@spam.org> wrote in message
> news:O4L0RNOSEHA.3840@TK2MSFTNGP09.phx.gbl...
> I apologize too, I know I'm not answering your original question, I just
> think your access problems will go away if you use ADO.NET :-)
>
> "ASP.Confused" <anonymous@> wrote in message
> news:uP%23kjBOSEHA.1764@TK2MSFTNGP10.phx.gbl...
> > I'm using ADO because I just need to do a simple login script, and
taking
> > time to set up a dataset to do such a trivial task would be pointless.
> > Plus, we are in the process of migrating our ASP 3.0 web pages over to
> > ASP.NET, and this eases the transition.
> >
> > I just noticed something about 5 minutes ago. If I go to an ASP page on
> my
> > development computer (the one that is having all the issues with "Access
> > Denied", it works. But if I use an ASP.NET page using ADO, it gives me
> the
> > error.
> >
> > "Raterus" <raterus@spam.org> wrote in message
> > news:uCiR04NSEHA.3944@TK2MSFTNGP11.phx.gbl...
> > Any reason you using ADO and not ADO.NET?
> >
> > "ASP.Confused" <anonymous@> wrote in message
> > news:uxeCSzNSEHA.1312@TK2MSFTNGP12.phx.gbl...
> > > I have an ASP.NET page writtein in VB that uses ADODB. I just had to
> > > force-install MDAC 2.8 after I tried to rollback to 2.6 (my web host
> uses
> > > this, and I wanted to be compatible with them.) I had to manually
> install
> > > all of the ODBC drivers and the rest of the DLL's, and now I am
getting
> > > "Access is Denied" errors on any page that uses ADODB.
> > >
> > > How do I fix it? I already gave the ODBC drivers in the folders in
> > > "c:\program files\common files\system\" full access rights for both
IUSR
> > > accounts and the ASPNET account.
> > >
> > >
> > > Here is the output of the error:
> > >
> > > Access is denied.
> > > Description: An unhandled exception occurred during the execution of
the
> > > current web request. Please review the stack trace for more
information
> > > about the error and where it originated in the code.
> > >
> > > Exception Details: System.UnauthorizedAccessException: Access is
denied.
> > >
> > > ASP.NET is not authorized to access the requested resource. Consider
> > > granting access rights to the resource to the ASP.NET request
identity.
> > > ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS
5
> > or
> > > Network Service on IIS 6) that is used if the application is not
> > > impersonating. If the application is impersonating via <identity
> > > impersonate="true"/>, the identity will be the anonymous user
(typically
> > > IUSR_MACHINENAME) or the authenticated request user.
> > >
> > > To grant ASP.NET write access to a file, right-click the file in
> Explorer,
> > > choose "Properties" and select the Security tab. Click "Add" to add
the
> > > appropriate user or group. Highlight the ASP.NET account, and check
the
> > > boxes for the desired access.
> > >
> > > Source Error:
> > >
> > > Line 1: <script language="VB" runat="server">
> > > *** Line 2: dim oConn as ADODB.Connection = new ADODB.Connection()
> > > Line 3: </script>
> > > Line 4: <%
> > >
> > >
> >
> >
>
>



Relevant Pages

  • Re: ADODB.NET and "Access Denied"
    ... Well, I have the exact same script running on 3 other servers, so I know the ... access by ASPNET, IUSR and IWAM accounts, but that did not fix it yet. ... But if I use an ASP.NET page using ADO, ... >> granting access rights to the resource to the ASP.NET request identity. ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Not receiving Calendar requests in Entourage
    ... purpose is for people to request a reservation to use a meeting room. ... I then approve the request and the event then shows up on the ... I need to find a way to get the emails that the exchange server generates to ... then be presented with a clean (no accounts) setup. ...
    (microsoft.public.mac.office.entourage)
  • Submitting change requests through correct channels (was: Why not just show the out-of-range
    ... many accounts and passwords already. ... If the implication here (that submitting a change request requires an ... account on the server) is true, then I must concur with Russ that it's ... submitting the request are a low enough burden that it's reasonable to ...
    (comp.lang.python)
  • Re: open source user audit software ??
    ... to create accounts in Active Directory as well as on Linux machines? ... The request goes to IT ... If you are looking to implement Open Source Web SSO, ...
    (Security-Basics)
  • Re: Auto-Accept Agent event sink for Exchange Server 2003 help!
    ... resource accounts and all worked as advertised! ... time on these accounts (time I considered wasted as the clean up was ... If it accepts or declines the request as you would ... >with the tracing capability of the agent. ...
    (microsoft.public.exchange.admin)