Trying to publish my UWP app. I'm able to build Release versions fine (I was actually able to push to the Store), but my app crashes as soon as it's launched. But the debug works fine?
I'm getting this error when debugging a Release build:
Unhandled exception at 0x55BA32F9 (Windows.UI.Xaml.dll) in AppName.exe: 0xC000027B: An application-internal exception has occurred (parameters: 0x00A12450, 0x00000002).
And these errors in Event Viewer if I launch it outside of VS:
1st:
Activation of app AppName failed with error: The remote procedure call failed. See the Microsoft-Windows-TWinUI/Operational log for additional information.
2nd:
Faulting application name: AppName.exe, version: 1.0.0.0, time stamp: 0x560c53bd
Faulting module name: Windows.UI.Xaml.dll, version: 10.0.10240.16431, time stamp: 0x55c9b90a
Exception code: 0xc000027b
Fault offset: 0x007132f9
Faulting process id: 0x1e38
Faulting application start time: 0x01d0fbcba39fec70
Faulting application path: C:\Development\AppName\AppName\bin\x86\Release\AppX\AppName.exe
Faulting module path: C:\Windows\System32\Windows.UI.Xaml.dll
Report Id: 5c74b39d-98e4-4e89-b2ec-c81cbd5383d1
Faulting package full name: AppName
Faulting package-relative application ID: App
Is there something I'm doing wrong? I don't get any errors or warnings on Debug.
Add some code to the app.xaml.cs files unhandled exception event to send the error text to a web service or something like google analytics so you can see what is happening
Ended up being an issue with Entity Framework when it is compiled in .NET Native. I had to switch to SQLite for what I was using it for. Seems to work fine now.
https://github.com/aspnet/EntityFramework/issues/3293
Related
There is problem with hosting application on IIS by VS2017 (15.9.3). I have MVC app write in .NET Core 2.0 with enabled logging on web.config
stdoutLogEnabled="true" stdoutLogFile="c:\Logs\log.txt"
After any request is made I get 502.3 error.
HTTP Error 502.3 - Bad Gateway The specified CGI application
encountered an error and the server terminated the process.
On my log file there is short info:
Process is terminating due to StackOverflowException.
On EventViewer I get more descriptive error:
Faulting application name: w3wp.exe, version: 7.5.7601.17514, time
stamp: 0x4ce7afa2
Faulting module name: ntdll.dll, version: 6.1.7601.24260, time stamp:
0x5b9470be
Exception code: 0xc000070a
Fault offset: 0x00000000000139d7
Faulting process id: 0x2304
Faulting application start time: 0x01d48723e2a88740
Faulting application path: c:\windows\system32\inetsrv\w3wp.exe
Faulting module path: C:\WINDOWS\SYSTEM32\ntdll.dll
Report Id: f7ca32d0-f31c-11e8-83db-1c4d70da3d0a
Exception is probably generated by something in my code, maybe configuration of sth is wrong, but how can I find reason of it?
What could be the best strategy to find solution?
I run my program in visual studio and it works great, but when i publish it and installed it dont start. I checked the problem on the event viewer and it's the information that comes with the error:
Faulting application name: Screen recorder.exe, version: 1.0.0.0, time
stamp: 0x59f8f3ad
Faulting module name: KERNELBASE.dll, version: 6.1.7601.23915, time stamp:
0x59b94abb
Exception code: 0xe0434352
Fault offset: 0x0000c54f
Faulting process id: 0x22f8
Faulting application start time: 0x01d35294634fde75
Faulting application path: C:\Users\jmarin\AppData\Local\Apps\2.0\LAHCHL75.EB9\PJ1V31LT.BZW\scre..tion_b46dd58387405837_0001.0000_c9a5ed0df210aa7f\Screen recorder.exe
Faulting module path: C:\Windows\syswow64\KERNELBASE.dll
Report Id: a1aed905-be87-11e7-849a-989096bc2875
Application: Screen recorder.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.IO.FileNotFoundException
at ScreenRecord.Form1..ctor()
at Screen_recorder.Program.Main()
Exception Info: System.IO.FileNotFoundException
Please look into your code, you are using file which is not available while publishing. you can copy the file into the root directory and try it again
I am working on a VS 2015 MVC C# web application for a client. The application has been stable for a couple of years, but the client has asked me to integrate some C++ DLLs that perform engineering calculations relevant to our web application.
Unfortunately there is no source code and documentation does not exist (don't ask me why...). So I am somewhat blind to how to use these DLLs.
When I load the main DLL and attempt to use it I get the following error:
Failed to load library SQLite3Ex.dll
Event viewer contains this entry:
Faulting application name: iisexpress.exe, version: 10.0.10557.1000, time stamp: 0x560abee8
Faulting module name: MSVCR120.dll, version: 12.0.21005.1, time stamp: 0x524f7ce6
Exception code: 0xc0000005
Fault offset: 0x0000f20c
Faulting process id: 0x1450
Faulting application start time: 0x01d1c6773bd1167d
Faulting application path: C:\Program Files (x86)\IIS Express\iisexpress.exe
Faulting module path: C:\WINDOWS\SYSTEM32\MSVCR120.dll
Report Id: 5d46a86a-2202-4d6e-af41-8426c16966e9
Faulting package full name:
Faulting package-relative application ID:
I'm not sure how to troubleshoot this problem and was hoping someone could point me in the right direction. I think this is a general error - could be a missing .cfg file or even a missing DLL? But I'm not sure how to determine the problem.
I am having the following problem.
Data:
I have a TFS Build Controller+Agent machine. I have there VS2013 Update 5 Installed.
I am running a build step which executes the following code:
using (var coverageInfo = CoverageInfo.CreateFromFile(Path.GetFullPath(cmdArgs.CoverageFile), executableDirectories, executableDirectories))
{
using (var coverageDs = coverageInfo.BuildDataSet())
{
coverageDs.WriteXml(cmdArgs.OutputFile);
}
}
When that steps is executed in the Build Server there is an exception:
Unhandled Exception: Microsoft.VisualStudio.Coverage.Analysis.SymbolsNotFoundException: Symbols for image file "Entities.dll" could not be found.
The thing is that, when I run that same code from my local machine, pointing to the same folders as the build machine, everything runs fine.
Any idea of what I can check?
Regards!
I was able to fix the issue by installing VS 2012. Let me explain. The image below shows the project that was giving problems. As you can see, there are two references to *.Analysis and *.Symbols. These two dlls are referenced by PATH:
C:\Projects\Build\Dev\ActivityPack\References\Microsoft.VisualStudio.Coverage.Analysis.dll
C:\Projects\Build\Dev\ActivityPack\References\Microsoft.VisualStudio.Coverage.Symbols.dll
The thing is that it looks like those DLLs need additional components installed by VS 2010.
I was getting this error:
Faulting application name: secondaryinstaller.exe, version: 14.0.23107.0, time stamp: 0x559b70e4
Faulting module name: KERNELBASE.dll, version: 6.2.9200.17366, time stamp: 0x554d16f6
Exception code: 0xe0434352
Fault offset: 0x00010192
Faulting process id: 0xac0
Faulting application start time: 0x01d12714fefee4bd
Faulting application path: D:\d6da799e8cfbca473168b6f82eb35b\secondaryinstaller.exe
Faulting module path: C:\Windows\SYSTEM32\KERNELBASE.dll
Report Id: dd1fc757-9308-11e5-9431-005056b4190f
Faulting package full name:
Faulting package-relative application ID:
As you can see, the error is thrown by the Kernel, which makes me thing, in my ignorance, that there got to be a COM somewhere that is being referenced.
Thank you #cece for caring!
I have an MVC 5 build that is building and running locally without any problems whatsoever. I cannot however publish to Azure. I'm publishing with Intellitrace enabled and I'm seeing that an exception is being thrown attempting to activate the role.
Exception Thrown: "Requested registry access is not allowed." (System.Security.SecurityException)
I have made sure of the following:
I have the latest edition of the Microsoft Azure SDK
All the relevant project references for all of my project references are set to Copy Local: True
All the relevant libraries have the correct binding redirects in their respective app.config/web.config files
All the Azure references in my project are to the correct versions of the assemblies
The event log shows the following exceptions in chronological order:
Error 4/11/2014 3:23:57 AM SRMSVC 8228 None
File Server Resource: Manager was unable to access the following
file or volume: 'E:'. This file or volume might be locked by
another application right now, or you might need to give Local
System access to it.
Error 4/11/2014 3:31:44 AM .NET Runtime 1026 None
Application:
DiagnosticsAgent.exe Framework Version: v4.0.30319 Description: The
process was terminated due to an unhandled exception. Exception Info:
System.IO.FileNotFoundException Stack: at
Microsoft.WindowsAzure.Plugins.Diagnostics.DiagnosticsGuidNamedEventProvider.GetNamedEvent(System.String)
at
Microsoft.WindowsAzure.Plugins.Common.BlockingExecutionEnvironment.Execute(System.Func`1)
at
Microsoft.WindowsAzure.Plugins.Diagnostics.Program.Main(System.String[])
Error 4/11/2014 3:31:44 AM .NET Runtime 1026 None
Application:
DiagnosticsAgent.exe Framework Version: v4.0.30319 Description: The
process was terminated due to an unhandled exception. Exception Info:
System.IO.FileNotFoundException Stack: at
Microsoft.WindowsAzure.Plugins.Diagnostics.DiagnosticsGuidNamedEventProvider.GetNamedEvent(System.String)
at
Microsoft.WindowsAzure.Plugins.Common.BlockingExecutionEnvironment.Execute(System.Func`1)
at
Microsoft.WindowsAzure.Plugins.Diagnostics.Program.Main(System.String[])
.
Error 4/11/2014 3:31:45 AM Application Error 1000 (100) Faulting
application name: DiagnosticsAgent.exe, version: 0.0.0.0, time stamp:
0x5243ef34 Faulting module name: KERNELBASE.dll, version:
6.2.9200.16451, time stamp: 0x50988aa6 Exception code: 0xe0434352 Fault offset: 0x000000000003811c Faulting process id: 0x9c Faulting
application start time: 0x01cf55368ce74b73 Faulting application path:
E:\plugins\Diagnostics\DiagnosticsAgent.exe Faulting module path:
D:\Windows\system32\KERNELBASE.dll Report Id:
cdd18167-c129-11e3-93f5-00155d85a04e Faulting package full name:
Faulting package-relative application ID:Server ResourceApplication:
We were getting the following error:
"File Server Resource Manager was unable to access the following file or volume: 'E:'. This file or volume might be locked by another application right now, or you might need to give Local System access to it."
We resolved the issue by updating our project references. If you are getting this error, check your Azure references, specifically these two:
Microsoft.WindowsAzure.ServiceRuntime
Microsoft.WindowsAzure.Diagnostics
Ensure that your references are the appropriate Azure SDK version to the schema/SDK you are pointing to in Azure.