Windows error 0x800C000D, -2146697203

Detailed Error Information

INET_E_UNKNOWN_PROTOCOL[1]

MessageThe specified protocol is unknown.
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 Code13 (0x000d)

Questions

5votes
0answers

universal winphone authentication_ui_failed with ADAL

So this entire adal thing is a massive pain to get to work properly... Whenever I attempt to do a login using one of the identity providers (installed and provided by the azure AD backend through ADAL) windows phone throws a "authentication_ui_failed" exception. I have been looking around and googling [...] read more
azure
win-universal-app
adal
4votes
2answers

Exception thrown when WebAuthenticationBroker receives an OAuth2 callback

The WebAuthenticationBroker doesn't seem to be able to handle navigation to my ms-app://. Just throws this ugly error as you will see below. STEPS 1. Call AuthenticateAsync(), including callback uri obtained at runtime: WebAuthenticationBroker.GetCurrentApplicationCallbackUri() 2. Go through authorize process, hit Allow. 3. Instead of returning, the broker shows the page [...] read more
windows-8
windows-runtime
oauth-2.0
imgur
1vote
0answers

Active Directory: MSAL (UWP) PublicClientApplication.AcquireTokenAsync(...) returns exception

I am trying to implement a sign in / login function using Active Directory. I am basing myself in on this b2c-xamarin sample. Below is the relevant code that I am having issues with. I have made modifications here to simplify readability. I have inserted comments for anything noteworty, particularly [...] read more
c#
azure-active-directory
msal
xamarin.uwp
1vote
1answer

Issues using MobileServiceClient and SingleSignOn authentication

So I was just messing around with Azure and decided to look at doing some authentication in a simple Windows 8.1 Xaml based application. I was following the steps outlined in this document. I Currently setup MobileServices, added an application to the Microsoft Store portal, and also configured the Live [...] read more
c#
azure
single-sign-on
windows-8.1
azure-mobile-services
1vote
1answer

0x800C000D error when using AddSourceFilter in the directshow SDK

I'm attempting to build a graph using the directshow SDK. When I call GraphBuilder.AddSourceFilter, I get the error 0x800C000D private IGraphBuilder graphBuilder = null; private IBaseFilter sourceFilter = null; int hr = 0; graphBuilder = (IGraphBuilder)new FilterGraph(); hr = graphBuilder.AddSourceFilter(filename, @"Source1", out sourceFilter); After which hr returns the error code [...] read more
c#
directshow
directshow.net
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

Web authentication broker does not return with more than one scope

I'm building a UWP application and using web authentication broker for sign in. I'm using Azure B2C with another AD as an identity provider. When requesting an authorization code, it will always return a code when the scope parameter is: scope=openid If I change this to be: scope=openid offline_access, it [...] read more
authentication
uwp
azure-ad-b2c
msal
0votes
1answer

Instagram Access Token Windows Store App C#

I want to get access token from instagram api in windows store app Here's my code: string endURL = "ms-app://.."; string clientID = ".."; Uri endUri = new Uri(endURL); string startURL = "https://api.instagram.com/oauth/authorize/?" + "client_id=" + clientID + "&redirect_uri=" + endURL + "&response_type=code"; try { WebAuthenticationResult result = await WebAuthenticationBroker.AuthenticateAsync [...] read more
c#
windows-store-apps
windows-store
instagram-api
-1votes
1answer

Using and installing libVlc or GStreamer for QT in Visual Studio 2017

I would like to play an RSTP stream in Windows 10 using the QT Libraries in Visual Studio 2017. Using DirectShowPlayer in QT Ctrator I have this error: DirectShowPlayerService::doSetUrlSource: Unresolved error code 0x800c000d I found some code examples that use libVlc or QT-Gstreamer. Unfortunately, I'm new to the world of [...] read more
qt
visual-studio-2017
gstreamer
libvlc
qtgstreamer

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