I have problem. I try run WP7 app on Win Phone8. All work good, but sometimes I have UNHANDLED EXCEPTION with message:
Exception from HRESULT: 0x80000013. This is occurs when I go on the page where including Gart library
<ARControls:ARDisplay x:Name="ARDisplayy" d:LayoutOverrides="Width">
<ARControls:VideoPreview x:Name="VideoPreview" />
<ARControls:WorldView x:Name="WorldView" />
</ARControls:ARDisplay>
I don't know, why it is happened. May be someone encountered such a problem?
I resolved this error using the ARM version of GART.WP8.dll
Related
We implemented Dependency-check-maven and this was working fine up till now. But suddenly getting this error now,
[WARNING] An error occurred while analyzing 'oldui/includes/ckeditor/lang/no.js' (Sonatype OSS Index Analyzer).
Not sure where this is originating from?
I think the reason is due to https://ossindex.sonatype.org/ certificate is expired on 25th May. When you go to that website, you can see that you get the SSL error.
cefsharp winform crashes frequently,I have declared in the program to catch unhandled exceptions, but the program still crashes, how to solve it?
system exception log:
Framework version: v4.0.30319
Explanation: The process terminated due to an unhandled exception.
Exception information: System.AccessViolationException
In System.String.wcslen(Char*)
In System.String.CtorCharPtr(Char*)
In <Module>.CefSharp.Internals.CefStringVisitorAdapter.Visit(CefSharp.Internals.CefStringVisitorAdapter*, CefStringBase<CefStringTraitsUTF16>*)
When we are using Xamarin and MvvmCross to build a project for Phone. In this project we have added a SQLite db using SQLite plugin from MvvmCross, we have also added the SQLite3 dll to our debug folder. When we build everything is fine, but when we run the application we get the following exception:
Exception {Cirrious.CrossCore.Exceptions.MvxIoCResolveException: Failed to construct LocalPersistDataService ---> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.DllNotFoundException: Unable to load DLL 'sqlite3': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
From the output: A first chance exception of type 'System.DllNotFoundException' occurred in Cirrious.MvvmCross.Plugins.Sqlite.WindowsCommon.DLL
Using Visual Studio 2013 and Windows Phone 8.1 RT
We solved it with adding an package from sqlite.org and then got (out of nothing day 2) a reference in our add Reference on Windows Phone, this link might be of help to others with the same problem. (Down on the page there is a section on WPF)
http://developer.xamarin.com/guides/cross-platform/xamarin-forms/working-with/databases/
I have a silver application that is giving the following error:
Error: Unhandler error in Silverlight Application
Code: 2104
Category: InitializeError
Code: 0
Message: 2104 An error has occurred.
I have done some research on the error and most feedback seems to be related to MIME types.
I have added the following mime types to the website in IIS:
.xaml application/xaml+xml
.xap application/x-silverlight-app
.xbap application/x-ms-xbap
But I still received the same error.
Is there any other area that I should investigate or perhaps some tool that I could use to investigate what is happening.
Any assistance would be greately appreciated.
Many thanks,
Joseph
Have you tried using Fiddler? This should give you some insight to the issue and/or the root cause.
I've been working on converting a Silverlight project from Silverlight 2 to Silverlight 3. Note that I've never had SL 2 binaries or development components installed on my machine (it's only a month old).
This has been going fine and the app was running until I started getting a build error with ValidateXaml raising a FileNotFoundException in System.Core. I don't know why this suddenly started happening but from some searching around the answer seemed to be putting various Silverlight DLLs in the GAC. This did indeed solve the build errors. I didn't try testing to check if the app ran correctly after that.
Some time later I'm trying to run the app again. Now I'm getting yet another FileNotFoundException, this time in System.Windows.Controls. I've tried removing all Silverlight DLLs from the GAC and adding them back in again without any success. Here's the stack trace:
Message: Unhandled Error in Silverlight Application
Code: 4004
Category: ManagedRuntimeError
Message: System.IO.FileNotFoundException: Could not load file or assembly 'System.Windows.Controls, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.
File name: 'System.Windows.Controls, Version=2.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'
at MyNamespace.Page.InitializeComponent()
at MyNamespace.Page..ctor()
at MyNamespace.App.Application_Startup(Object sender, StartupEventArgs e)
at System.Windows.CoreInvokeHandler.InvokeEventHandler(Int32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, String eventName)
This entire experience has been very frustrating and I'd love to know what is causing these problems and how to fix them?
Have you tried the fusion log viewer? In a VS command shell, fuslogvw.exe, set it to show bind errors in options, clear out the log, run your app. Afterwards it will give you a detailed explanation why it could not load the assembly. fuslogvw has helped me here many times.
Do note the or one of its dependencies. That is key, it's rare that it's the assembly the exception is complaining about, it's often a dependency issue.
I have reinstalled the Silverlight runtime and all of the development components and the problem has now gone away.
I'm leaving this unanswered for now in case someone has some ideas on what caused this.