active questions tagged xml-serialization - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T09:57:59Zhttp://stackoverflow.com/feeds/tag/xml-serializationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1759540/castor-and-sockets0Castor and socketsDopyiii2009-11-18T22:16:51Z2009-11-26T15:55:05Z
<p>I'm new to Castor and data binding in general. I'm working on an application that, in part, needs to take data off of a socket and unmarshall the data to make POJOs. Now, I've got the socket stuff down, and I've even generated and compiled java files thanks to Ant and Castor.</p>
<p>Here's the problem: the data stream that I'll receive could be one of about 9 different objects. That is, I receive a stream of text (XML) that represents an object with stuff that I'll operate on; again, depending on the object type. If it were just one object, it'd be easy: call the unmarshall commands on it and go on my merry way. But, since it could be one of many kinds of objects, who do I know what to unmarshall? I read up on mapping, but either I didn't get it, or it seems like a static mapping, not a dynamic mapping.</p>
<p>Any help out there?</p>
http://stackoverflow.com/questions/1799154/serializable-class-inheriting-from-an-interface-with-a-property-of-its-own-type0Serializable class inheriting from an Interface with a property of its own typeJeremy2009-11-25T18:50:12Z2009-11-26T15:41:42Z
<p>I have an interface, with a definintion for a property that is the same type as the interface. </p>
<pre><code>public interface IMyInterface
{
IMyInterface parent
{
get;
set;
}
}
</code></pre>
<p>Now if I declare a class and inherit from the interface, I need to create the property called parent. I want my class to be serializable to use in a web service, but Interfaces are not serializable when used that way, so what should I do about my property of type IMyInterface? I do want that property to serialize.</p>
http://stackoverflow.com/questions/1803666/how-can-i-generate-xml-from-an-object-hierarchy1How can i generate xml from an object hierarchy?Peter Lindqvist2009-11-26T13:28:14Z2009-11-26T14:50:26Z
<p>I have <em>object</em>, tree/model/hierarchy, whatever the correct term is. It consists of what could be characterized as a one-to-one mapping of the desired XML.</p>
<p>That is i have the following (in a non-standard UML sort of syntax)</p>
<pre><code>class A {
class B b[*]
class C
class D
}
class B {
class C c[*]
string AttributeFoo = "bar"
}
class C {
string AttributeThis = "is"
}
class D {
string AttributeName = "d"
}
</code></pre>
<p>Desired output is something like this:</p>
<pre><code><?xml version="1.0"?>
<a>
<b attribute-foo="bar">
<c attribute-this="is"/>
</b>
<c attribute-this="is"/>
<d attribute-name="d"/>
</a>
</code></pre>
<p>What would you propose to be the <strong>best</strong>, and/or the <strong>simplest</strong> way of achieving this goal?</p>
http://stackoverflow.com/questions/1797947/xmlserializer-doesnt-serialize-everything-in-my-class0XmlSerializer doesn't serialize everything in my classJerry2009-11-25T16:02:14Z2009-11-25T16:55:17Z
<p>I have a very basic class that is a list of sub-classes, plus some summary data.
<code></p>
<pre><code>[Serializable]
public class ProductCollection : List<Product>
{
public bool flag { get; set; }
public double A { get; set; }
public double B { get; set; }
public double C { get; set; }
}
</code></pre>
<p>...</p>
<pre><code>// method to save this class
private void SaveProductCollection()
{
// Export case as XML...
XmlSerializer xml = new XmlSerializer(typeof(ProductCollection));
StreamWriter sw = new StreamWriter("output.xml");
xml.Serialize(sw, theCollection);
sw.Close();
}
</code></pre>
<p></code></p>
<p>When I call <code>SaveProductCollection()</code> I get the following:
<code></p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<ArrayOfProduct xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Product>
<InputType>1</InputType>
</Product>
<Product>
<InputType>1</InputType>
</Product>
</ArrayOfProduct>
</code></pre>
<p></code></p>
<p>Note that I have the base type : <code>List<Product></code>. But I don't have any of the class properties: flag, A, B, C.</p>
<p>Did I do something wrong? What's up??</p>
<p><strong>UPDATE</strong> Thanks for the replies. I wasn't aware that it was by-design. I've converted to BinaryFormatter (for binary serialization instead) and it works wonderfully.</p>
http://stackoverflow.com/questions/1793131/is-there-an-easier-way-to-deserialize-similar-xml-files0Is there an easier way to deserialize similar XML files?Justin Rusbatch2009-11-24T21:44:45Z2009-11-24T22:35:02Z
<p>I am writing a class library which abstracts data contained in XML files on a web site. Each XML file uses the same root element: <code>page</code>. The descendant(s) of <code>page</code> depend on the specific file that I am downloading. For example:</p>
<pre><code><!-- http://.../groups.xml -->
<page url="/groups.xml">
<groups>
<group id="1" >
<members>
<member name="Adrian" />
<member name="Sophie" />
<member name="Roger" />
</members>
</group>
</groups>
</page>
<!-- http://.../project.xml?n=World%20Domination -->
<page url="/project.xml">
<projectInfo>
<summary classified="true" deadline="soon" />
<team>
<member name="Pat" />
<member name="George" />
</team>
</projectInfo>
</page>
</code></pre>
<p>There are also several additional XML files that I would like to download and process, eventually. For that reason, I have been trying to come up with a nice, clean way to deserialize the data. I've tried a few approaches, but each approach leaves me feeling a little dirty when I look back over my code. My latest incarnation utilizes the following method:</p>
<pre><code>internal class Provider
{
/// <summary>Download information from the host.</summary>
/// <typeparam name="T">The type of data being downloaded.</typeparam>
internal T Download<T>(string url) where T : IXmlSerializable, new()
{
try
{
var request = (HttpWebRequest)WebRequest.Create(url);
var response = (HttpWebResponse)request.GetResponse();
using (var reader = XmlReader.Create(response.GetResponseStream()))
{
// Skip the XML prolog (declaration and stylesheet reference).
reader.MoveToContent();
// Skip the `page` element.
if (reader.LocalName == "page") reader.ReadStartElement();
var serializer = new XmlSerializer(typeof(T));
return (T)serializer.Deserialize(reader);
}
}
catch (WebException ex) { /* The tubes are clogged. */ }
}
}
[XmlRoot(TypeName = "groups")]
public class GroupList : List<Group>, IXmlSerializable
{
private List<Group> _list;
public void ReadXml(XmlReader reader)
{
if (_list == null) _list = new List<Group>();
reader.ReadToDescendant("group");
do
{
var id = (int)reader["id"];
var group = new Group(id);
if (reader.ReadToDescendant("member"))
{
do
{
var member = new Member(reader["name"], group);
group.Add(member);
} while (reader.ReadToNextSibling("member"));
}
_list.Add(group);
} while (reader.ReadToNextSibling("group"));
reader.Read();
}
}
</code></pre>
<p>This works, but I feel like there is a better way that I'm not seeing. I tried using the <code>xsd.exe</code> utility when I started this project. While it would minimize the amount of code for me to write, it did not feel like the ideal solution. It would be the same approach that I'm using now -- I would just get there faster. I'm looking for a better solution. All pages have the <code>page</code> element in common -- isn't there a way to take advantage of that? Would it be possible to have a serializable container class <code>Page</code> that could contain a combination of other objects depending on the file downloaded? Are there any simpler ways to accomplish this?</p>
http://stackoverflow.com/questions/1791178/customising-serialisation-of-java-collections-using-xstream0customising serialisation of java collections using xstreamWill Goring2009-11-24T16:24:49Z2009-11-24T22:06:29Z
<p>I have an object that needs to be serialised as XML, which contains the following field:</p>
<pre><code>List<String> tags = new List<String>();
</code></pre>
<p>XStream serialises it just fine (after some aliases) like this:</p>
<pre><code><tags>
<string>tagOne</string>
<string>tagTwo</string>
<string>tagThree</string>
<string>tagFour</string>
</tags>
</code></pre>
<p>That's OK as far as it goes, but I'd like to be able to rename the <code><string></code> elements to, say, <code><tag></code>. I can't see an obvious way to do that from the alias documentation on the XStream site. Am I missing something obvious?</p>
http://stackoverflow.com/questions/1787212/settable-collection-properties0Settable collection properties: Jeff Stewart2009-11-24T01:18:21Z2009-11-24T01:18:21Z
<p><em>Framework Design Guidelines</em> gives this advice:
DO NOT provide settable collection properties.</p>
<p>But if I don't, I can't see a way to XML serialize anything with a collection property. The XmlSerializer constructor complains,</p>
<blockquote>
<p>"Unable to generate a temporary class
(result=1). error CS0200: Property or
indexer
'ConsoleApplication1.MyClass.Clxn'
cannot be assigned to -- it is read
only"</p>
</blockquote>
<p>And this is exactly what I'd expect. So did the FDG authors just not consider this or am I missing a better practice?</p>
http://stackoverflow.com/questions/1786474/soap-and-omitting-null-elements0SOAP and omitting null elementsTom2009-11-23T22:23:46Z2009-11-23T22:30:33Z
<p>I wrote a web service in C# that just takes in an object and then returns another different object.</p>
<p>I have the following attributes applied to the web service</p>
<pre><code>[SoapDocumentService(Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Bare)]
[WebService(Namespace = "http://www.iec.ch/61968")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
</code></pre>
<p>When I return the object and examine the SOAP message I am seeing tags such as</p>
<pre><code><Response>
<Verb>reply</Verb>
<User />
</Response>
</code></pre>
<p>Where User is just some object type in my code. What do I need to set in my code for User to be completely omitted from the SOAP message if it is null in my code?</p>
http://stackoverflow.com/questions/1721897/deserialize-the-xml-document-need-help1deserialize the XML Document --- Need HelpHoward2009-11-12T12:36:40Z2009-11-23T15:56:50Z
<p>I am using the below code snippet now to deserialize the XML document ... </p>
<pre><code>[WebMethod]
public XmlDocument OrderDocument(XmlDocument xmlDoc)
{
XmlSerializer serializer = new XmlSerializer(typeof(sendOrder.Order));
string xmlString = xmlDoc.OuterXml.ToString();
byte[] buffer = ASCIIEncoding.UTF8.GetBytes(xmlString);
MemoryStream ms = new MemoryStream(buffer);
sendOrder.Order orderDoc = (sendOrder.Order)serializer.Deserialize(ms);
sendOrder.WebService_ConsureWebService ws =
new sendOrder.WebService_ConsureWebService();
ws.Operation_1(ref orderDoc);
return xmlDoc;
}
</code></pre>
<p>Can anybody please tell what is wrong with the code, as the error says there is an error in the XML document but if you check the document I am passing and the even the Order object its got the same structure and the namespace</p>
<blockquote>
<p>There is an error in XML document (1,
2). --->
System.InvalidOperationException:
http://ConsureWebService.Order'>
was not expected.</p>
</blockquote>
http://stackoverflow.com/questions/1625607/best-way-to-generate-a-hash-signature-hmac-for-xmlserialized-objects-in-net2Best way to generate a hash signature (HMAC) for XMLSerialized objects in .NET?jacko2009-10-26T15:56:34Z2009-11-23T07:16:05Z
<p>I need to generate a HMAC for objects that I am serializing using the XMLSerializer found in the .NET framework. Each object will contain a property called "HMAC" that will contain a hash of the object's values itself but excluding the "HMAC" field. I've found <a href="http://stackoverflow.com/questions/1331081/how-to-serialize-an-object-in-c-and-prevent-tampering">this question</a> that mentions a built-in solution within the CLR but doesn't elaborate on exactly what its called or how I go about using it?</p>
<p>A sample object would look something like this:</p>
<pre><code>[Serializable]
[XmlRoot("request", IsNullable = false)]
public class Request
{
[XmlElement(ElementName = "hmac")]
public string Hmac { get; set; }
[XmlElement(ElementName = "nonce")]
public string Nonce { get; set; }
[XmlElement(ElementName = "expiration")]
public DateTime Expiration { get; set; }
/* A bunch of other properties to be serialized */
private Request() { }
public Request(string hmac, string nonce, DateTime expiration)
{
Hmac = hmac;
Nonce = nonce;
Expiration = expiration;
}
}
</code></pre>
<p>The HMAC property will need to be set as a serialization of the entire object, excluding the HMAC object itself. My first thoughts are setting up some sort of two-pass serialization, which involves:</p>
<ol>
<li>Setting an xmlignore property to the HMAC object on the first pass</li>
<li>Serializing the entire object</li>
<li>Hashing the result, and setting the value of the HMAC property</li>
<li>Re-serializing the whole thing again, ready for transmission.</li>
</ol>
<p>Is this the best way to go about it? Has anyone done anything like this before, and what have you found to be the cleanest way of going about it???</p>
http://stackoverflow.com/questions/1645955/xmlserializer-not-populating-sub-elements0XmlSerializer not populating sub-elementsNissan Fan2009-10-29T19:20:24Z2009-11-23T07:15:51Z
<p>I've used XSD.EXE to convert an XSD into an object. That works fine and I can Deserialize using XMLSerializer just fine, except that the subelements which are generated as arrays don't populate.</p>
<pre><code> private SubElements[] subelementsField;
/// <remarks/>
[System.Xml.Serialization.XmlArrayItemAttribute("SubElement", IsNullable=false)]
public SubElement[] SubElement {
get {
return this.subelementField;
}
set {
this.subelementField = value;
}
}
</code></pre>
<p>Even though there is data in the XML it just doesn't populate it when I use the following code:</p>
<pre><code>// Deserialize
var result = serializer.Deserialize(new StringReader(data.XMLText.ToString()));
</code></pre>
<p>The root elements all work fine, just not the sub elements of this type of XML data:</p>
<pre><code><RootNode Weight="205" Year="1995">
<ParentNodeWhichWorksFine Contact="John Doe">
<SubElement SomeAttribute="123">
<Location>New York City</Location>
<Team>New York Pizza</Team>
</SubElement>
</ParentNodeWhichWorksFine>
</RootNode>
</code></pre>
<p>Am I missing some hints or something else that XSD.EXE is not including?</p>
http://stackoverflow.com/questions/1650419/protocol-buffers-net-protobuf-net-10x-slower-that-xml-serializer-how-come0protocol buffers .net (protobuf-net) 10x slower that xml serializer. how come?usr2009-10-30T15:15:36Z2009-11-23T07:15:42Z
<p>the title says it all. i noticed that serialization as well des deserialization takes 10x as lang with protobuf-net compared to XmlSerializer. the output files however are much smaller. i find this confusing because protobuf is such a simple format that should run very fast.</p>
<p>any hints on how to speed it are greatly appreciated.</p>
<p>Edit: here is the code:</p>
<pre><code>[ProtoContract]
class BinaryRequest
{
[ProtoMember(1, IsRequired = true)]
public Guid ID;
[ProtoMember(2)]
public long? BeginDate;
[ProtoMember(3)]
public long? EndDate;
[ProtoMember(4)]
public Guid? UserID;
[ProtoMember(5)]
public string UserName;
[ProtoMember(6)]
public string RawUrl;
[ProtoMember(7)]
public string Path;
[ProtoMember(8)]
public string PhysicalPath;
[ProtoMember(9)]
public string FilePath;
[ProtoMember(10)]
public string Host;
[ProtoMember(11)]
public string UrlReferer;
[ProtoMember(12)]
public string UserHostAddress;
[ProtoMember(13)]
public string UserHostName;
[ProtoMember(14)]
public string UserAgent;
[ProtoMember(15)]
public string UserLanguages;
[ProtoMember(16)]
public string HttpMethod;
[ProtoMember(17)]
public string ResponseCacheControl;
[ProtoMember(18)]
public string ResponseCharset;
[ProtoMember(19)]
public string ResponseContentEncoding;
[ProtoMember(20)]
public string ResponseContentType;
[ProtoMember(21)]
public long? ResponseExpires;
[ProtoMember(22)]
public int? ResponseStatus;
[ProtoMember(23)]
public string ResponseStatusDescription;
[ProtoMember(24)]
public string Error;
[ProtoMember(25)]
public string ClientType;
[ProtoMember(26)]
public string ContentType;
[ProtoMember(27)]
public IList<BinaryNameValue> RequestCookies;
[ProtoMember(28)]
public IList<BinaryNameValue> ResponseCookies;
[ProtoMember(29)]
public IList<BinaryNameValue> RequestHeaders;
[ProtoMember(30)]
public IList<BinaryNameValue> RequestPostData;
[ProtoMember(31)]
public IList<BinaryNameValue> AdditionalInfo;
}
Serializer.SerializeWithLengthPrefix(stream, request, PrefixStyle.Base128);
</code></pre>
http://stackoverflow.com/questions/1714231/serialize-property-even-empty0Serialize property even emptyCornel2009-11-11T10:06:23Z2009-11-23T07:15:22Z
<p>How can I tell to the XmlSerializer to serialize a string property that is empty?</p>
<pre><code> [XmlElement("description")]
public string Description
{
get;
set;
}
</code></pre>
http://stackoverflow.com/questions/1722043/different-options-for-xmlserialization-and-derived-type0Different options for XmlSerialization and derived typeSean Chambers2009-11-12T13:01:45Z2009-11-23T07:15:15Z
<p>I have the following object graph:</p>
<pre><code>public class BaseType
{
}
public class DerivedType : BaseType
{
}
</code></pre>
<p>When I pass DerivedType to XmlSerializer I need to have it reflect on BaseType instead of DerivedType. Is there a way to control this with attributes without implementing IXmlSerializer on DerivedType?</p>
http://stackoverflow.com/questions/1750923/net-xmlserializer-error0.net xmlserializer errorCarlo2009-11-17T18:43:11Z2009-11-23T07:14:50Z
<p>The error is when the class gets serialized, I don't get a run time error or anything (unless I try to deserialize). When the XmlSerializer serializes my class, some times it adds some text at then end of the XML. This happens often at the very end:</p>
<pre><code></RootNode>ootNode>
</code></pre>
<p>Some times it's not at the end but in the middle, something like</p>
<pre><code><Node Name="MyNode">
Name="MyNode">
<Attribute1>Attr</Attribute1>
</code></pre>
<p>I have no idea what could be causing this, but maybe it has happened to some of you too. Let me know if you guys found a solution to this problem.</p>
<p>Here's my code:</p>
<pre><code> using (StreamWriter writer = new StreamWriter(
File.Open(fileName, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite)))
{
XmlSerializer serializer = new XmlSerializer(typeof(MyClass));
serializer.Serialize(writer, this);
}
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/1773654/utf8-beginning-of-file-characters-are-breaking-serializer-readers0UTF8 Beginning of File characters are breaking serializer & readersNathan2009-11-20T22:33:29Z2009-11-23T07:14:42Z
<p>Okay, I'm trying to work with UTF8 text files. I'm constantly fighting the BOF chars that the writer drops in for UTF8, which blows up pretty much anything I need to use to read the file including serializers and other text readers. </p>
<p>I'm getting a leading six bytes of data: </p>
<pre><code>0xEF
0xBB
0xBF
0xEF
0xBB
0xBF
</code></pre>
<p>(now that I'm looking at it, I realize there's two characters there. Is that the UTF8 BOF marker? Am I double encoding it)? </p>
<p>Notice the serializer encodes to UTF8, then the memory stream gets a string as UTF8, then I write the string to the file with UTF8... seems like a lot of redundancy. Thoughts? </p>
<pre><code>//I'm storing this xml result to a database field. (this one includes the BOF chars)
using (MemoryStream ms = new MemoryStream())
{
Utility.SerializeXml(ms, root);
xml = Encoding.UTF8.GetString(ms.ToArray());
}
//later on, I would take that xml and then write it out to a file like this:
File.WriteAllText(path, xml, Encoding.UTF8);
public static void SerializeXml(Stream output, object data)
{
XmlSerializer xs = new XmlSerializer(data.GetType());
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
settings.IndentChars = "\t";
settings.Encoding = Encoding.UTF8;
XmlWriter writer = XmlTextWriter.Create(output, settings);
xs.Serialize(writer, data);
writer.Flush();
writer.Close();
}
</code></pre>
http://stackoverflow.com/questions/1772004/how-can-i-make-the-xmlserializer-only-serialize-plain-xml2How can I make the xmlserializer only serialize plain xml?Grzenio2009-11-20T17:22:08Z2009-11-23T07:14:31Z
<p>I need to get plain xml, without the <code><?xml version="1.0" encoding="utf-16"?></code> at the beginning and <code>xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"</code> in first element from <code>XmlSerializer</code>. How can I do it?</p>
http://stackoverflow.com/questions/1775682/xml-serializer-why-deserialization-doesnt-work-in-my-case1XML Serializer: why deserialization doesn't work in my case?Racoon2009-11-21T14:53:17Z2009-11-23T07:14:07Z
<p>Hi, guys. I use XMLSerializer to keep and restore program options. Here is the code:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Xml;
using System.Windows.Forms;
using System.Xml.Serialization;
namespace XMLAsk
{
class Test
{
public static string ConfigFileName = "C:\\Work\\TMP\\Config.xml";
public static void Main()
{
MyOptions myOptions = new MyOptions();
myOptions.Title = "Hello, world!";
myOptions.Rating = 15;
SerializeToXML(myOptions);
MyOptions myOptions2 = new MyOptions();
DeserializeFromXML(myOptions2);
MessageBox.Show(myOptions2.Title);
}
public static void SerializeToXML(MyOptions myOptions)
{
XmlSerializer serializer = new XmlSerializer(typeof(MyOptions));
TextWriter textWriter = new StreamWriter(ConfigFileName);
serializer.Serialize(textWriter, myOptions);
textWriter.Close();
}
public static void DeserializeFromXML(MyOptions myOptions2)
{
XmlSerializer deserializer = new XmlSerializer(typeof(MyOptions));
TextReader textReader = new StreamReader(ConfigFileName);
myOptions2 = (MyOptions)deserializer.Deserialize(textReader);
textReader.Close();
}
}
public class MyOptions
{
private string title;
private int rating;
public string Title
{
get { return title; }
set { title = value; }
}
public int Rating
{
get { return rating; }
set { rating = value;}
}
}
}
</code></pre>
<p>Serialization does work. I get the following xml-file (Config.xml):</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
- <MyOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Title>Hello, world!</Title>
<Rating>15</Rating>
</MyOptions>
</code></pre>
<p>But deserialization seems doesn't work. For instance, when I display one of options with <strong>MessageBox.Show(myOptions2.Title);</strong> (see code above), then I get an empty string.</p>
<p>Why? What's wrong with my code?</p>
http://stackoverflow.com/questions/1257256/how-can-i-deserialize-a-list-of-datetime-objects1How can I deserialize a list of DateTime objects?Pwninstein2009-08-10T21:14:46Z2009-11-23T07:13:34Z
<p>If I have the following XML segment:</p>
<pre><code><Times>
<Time>1/1/1900 12:00 AM</Time>
<Time>1/1/1900 6:00 AM</Time>
</Times>
</code></pre>
<p>What should the corresponding property look like that, when deserialization occurs, accepts the above XML into a list of DateTime objects?</p>
<p>This works to deserialize the XML segment to a list of <code>string</code> objects:</p>
<pre><code>[XmlArray("Times")]
[XmlArrayItem("Time", typeof(string))]
public List<string> Times { get; set; }
</code></pre>
<p>But when I use DateTime as the type instead of string (for both the List type and XmlArrayItem type), I get the following error:</p>
<p><code>The string '1/1/1900 12:00 AM' is not a valid AllXsd value.</code></p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1638361/how-can-i-make-xmlserializer-deserialize-more-strict0How can I make XmlSerializer.Deserialize more strict?Nissan Fan2009-10-28T16:24:45Z2009-11-23T07:13:11Z
<p>I have some very similar XML structures which are in fact quite distinct, but it appears that XmlSerializer.Deserialize is very "forgiving" and will go out of its way to take XML and deserialize out into a strongly typed object I created from the source XSDs. Is there any way to make it more strict or do some type of deeper validation?</p>
<pre><code>// Locals
var serializer = new XmlSerializer(typeof(SomeCustomType));
// Set
var someInstance = serializer.Deserialize(new StringReader(xmlString.ToString()))
</code></pre>
<p><strong>@Jeff Because the root nodes are similar it will deserialize into completely different objects. Imagine that you have a house, car and boat and they all share a base root node called item with a few attributes. Even though sub-nodes are invalid and unshared it seems to overlook and forgive that.</strong></p>
<p><strong>@Will I don't want to validate against the XSD. I want to somehow cause the Deserializer to see that the data it has shouldn't be shoe-horned into the wrong Object type.</strong></p>
http://stackoverflow.com/questions/1645233/xmlserializer-required-mandatory-attribute-fields-validation0xmlserializer required/mandatory attribute/fields validationOlivier de Rivoyre2009-10-29T17:12:30Z2009-11-23T07:12:36Z
<p>Is there an easy way to force the WebService .Net XmlSerialiser to check that an attribute is present?</p>
<p>In the following example, I want the webService's caller do not forget to set the Price and the Currency:</p>
<pre><code>public class Quote
{
public decimal Price;
public string Currency;
}
[WebService]
public class MyWebService : WebService
{
[WebMethod()]
public void Save(Quote quote)
{
if(quote == null)
{
throw new ArgumentNullException("Quote");
}
if(quote.Price == 0m)
{
throw new ArgumentNullException("quote.Price");
}
if(quote.Currency == null)
{
throw new ArgumentNullException("quote.Currency");
}
///Do real job here
}
}
</code></pre>
<p>Is exists a XmlElmentAttribute option that can allow me to avoid the 'if(x == null) throw new Exception()' part?
Does it exists an easier way to do?</p>
http://stackoverflow.com/questions/1624540/how-to-set-root-node-name-when-xmlserializing-an-array0How to set root node name when XmlSerializing an array?paul2009-10-26T12:32:20Z2009-11-23T07:12:27Z
<p>I have an array of objects which I want to serialize as XML. These objects are annotated to set XML node names but I was wondering how to set the name of the XML root node.</p>
<p>The code looks like this:</p>
<pre><code>// create list of items
List<ListItem> list = new List<ListItem>();
list.Add(new ListItem("A1", new Location(1, 2)));
list.Add(new ListItem("A2", new Location(2, 3)));
list.Add(new ListItem("A3", new Location(3, 4)));
list.Add(new ListItem("A4<&xyz>", new Location()));
// serialise
XmlSerializer ser = new XmlSerializer(typeof(ListItem[]));
FileStream os = new FileStream(@"d:\temp\seri.xml", FileMode.Create);
ser.Serialize(os, list.ToArray());
os.Close();
</code></pre>
<p>The output looks like this:</p>
<pre><code><?xml version="1.0"?>
<ArrayOfPlace xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Place>
<Placename>A1</Placename>
<Location>
<Lat>1</Lat>
<Long>2</Long>
</Location>
</Place>
<Place>
...
</code></pre>
<p><strong>ListItem</strong> has been renamed to <strong>Place</strong> using an <em>XmlElement</em> annotation, but how can I set the name of the root node to rename the <strong>'ArrayOfPlace'</strong> node?</p>
http://stackoverflow.com/questions/299387/c-serializing-class-to-xml-where-one-of-class-properties-is-datetime-how-to-mak1C# serializing Class to XML where one of class properties is DateTime. How to make this property in ISO format?GrZeCh2008-11-18T17:01:55Z2009-11-23T07:11:19Z
<p>Hello!</p>
<p>I'm serializing class which contains DateTime property.</p>
<pre><code>public DateTime? Delivered { get; set; }
</code></pre>
<p>After serializing Delivered node contains DateTime formatted like this:</p>
<pre><code>2008-11-20T00:00:00
</code></pre>
<p>How can I change this property to make it look like this:</p>
<pre><code>2008-11-20 00:00:00
</code></pre>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1778756/net-xmlserializer-generating-array-types-with-sgen0.NET XmlSerializer: generating array types with SGENanthony2009-11-22T13:52:26Z2009-11-22T15:37:53Z
<p>Since .NET's XmlSerializer is a complete joke, I need to use sgen to generate assemblies at build time, rather than rely on the ridiculously stupid dynamic runtime generation.</p>
<p>This works fine for serializing an object of type Foo, but not an array of Foo. How can I run sgen so that it will generate serializers for array types?</p>
http://stackoverflow.com/questions/1744334/the-quest-for-0x0b0The quest for 0x0B Radu0942009-11-16T19:31:48Z2009-11-22T09:17:39Z
<p>I get this error when reading some data from an SQL column then converting it to XML:</p>
<p>"System.InvalidOperationException: There is an error in XML document (182, 16). ---> System.Xml.XmlException: ' ', hexadecimal value 0x0B, is an invalid character." </p>
<p>Fair enough, maybe the data is malformed. Except, how can I find the culprit row?</p>
<pre><code>SELECT * from Mytable where Column like '%' + char(0x0B)+'%'
</code></pre>
<p>returns empty. </p>
<p>(obviously I attempted all %+char , char, char+% combinations, just in case)</p>
http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml2PHP Associative arrays to and from XML Shabbyrobe2008-09-19T03:39:11Z2009-11-21T20:03:13Z
<p>Is there an easy way to marshal a PHP associative array to and from XML? For example, if I have the following array:</p>
<pre><code>$items = array("1", "2",
array(
"item3.1" => "3.1",
"item3.2" => "3.2"
"isawesome" => true
)
);
</code></pre>
<p>How would I turn it into something similar to the following XML in as few lines as possible, then back again:</p>
<pre><code><items>
<item>1</item>
<item>2</item>
<item>
<item3_1>3.1</item3_1>
<item3_2>3.2</item3_2>
<isawesome>true</isawesome>
</item>
</items>
</code></pre>
<p>I don't really care if I have to change the array structure a bit or if the XML that comes out is different to the above example. I've been trying to work with PHP's <a href="http://au.php.net/manual/en/book.xmlreader.php" rel="nofollow">XMLReader</a> and <a href="http://au.php.net/manual/en/book.xmlwriter.php" rel="nofollow">XMLWriter</a>, but the documentation is so poor and the code I've produced as a consequence looks nothing like what I feel it should look like:</p>
<pre><code>$xml = SomeXMLWriter::writeArrayToXml($items);
$array = SomeXMLWriter::writeXmlToArray($xml);
</code></pre>
<p>Does it really have to be any harder than that to get a basic, raw XML dump of a PHP array without writing my own custom class?</p>
<p>@<a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#99367">cruizer</a>,
I try to avoid PEAR. In addition to the configuration headaches I've had with it, I've never stuck with any of the packages I've ever used from it.</p>
<p>@<a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#99378">Oddmund</a> & <a href="http://stackoverflow.com/questions/99350/php-associative-arrays-to-and-from-xml#109886">Jared</a>
Can you please provide some examples of using SimpleXML to do what I am trying to do?</p>
http://stackoverflow.com/questions/1765541/how-would-i-robustly-log-binary-or-xml-using-slf4j-log4j-java-util-logging0How would I robustly log binary or XML using slf4j/log4j/java.util.logging?Thorbjørn Ravn Andersen2009-11-19T18:33:56Z2009-11-19T20:06:44Z
<p>After doing logging for many years I have now reached a point where I need to be able to postprocess the log files with the long term goal of using the log files as a "transport medium" allowing me to persist objects et. al. so I can replay the backend requests. In order to do so I need to persist objects into a loggable form.</p>
<p>The recommended way to do this by Sun, is to use java.beans.XMLEncoder to create an XML snippet which is quite agreeable with me, but the problem is that it is sent to an UTF-8 encoded OutputStream including an UTF-8 header, and OutputStreams are byte oriented. Log files are character oriented (strings) and logfiles are typically encoded in the default encoding for that platform. Our XML may include any Unicode character.</p>
<p>I need a robust way of handling this, with preferation to an approach which generates humanly readable files.</p>
<p>I have thought about converting the XML OuptutStream to a String, removing the unusable header, and flattening to ASCII (with any non-ASCII character encoded as a numeric entity). I have also thought about using XML transformations but I have a gut feeling that this will require more resources than I want a logger to do. </p>
<p>Suggestions?</p>
http://stackoverflow.com/questions/306579/custom-datetime-xml-serialization0Custom DateTime XML Serializationdavid valentine2008-11-20T19:42:30Z2009-11-18T20:00:04Z
<p>I would like to be able to Serialize a DateTime with a specific Time Zone that is not the server, nor is it client time. Basically, any time zone.
Is it possible to override the DateTime serialization, in .Net2.0 webservices?</p>
<p>I compile an xmlschema using xsd.exe, so I made an attempt using XmlSchemaImporter.</p>
<p>The OnSerialize examples show value changes, but not changes to the output format.</p>
<p>XmlSchemaImporter, loaded it into the gac, ran xsd.exe, and generated code that has the class I want... but that class is an attribute, which end up not being able to be reflected.</p>
<blockquote>
<p>[InvalidOperationException: Cannot
serialize member 'metadataDateTime' of
type Cuahsi.XmlOverrides.W3CDateTime.
XmlAttribute/XmlText cannot be used to
encode complex types.]</p>
</blockquote>
<p>Generated code</p>
<pre><code>[System.Xml.Serialization.XmlAttributeAttribute()]
public Cuahsi.XmlOverrides.W3CDateTime dateTime {
get {
return this.dateTimeField;
}
set {
this.dateTimeField = value;
}
}
</code></pre>
<p>XmlSchemaImporter</p>
<pre><code>public class ImportW3CTime :
System.Xml.Serialization.Advanced.SchemaImporterExtension
{
public override string ImportSchemaType(string name, string ns,
XmlSchemaObject context, XmlSchemas schemas,
XmlSchemaImporter importer, CodeCompileUnit compileUnit,
CodeNamespace mainNamespace, CodeGenerationOptions options,
CodeDomProvider codeProvider)
{
if (XmlSchema.Namespace == ns)
{
switch (name)
{
case "dateTime":
string codeTypeName = typeof(W3CDateTime).FullName;
CodeTypeDeclaration cls =
new CodeTypeDeclaration("W3CDateTime");
cls.IsStruct = true;
cls.Attributes = MemberAttributes.Public;
cls.BaseTypes.Add("dateTime");
mainNamespace.Types.Add(cls);
return codeTypeName;
default: return null;
}
}
else { return null; }
}
}
</code></pre>
<p><strong>Addendum 1:</strong>
I just tired DateTimeoffset, and that still causes an error when the class is tagged like:</p>
<pre><code>[System.Xml.Serialization.XmlAttributeAttribute(DataType = "dateTime")]
public System.DateTimeOffset metadataDateTime {
get {
return this.metadataDateTimeField;
}
set {
this.metadataDateTimeField = value;
}
}
</code></pre>
http://stackoverflow.com/questions/826295/how-to-deserialize-enumarable-tolist-to-list6How to deserialize Enumarable.ToList<>() to List<>Chris Stavropoulos2009-05-05T18:31:11Z2009-11-18T11:43:41Z
<p>I'm trying to build an object that looks something like this:</p>
<pre><code> public class MyObject
{
private IList<AnotherObject> items;
public List<AnotherObject> Items
{
return items.AsEnumerable().ToList<AnotherObject>();
}
}
</code></pre>
<p>I'm using NHibernate as my DAL and have it mapping directly to the items field and all that works fine.</p>
<p>I'm also using Windows Workflow and the replicator activity doesn't work with the generic IList. (<a href="http://social.msdn.microsoft.com/Forums/en-US/windowsworkflowfoundation/thread/2ca74b60-fd33-4031-be4b-17a79e9afe63" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/windowsworkflowfoundation/thread/2ca74b60-fd33-4031-be4b-17a79e9afe63</a>) This is basically forcing me to use the List<> wrapper instead of the IList<>. This of course breaks the direct NHibernate mapping as NHibernate's IList implementation can't be cast directly to a List.</p>
<p>** EDIT: The Windows Workflow requirement actually means I'm going to lose type-safe access to the list no matter what as it requires an IList.</p>
<p>Now the goal is to serialize/deserialize this object. This works fine with binary serialization but the underlying NHibernate proxy objects explode with nhibernate errors when I try to deserialize them.</p>
<p>So I tried xml serialization. The serialization works fine and gives me my nice concrete class definitions in the serialized xml file which strips out the nhibernate proxies completely. However, when attempting to deserialize this, I'm unable to add the items to the list as the items.AsEnumerable.ToList call won't let items get added to the underlying list via the .Add method.</p>
<p>Does anyone have any thoughts on this? Am I going about this the wrong way? </p>
<p>** EDIT: The NHibernate concrete class is NHibernate.Collection.Generic.PersistentGenericBag which does indeed implement IList directly. However, I lost all the type-safe benefits of the generic list. This puts me back in the realm of having to write a wrapper for each child object and I really wanted to avoid that if possible.</p>
http://stackoverflow.com/questions/1755178/how-can-i-deserialise-an-xml-element-into-an-array-of-elements-with-both-attribut4How can I deserialise an XML element into an array of elements with both attributes and text in C#?Nat Ryall2009-11-18T10:49:56Z2009-11-18T11:06:05Z
<p>I am having a problem trying to deserialise this XML:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<links>
<link title="ABC">http://abc.co.uk</link>
<link title="eBay">http://ebay.co.uk</link>
<link title="Best Damn Site on the Web">http://stackoverflow.com</link>
</links>
</code></pre>
<p>Using the code:</p>
<pre><code>[XmlRoot("links")]
public class LinksInterface
{
[XmlElement("link")]
public List<LinkElement> Links;
public class LinkElement
{
[XmlAttribute("title")]
public string Title;
[XmlText] // This bit is the troublesome bit!
public LinkElement Link;
}
}
</code></pre>
<p>Basically, I need to put the text contents of the element into <code>Links.Link</code> but the attribute I am trying <code>[XmlText]</code> does not provide the behaviour I'd expect and I get the error: </p>
<p><em>There was an error reflecting field 'Links'.</em>. </p>
<p>If anyone could point out the error of my ways, I would be most grateful!</p>
<p>Thanks.</p>