This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I created a new Blazor (Server-side) application with Windows Authentication and run it using IIS Express. It will display a message of "Hello Domain\User!" from the following razor component (...\BlazorApp1\BlazorApp1\Shared\LoginDisplay.razor) on top right. <AuthorizeView> Hello, @context.User.Identity.Name! </AuthorizeView> If running using Kestrel, the message is not shown. So I tried the [...] read more
I am working with a java application deployed on an HP server via WebLogic 10.3. Version info: WebLogic Version 10.3 OS Version B.11.23 $ java -version java version "1.6.0.03" Java(TM) SE Runtime Environment (build 1.6.0.03-jinteg_05_feb_2009_11_19-b00) Java HotSpot(TM) Server VM (build 11.0-b16-jre1.6.0.03-rc2, mixed mode) I am getting this java.lang.OutOfMemoryError and the [...] read more
I am trying to identify memory leak in a process(C++ Application) I am using Windbg tool to identify the memory leak. 0:000> !heap -stat -h 02e10000 heap @ 02e10000 group-by: TOTSIZE max-display: 20 size #blocks total ( %) (percent of total busy bytes) 40 95857 - 25615c0 (60.70) 953130 1 [...] read more
I'm currently trying to display a webview in a WinRT application (without c#). First, is it possible ? I'm currently trying to do it that way: Windows::UI::Xaml::Controls::WebView^ webView = ref new Windows::UI::Xaml::Controls::WebView(); webView->NavigateToString("http://www.google.com"); But as I want this code to be run in the main thread (I think, to create [...] read more
I've been debugging my iOS app for a day or so already, trying to solve an EXC_BAD_ACCESS (SIGSEGV) crash. Here's the interesting part of the crash log: Exception Type: EXC_BAD_ACCESS (SIGSEGV) Exception Subtype: KERN_INVALID_ADDRESS at 0x00000051 Triggered by Thread: 0 Thread 0 Crashed: 0 libsystem_kernel.dylib 0x38bfc6e4 __kill + 8 1 [...] read more
Found out that while I was away my PC had crashed ("Your PC ran into a problem...") and got the helpful tip to look for REGISTRY_ERROR. Given that I have an SSD drive, I thought of running the optimize drive program that comes with Windows 10, but alas, got the [...] read more
I'm trying to remote connect to my Sql server 2016 instance on my home server running on a workgroup. I need to set an SPN to do this. All the guides out there seem to be related to setting the SPN for domain situations, not workgroups. Here is the SPN [...] read more
I am currently trying to communicate with a device using CAN. To do so I am using PCAN Basic using C++. Unfortunately, I know nothing about accessing a function inside a dll file (which is what is provided). I found this link: Calling a dll function from C++ and am [...] read more