Windows error 0x8007109A, -2147020646

Detailed Error Information

NOT_APPCONTAINER[1]

MessageThis operation is only valid in the context of an app container.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code4250 (0x109a)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x0000109a.

Questions

9votes
2answers

What are .ni.dll and .ni.exe files in a minidump?

I got a minidump from the Windows Store Apps submission process (sent by a reviewer) because of a crash in my app. I am having problems loading the symbols for my app, because the error occurs inside App.ni.exe, a file which I don't know where comes from. My app only [...] read more
c#
windows-store-apps
windbg
windows-store
2votes
0answers

Unable to load DLL 'Dll1.dll': This operation is only valid in the context of an app container. (Exception from HRESULT: 0x8007109A)

I have an ASP.net application that is trying to invoke methods from a c++ dll (called Dll1.dll) using pInvoke. This is the Dll1.cpp: Tester::Tester() { } void Tester::hello() { int i = 0; } DLL_API void Tester_hello(Tester* pObj) { pObj->hello(); } DLL_API Tester* Tester_Create() { return new Tester(); } DLL_API [...] read more
c#
c++
asp.net
.net
dll
2votes
1answer

Using UWP Geolocation-API with Win32-Application on Windows 10

We're building a multi-platform (desktop- and tablet-computers) application targeting Windows 8.1 as well as 10. As we process spatial data, we offer the user the possibility to use his current location using the device's gps receiver. To allow easy adaption to the (hardware) environment, we placed the gps-logic (including the [...] read more
c#
.net
winapi
windows-10
uwp
1vote
1answer

When using Scaffold-DbContext for UWP I get 'Unable to load DLL 'sqlite3''

I am trying to scaffolf an Entityframeworkcore DbContext for a UWP app from a Sqlite databse. I do: Scaffold-DbContext "data source=C:\SqliteDbFiles\Sqlite.db" Microsoft.EntityFrameworkCore.Sqlite No matter what I try though I keep getting this error: System.DllNotFoundException: Unable to load DLL 'sqlite3': This operation is only valid in the context of an app [...] read more
sqlite
uwp
entity-framework-core
1vote
0answers

Javascript Runtime Error in VS2012

I face a problem to compile windows 8 application which is create using visual studio 2012 windows runtime component project. I'm using html 5 , javascript and c++ to develop this application. But when I compile the project I'm getting error which is JavaScript runtime error: Error in the DLL. [...] read more
javascript
visual-c++
visual-studio-2012
windows-8
windows-runtime
0votes
1answer

MoqRT Error - Unhandled Exception while Creating MoqRT.Baked.dll

I am using VS2013 community edition, SQLite and created Test project using MSTestFramework where I am referring MoqRT framework for creating mock objects. But while creating mock objects I am getting an Error as follows, Unhandled baking exception: --> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. [...] read more
sqlite
testing
frameworks
windows-runtime
mocking

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