Windows error 0x800C0005, -2146697211

Detailed Error Information

INET_E_RESOURCE_NOT_FOUND[1]

MessageThe system cannot locate the resource 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 Code5 (0x0005)

Questions

5votes
1answer

How to install Windows Web Services API (WWSAPI) in a Server w/o Internet Access

I'm trying to use Visual Studio 2012 Remote Debugger in a Server with Windows Server 2008 R2 SP1 x64 located in a DMZ, in a Development Environment. This server doesn't access to the Internet directly but through a Firewall. So, I downloaded the Remote Tools for Visual Studio 2012 from [...] read more
debugging
visual-studio-2012
remote-debugging
dmz
wwsapi
4votes
2answers

Is there a .NET 4.0 offline install?

I'm trying to install .NET 4.0 on some VMs using dotNetFx40_Full_setup.exe and am getting error 0x800C0005. The issue likely involves the firewall/proxy/security configuration. Rather than dealing with that, does Microsoft have an offline install available yet? I've searched but not found one. read more
installation
.net
.net-4.0
3votes
0answers

IWebBrowser2.Navigate2 fails to INET_E_RESOURCE_NOT_FOUND (0x800C0005) during a new session

In my ATL project I have the window which is a host for html browser. I have a need to create/destroy this window during runtime. When IWebBrowser2.Navigate2 is called third time it triggers DISPID_NAVIGATEERROR with the status INET_E_RESOURCE_NOT_FOUND (0x800C0005). MSDN describes it as the server or proxy was not found [...] read more
windows
atl
ole
iwebbrowser2
2votes
2answers

Exception handling, WinRT C++ concurrency async tasks

I have to implement an async HTTP GET in C++ and we have to be able to submit the app to the Windows 8 Store. My problem is the following: I've found a suitable Sample code which implements an HttpRequest class http://code.msdn.microsoft.com/windowsapps/HttpClient-sample-55700664 This example works if the URI is correct [...] read more
c++
asynchronous
lambda
windows-runtime
concurrency-runtime
2votes
2answers

authentication_ui_failed: The browser based authentication dialog failed to complete

Using below method query a token result in universal app: AcquireTokenAsync(string resource, string clientId, Uri redirectUri, PromptBehavior promptBehavior); No problem in F5 debug mode, but hit error when installed the app manually by a published store app package. the error message: authentication_ui_failed: The browser based authentication dialog failed to complete. [...] read more
win-universal-app
1vote
3answers

jQuery/Ajax IE7 - Long requests fail

I have a problem with IE7 regarding an ajax call that is made by jQuery.load function. Basically the request works in cases where the URL string is not too long, but as soon as the URL gets very large it fails. Doing some debugging on the Ajax call I found [...] read more
javascript
jquery
ajax
1vote
1answer

How To Catch an Exception [C++/CX]

I am working on a Windows 8 app (C++). I have used the httpclient class from the Windows 8 samples collection. inline void CheckHResult(HRESULT hResult) { if (hResult == E_ABORT) { concurrency::cancel_current_task(); } else if (FAILED(hResult)) { throw Platform::Exception::CreateException(hResult); } } This function throws an exception when the app is [...] read more
windows-8
exception-handling
windows-store-apps
c++-cx
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
0answers

OidcClient : UWP WapBrowser.InvokeAsyncCore (BrowserOptions options, Boolean silentMode)

I try to use the Xamarin Forms to connect to identityserver using oidc client. I already configure the Xamarin Core and Xamarin Android works fine. The issue there is with UWP and the WapBrowser configuration to open the view and allows me to make authentication. I did not change anything [...] read more
uwp
identityserver4
openid-connect
0votes
1answer

UWP built with cordova and Ionic don't take hosts file into account

I am building an application with cordova and Ionic for Windows UWP. When I run this code this.http.post('htpp://myDomain.com/path/', data).toPromise().then(() => { ... }); It enters in the catch clause returning a response with 0 status. I get this warning too, I don't know if it's related : CONSOLE21301: serviceWorker.getRegistrations is [...] read more
cordova
ionic-framework
uwp
hosts
0votes
1answer

How to call .net core web api using Sql server?

How to call .net core Web API in sql server? I tried below then i getting "0x800C0005", "The system cannot locate the resource specified." DECLARE @Object AS INT ; DECLARE @hResult INT DECLARE @Url AS VARCHAR(1000) ; declare @statusText varchar(1000), @status varchar(1000), @ResponseText AS VARCHAR(8000) ; SET @Url = 'https://myhost.com/path/to/whatever/' [...] read more
sql
sql-server
asp.net-core-webapi
0votes
1answer

Getting 0x800C0005 System error in SQL Server

The following code is used to call a web service from SQL Server: Declare @Object as Int; Declare @ResponseText as VARCHAR(MAX); Exec sp_OACreate 'MSXML2.XMLHTTP', @Object OUT; Exec sp_OAMethod @Object, 'open', NULL, 'GET','http://localhost/Service1.asmx/HelloWorld?name=xyz', false; Exec sp_OAMethod @Object, 'send'; EXEC sp_OAGetErrorInfo @Object Create table #tmp(dt varchar(max)) insert into #tmp exec sp_OAGetProperty @Object, [...] read more
sql
sql-server
web-services
0votes
1answer

AcquireTokenAsync fails in a UWP app

I'm using ADAL in my Win10 UWP app. Here is a snippet of code: // WinRT, UWP app. Doesn't work TokenCache TC = new TokenCache(); authContext = new AuthenticationContext(authority, true, TC); var authresult = await authContext.AcquireTokenAsync(resourceUri, clientID, new Uri(redirectUri)); token = authresult.AccessToken; Sometimes it fails with the following error, without [...] read more
azure-active-directory
adal
-1votes
1answer

TPM worked on windows iot-core buld 10.0.16299 RPi-3 but not on build 10.0.17763

Our RPi TPM Module LetsTrust TPM V2 chip SLB 9670 TPM 2.0 FW7.40 worked fine as "Discrete SPI TIS Class TPM on SPI0CS1" on iot-core 10.0.16299 RPi3. Upgrade to newest preview iot-core 10.0.17763 (to support IoT-Edge) now produces following error when TPM-Configuration is activated in the iot-core Device Portal on [...] read more
windows-10-iot-core
azure-iot-edge

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