I have been able to serialize an IEnumerable this way: [XmlArray(\"TRANSACTIONS\")] [XmlArrayItem(\"TRANSACTION\", typeof(Record))]
Suppose I have an XML-serializable class called Song: [Serializable] class Song { public string Artist; public string SongTitle;
I have an XSD that defines and element which has been decrecated for some time, I now wish to remove this element and remove it from the class definition (I\'m using the .net XmlSerializer with an Xml
I\'ve produced a class using the XSD.EXE for an XML web service. My question is how do I include the schema?
I have been having this problem and been pulling my hair out over it.I have the followin error: Exception Details: System.NotSupportedException: Cannot serialize member HannaPrintsDataAccess.Custome
Background: Enterprise application - very will written for its time in 2004. Stack: .NET, Heavy use of Remoting, ASMX style web services, SQL Server
I have the following xml that contains a white space Field1Value. When I deserialize that xml I lose the single space character. The value of Request.Field2 is \"\". Is this a bug in the xml serialize
I\'m having a hard time trying to indent XML files using XMLSerializer. I\'ve tried serializer.setFeature(\"http://xmlpull.org/v1/doc/features.html#indent-output\",
Lets say I have this XML file: <weather> <temp>24.0</temp> <current-condition iconUrl=\"http://....\">Sunny</current-condition>
I am using boost serialization on windows, and I wanted to test my code on linux (ubuntu) and unfortunately it does not compile.