Windows error 0x80131053, -2146234285

Detailed Error Information

FUSION_E_APP_DOMAIN_LOCKED[1]

Message"The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest."
Comment The requested assembly version conflicts with what is already bound in the app domain or specified in the manifest

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode19 (0x013)
NameFACILITY_URT[2][3]
DescriptionThe source of the error code is .NET CLR.[2][3]
Error Code4179 (0x1053)

Questions

8votes
3answers

How can I deserialize with TypeNameHandling.Objects in Json.NET Silverlight?

I get an exception when trying to deserialize in Silverlight. Test1 fails, while Test2 succeeds. I've also tried TypeNameAssemblyFormat to both Simple and Full, but get same results. Test2 can resolve the assembly, why can't Json.NET? Update: Forgot to mention the type I'm trying to deserialize is defined in a [...] read more
silverlight
json.net
4votes
0answers

Assembly Version Conflicts with What is Already Bound

I'm running Microsoft LightSwitch Beta 1 and have been creating an application which has been going great, but then I tried debugging after making a few minor changes and received the following error: > "Could not load file or assembly 'SW_Resources.Commom, Version=1.0.0.0, > Culture=neutral, PublicKeyToken=null' or one of its dependencies. [...] read more
silverlight
assemblies
appdomain
visual-studio-lightswitch
3votes
1answer

Exception when using silverlight toolkit 5 controls

I'm working an application that is based on Silverlight 5. It's framework is MVVM and implemented by Prism. I'm using silverlight 5 toolkit too. In one of my views I using wrapPanel and DateTimePicker from toolkit. <navigation:Page x:Class="PIPM2.SupervisionSubSystem.Module.View.TestView" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" d:DesignWidth="640" d:DesignHeight="480" Title="TestView Page" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" xmlns:toolkit="http://schemas.microsoft.com/winfx/2006/xaml/presentation/toolkit" [...] read more
silverlight
toolkit
1vote
0answers

Deserializing JSON objects to POCO objects in Silverlight

I'm trying to deserialize some JSON objects in a Silverlight client, which are sent over to the client via SignalR. These objects have been serialized using the TypeNameHandling = TypeNameHandling.All settings. The first problem is that you can't add a Class library project reference to the Silverlight one, so I [...] read more
silverlight
json.net
signalr

Comments

Leave a comment

(plain text only)

Sources

  1. https://github.com/dotnet/coreclr/blob/v1.1.0/src/inc/corerror.xml
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx
  3. winerror.h from Windows SDK 10.0.14393.0

User contributions licensed under CC BY-SA 3.0