The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8)

by Vivek 1/12/2010 12:56:00 AM

Today I came across an issue where the customer is getting “The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8)” when you try to start the Web site.

image11

Looking at the IIS Manager, the Web site status shows:

image10

Looking closer, found the Web site identifier is set to 0.

image12

This is not a valid identifier. Tried “net start WAS” this stopped W3SVC as well. Now, ran the command “net start W3SVC”. Checked the System Event log and we see:

image13

Checked ApplicationPool in IIS Manager, and we don't see DefaultAppPool.

Looking at the applicationHost.config:

<applicationPools>
<
add name="Classic .NET AppPool" managedPipelineMode="Classic" />
<
applicationPoolDefaults>
<
processModel identityType="ApplicationPoolIdentity" />
</
applicationPoolDefaults>
</
applicationPools>

Created the DefaultAppPool and now the applicationHost.config looks good:

<applicationPools>
<add name="DefaultAppPool" />
<add name="Classic .NET AppPool" managedPipelineMode="Classic" />
<
applicationPoolDefaults>
<
processModel identityType="ApplicationPoolIdentity" />
</
applicationPoolDefaults>
</
applicationPools>

Hit Refresh (F5) in the IIS Manager. The Default Web Site is now started. Remember to change the Default Web Site ID from 0 to 1, as that will give you some "Server Application Unavailable" error as well.

Happy troubleshooting,
Vivek Kumbhar


Quote of the day:
If you are not criticized, you may not be doing much. - Donald H. Rumsfeld



blog comments powered by Disqus

Rahul Soni

Rahul Soni  Twitter

 LinkedIn

 Facebook

 Email me



Vivek Kumbhar

Vivek Kumbhar  Twitter

 LinkedIn

 Facebook

 Email me


Stack Exchange

profile for Vivek at Server Fault, Q&A for system administrators and IT professionals

profile for Rahul Soni at Stack Overflow, Q&A for professional and enthusiast programmers

Calendar

<<  February 2012  >>
MoTuWeThFrSaSu
303112345
6789101112
13141516171819
20212223242526
2728291234
567891011

View posts in large calendar

All Items
Sign in

Disclaimer

The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.
© Copyright 2012, Rahul Soni

Powered by BlogEngine.NET 1.4.5.0