Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
2k views

How to add XmlInclude attribute dynamically

I have the following classes [XmlRoot] public class AList { public List<B> ListOfBs {get; set;} } public class B { public string BaseProperty {get; set;} } public class C : B { ...
4
votes
2answers
3k views

System.InvalidOperationException: The type [XYZ] may not be used in this context. BUG Confirmed

I'm at my wits end on this one. I occasionally get the error above from my .Net 2.0 asmx web service. I've got the proper XmlInclude() in place, and it only appears sometimes - when I rebuild and ...
1
vote
1answer
23 views

Way to XmlInclude automatically for all derived classes?

Apparently XmlSerializer works smoothly for objects if the instances are not derived, otherwise I'd have to explicitly apply an attribute to include specific derived classes onto the base class. I ...
1
vote
1answer
263 views

C# XmlSerializer's XmlInclude equivalent in Java

I looking for a Java annotation which does the same like XmlInclude does in C#. I get a XML structure over a socket. The structure looks like this: <Answer ...