|
 |
aspdotnet_website_programming thread: "Server Application Unavailable", error 80070545
Message #1 by "Paul Wolborsky" <paulw@p...> on Tue, 4 Jun 2002 03:34:59
|
|
In response to my "Service not available" error message, I went ahead and
manually assigned rights to the ASPNET account, following the (Q317012)
Info:Process and Request Identity in ASP.Net document.
I also made changes to machine.config, using aspnet as the account, with
the password I assigned it.
After I followed them, I attempted to run a simple datagrid .aspx, and I
still got the "Server Application Unavailable" error.
Subsequent examination of the Event log though, showed that where I was
getting 3 errors before, I only have one, an HRESULT 80070545 error. I
tried to find out what the error meant, but I have yet to succeed in
finding an HRESULT table that would give a further explanation, and I
found a few others who posted the same problem on the web, but no
replies.
Does anybody know what the HResult 80070545 error is? Or where a listing
of the codes can be found? I have one hunch. I'm trying to access the MS
SQL 2000 pubs catalog using ADO, SQL Server starting in System account,
and ASPNET given logon rights. I think the problem may still be trying to
get ASPNET to access SQL (pun intended). ;>
Much thanks.
Paul Wolborsky
IT Administrator
Project HIRED
Santa Clara, CA, US
www.projecthired.org
paulw@p...
"Assisting people with disabilities in gaining competitive employment"
Message #2 by Feduke Cntr Charles R <FedukeCR@m...> on Tue, 4 Jun 2002 08:46:49 -0400
|
|
Paul,
If you're dying to see if your ASP.NET application will work and not
concerned about aspnet_wp.exe security at the moment (proof that it works),
then try the following:
Edit the <processModel ... > section in machine.config. Change the
userName="whateverItIsNow" to userName="SYSTEM". Do not specify a password.
You may need to reboot the server.
The security thing generally tends to be a problem.
I was also getting some HRESULTs in my event log when aspnet_wp.exe
terminated unexectedly. I found out this was because I declared an "event"
as just the type of event; i.e I had:
public ImageClickEventHandler Delete;
but I needed:
public event ImageClickEventHandler Delete;
Good luck!
- Chuck
-----Original Message-----
From: Paul Wolborsky [mailto:paulw@p...]
Sent: Monday, June 03, 2002 11:35 PM
To: Website Programming with ASP.NET
Subject: [aspdotnet_website_programming] "Server Application
Unavailable", error 80070545
In response to my "Service not available" error message, I went ahead and
manually assigned rights to the ASPNET account, following the (Q317012)
Info:Process and Request Identity in ASP.Net document.
I also made changes to machine.config, using aspnet as the account, with
the password I assigned it.
After I followed them, I attempted to run a simple datagrid .aspx, and I
still got the "Server Application Unavailable" error.
Subsequent examination of the Event log though, showed that where I was
getting 3 errors before, I only have one, an HRESULT 80070545 error. I
tried to find out what the error meant, but I have yet to succeed in
finding an HRESULT table that would give a further explanation, and I
found a few others who posted the same problem on the web, but no
replies.
Does anybody know what the HResult 80070545 error is? Or where a listing
of the codes can be found? I have one hunch. I'm trying to access the MS
SQL 2000 pubs catalog using ADO, SQL Server starting in System account,
and ASPNET given logon rights. I think the problem may still be trying to
get ASPNET to access SQL (pun intended). ;>
Much thanks.
Paul Wolborsky
IT Administrator
Project HIRED
Santa Clara, CA, US
www.projecthired.org
paulw@p...
"Assisting people with disabilities in gaining competitive employment"
|
|
 |