currently I\'m translating an app from C# into ActionScript (Silverlight to Flex) and I need to serialize some XML content in ActionScript.
I\'m having this very odd issue while trying to serialize a class for logging using XmlSerializer. The code was generated by the wsdl.exe tool. The class that gets serialized asis declared as follows:
I\'m having issues trying to add some dates to a pre-existing class that is loaded via XML Serialisation, and it\'s not doing what I thought it should do.
using System.ComponentModel; using System.IO; using System.Xml.Serialization; namespace SerializerTest {
I\'m working on a project that calls a web service using WSE3.The types originally generated using VS2005 have been modified over time.Now, I need to change the name of the type in the SOAP message.I
It seems that serialization is very straightforward. Assuming that both the key and value are serializable, what could be simpler than representing key-value pairs in XML?!
Whats the fastest or perhaps optimal way to read elements, node, attributes from a source class, which represents a chunk of xml, and write then back into a resultant class from the same schema.
The following (abysmal) code demonstrates how standard serialize/de-serialize in VB loses the CR when on de-serialize. This can be overcome by applying \'XmlAttribute(DataType:=\"string\")\' to Descri
I\'m serializing a class like this public MyClass { public int? a { get; set; } public int? b { get; set; }