.NET's Deserilization errors are quite generic, for example something like this:

System.ArgumentException: Object of type 'System.Uri' cannot be converted to type 'System.String'.

It's clear that we changed the type of a property in an object but there are like 10-15 different classes in this serialized object, so it's really hard to figure out which one we changed or which commit messed this up.

Is there anyway to get information about which property in which class (or at least in which class) actually causing this error? Is there any external tool or known ways to do this?

P.S. Before anyone start telling me why I shouldn't use binary serializer or why I should X,Y instead etc. for backward compatibility, please save the advice on those. I'm aware of all those but that's not the question.

link|improve this question

4  
did you see InnerException if you dont have more info? – DesignFirst Feb 3 '11 at 13:42
10-15 doesn't sound a huge number for debugging purposes; I don't know an easy way to debug that off-hand – Marc Gravell Feb 3 '11 at 13:44
@Marc Gravell: I think that @dr. evil means that the instance being deserialized has references to 10-15 other distinct classes, all of which (including the root) can have N properties (even with one class, you have N properties) which is indeterminate, so that can potentially be a large number of properties to wade through. – casperOne Feb 3 '11 at 13:57
@casperOne yes, I'm painfully aware of the joys of trying to locate serialization bugs ;p – Marc Gravell Feb 3 '11 at 13:59
@DesignFirst InnerException is Nothing – dr. evil Feb 3 '11 at 14:07
show 5 more comments
feedback

2 Answers

If you enable debugging into framework code (see this link) and then press ctrl + shift + e and select all managed code exceptions the error will appear in the actual source line that fails. You should be able to use the stack trace then to find out what part of the object it was trying to deserialize at that point.

It's not easy, but that's how we ended up doing it.

link|improve this answer
Adding first chance exceptions and using symbols as stated above is a great approach. – greglev Feb 3 '11 at 21:39
OK this sounds like a great idea, I'll check this one out. – dr. evil Feb 4 '11 at 11:13
feedback

There's a couple of different things you can do, none of them great. Especially with binary serialization. You could add custom serialization handling with the ISerializable interface, which would allow you to step through the deserialization process in the debugger.

Have you considered switching to Xml serialization for development/debugging purposes? There's a few more hooks that you can use with Xml serialization. But it sounds like that won't work for you, as you're probably dealing with either a remote interface or older binary data stored on disk that you need to read.

But even easier would be to look through your source control system's logs for the method with the changed type.

link|improve this answer
We are currently in the process of checking previous version to fix the problem, however I was hoping to find maybe a clever tool to help me. Maybe when I give it my DLLs it can deserilize and visualise the object. Too optimistic, eh? :) – dr. evil Feb 3 '11 at 21:31
Yeah, there's many places where the .Net exceptions contain little or no info. Real shame. The Configuration classes also throw some very cryptic exception messages when you have custom classes. At least you know its a type change, which gives you a good head start. – MonkeyWrench Feb 3 '11 at 23:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.