Windows error 0x800C0006, -2146697210

Detailed Error Information

INET_E_OBJECT_NOT_FOUND[1]

MessageThe system cannot locate the object specified.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode12 (0x00c)
NameFACILITY_INTERNET[2][1]
DescriptionThe source of the error code is Wininet related.[2][1]
Error Code6 (0x0006)

Questions

3votes
1answer

Redirecting Standard Output from a Process (msxsl.exe) to a string in VB.NET

I am writing a command line application in VB.NET. This application is calling another one, msxsl.exe, to run an XSL transform. I am using the Process class to do this: Dim process = New Process() process.StartInfo.FileName = "msxsl.exe" process.StartInfo.Arguments = "base.xml test.xsl -o styled.xml" process.StartInfo.UseShellExecute = False process.StartInfo.CreateNoWindow = True [...] read more
vb.net
process
redirectstandardoutput
1vote
0answers

How to copy an external XML inside another using XSLT processor?

I have this first xml file1.xml : <?xml version="1.0" encoding="utf-8"?> <node1> <node2> </node2> </node1> And this second xml file2.xml : <?xml version="1.0" encoding="utf-8"?> <node2> <node3> </node3> </node2> I want to have this after XSLT processing : <node1> <node2> <node3> </node3> </node2> </node1> For this I use this XSLT script (which [...] read more
xml
xslt
xml-parsing
1vote
0answers

dtsx package runs by command prompt but not by .bat file

running a dtsx package by .bat file. receiving the following error. Could not load package "C:......dtsx" because of error 0xC0011002. Failed to open package file "C:......dtsx" due to error 0x800C0006. the system cannot locate the object specified. this occurs when loading a package and the file cannot be opened or [...] read more
batch-file
ssis
1vote
1answer

flash cant shown in webBrowser

I add MIME filter to my WebBrowser Control by IInternetSession.RegisterMimeFilter。 The MIME type is "text/html"。 The filter have a bug that the flash cant shown in some site such as "http://cn.yahoo.com/". I tryed add "" before the tag,noneffective。 I return data directly but falsh still invisible。 I set the IE [...] read more
winforms
internet-explorer-8
c#-2.0
0votes
2answers

Get all latest action - gives warning `Cannot locate file`

After get all latest action in Enterpreise architect i get`warning saying: > Cannot locate file 0x800c0006 After pressing ok the process continues. How can i make that warning will not pop out? read more
enterprise-architect
0votes
1answer

Unable to execute DTS in sql server 2008 from dtexec

I'm trying to execute a DTS from sqlserver 2008 R2 (Windows Server 2008 Standard) from stored procedure xp_cmdshell. But getting below error: > Microsoft (R) SQL Server Execute Package Utility Version 10.50.4000.0 for > 64-bit Copyright (C) Microsoft Corporation 2010. All rights reserved. > > NULL Started: 2:22:13 PM Error: [...] read more
sql-server
sql-server-2008
ssis
dts
0votes
1answer

When running mstest under OpenCover, I get an error regarding the .vsmdi.trx file

I am having a problem when trying to run a VS10 test suite through OpenCover, using mstest as my target application. Running the tests directly with MsTest works with this command: "C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\MSTest.exe" /resultsfile:"<application_root_path>\UnitTestResults\MyProject.vsmdi.trx" /testmetadata:"MyProject.vsmdi" /testlist:"ServiceTests" /testlist:"DatabaseTests" However, when trying to run the same command under OpenCover, [...] read more
visual-studio-2010
mstest
opencover

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