Windows error 0x800710D8, -2147020584

Detailed Error Information

OBJECT_NOT_FOUND[1]

MessageThe object identifier does not represent a valid object.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code4312 (0x10d8)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x000010d8.

Questions

6votes
2answers

Why am I unable to get Site.State for an FTP site, when using Microsoft.Web.Administration?

Using the following C# code: using System; using Microsoft.Web.Administration; namespace getftpstate { class Program { static void Main(string[] args) { ServerManager manager = new ServerManager(); foreach (Site site in manager.Sites) { Console.WriteLine("name: " + site.Name); Console.WriteLine("state: " + site.State); Console.WriteLine("----"); } } } } I get the following output: C:\projects\testiisftp\getftpstate\getftpstate\bin\Debug>getftpstate.exe [...] read more
c#
iis
5votes
2answers

Programmatically get site status from IIS, gets back COM error

I am trying to programmatically get my site status from IIS to see if it's stopped, but I kept getting the following error, > The object identifier does not represent a valid object. (Exception from > HRESULT: 0x800710D8) The application is using ServerManager Site class to access the site status. [...] read more
c#
iis
iis-7
configuration
servermanager
3votes
1answer

Get remote application pool state using Microsoft.Web.Administration

I'm trying to get the state of an IIS 7.5 application pool using Microsoft.Web.Administration API, but get an exception: System.Runtime.InteropServices.COMException was unhandled ErrorCode=-2147020584 HResult=-2147020584 Message=The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8) Source=Microsoft.Web.Administration I connect to a remote machine in a different domain using the [...] read more
iis
dns
pool
3votes
2answers

How does ServerManager finds the states of an given site

I am trying to read the status of a site using Servermanager. Basically this is what I have, var serverManager = new ServerManager(siteInstance.Server.ConfigPath); var site = serverManager.Sites.FirstOrDefault(x => x.Id == Convert.ToInt64(siteInstance.IisIdentifier)); return site.State.ToString(); I am able to read the config file and site details without any issue. But the status [...] read more
c#
iis
configuration
iis-7.5
servermanager
3votes
1answer

How to create a web site with an application using MSBuild Extension Pack

What is the correct way to create a web site using the MSBuild Extension Pack? I'm trying to use the MSBuild Extension Pack to create a web site using the following target. Unfortunately I don't have the syntax correct. This target will throw an exception saying "InvalidOperationException: The specified path [...] read more
iis-7
msbuild
msbuildcommunitytasks
1vote
0answers

Broken Shared Configuration

Infrastructure We have 4 webservers (WEB1-4). We have Shared Configuration turned on on all those webservers to a shared network path (\\fs100\Config\Web - Config). Problem From time to time, a random webserver stops getting updates from the Shared Configuration. We can solve it by restarting the whole webserver (but we [...] read more
iis-10
1vote
3answers

Changing IIS application pool idenity from built in account to custom account causes 503 error

I have an intranet web application developed using C# and .NET and it is hosted on our own internal webserver running IIS 8.5. I have it set up the application pool to use the built in account ApplicationPoolIdentity and this works fine. However I need the application to be able [...] read more
c#
asp.net
.net
iis
application-pool
1vote
0answers

IIS sites creation failed - The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8)

I have written a PowerShell script block for creating IIS app pool and website on Azure Virtual Machine Scale Set multiple instances, while the script block runs parallel, I get the error The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8), can someone help? Resetting IIS [...] read more
powershell
iis
iis-7
powershell-remoting
powershell-5.0
1vote
2answers

Start FTP Website from powershell 4

Trying to automate ftp site manipulation on IIS7.5, through powershell, but I can't start the ftp site. Everything else, so far, I succeeded. PS IIS:\Sites> Get-ChildItem | Where {$_.Name -eq "FtpData"} Name ID State Physical Path Bindings ---- -- ----- ------------- -------- FtpData 3 Stopped D:\Services\_Empty ftp *:80: PS IIS:\Sites> [...] read more
powershell
iis-7.5
1vote
1answer

Background StreamSocketListener just run one time

I have a StreamSocketListener registered in a background task. When it receives a request the Run method starts. The first time it runs well, the second time I get that error: > O identificador de objeto não representa um objeto válido. (Exception from > HRESULT: 0x800710D8) The complete code is: [...] read more
c#
uwp
1vote
0answers

Can IIS host a site with only a net.tcp binding

I would like to create a web site in IIS that hosts a WCF service using net.tcp binding. Since there is no need for the http binding, I would like to remove this. However, if I remove the http binding (and leave only the net.tcp binding) from the IIS manager, [...] read more
wcf
iis-8
nettcpbinding
0votes
1answer

IIS Web Farm site stuck on starting on other servers - 0x800710D8

We have a win 2012/IIS 8.5 web farm up and running using a shared config. All was working great on the servers and we would create a site on one server and it would go across them all. We run into an issue with the servers and had to change [...] read more
iis
windows-server-2012-r2
web
iis-8.5
web-farm
0votes
1answer

Only let the user run programs with specified certificate (Windows)

I want to allow the user on a Windows 7 PC only to run programs which are certificated by me (I used openSSL to create a self-made pem/cer resp. pfx file) I sign the files with Microsoft SignTool.exe. This works like a charm, all my exe files show that they [...] read more
windows
ssl
certificate
applocker
0votes
1answer

Error while sending fax using ASP.net and FAXCOMEXLib as COMException (0x800710D8): Operation failed

I have asp.net application to send FAX using FAXServer using FAXCOMEXLib.dll I am getting COMException (0x800710D8): Operation failed. I know one workaround to set application pool identity. but which user i have to set as application identity that don't know. For windows application with same code,I am not getting any [...] read more
asp.net
iis
fax
applicationpoolidentity

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0