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
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
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
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
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
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
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
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
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
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
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
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
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
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