473,503 Members | 1,727 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

XML Deserialization (IXmlSerializable implementation)

To whoever can help,

I've been having a problem with XML deserialization lately.

I needed to serialize and deserialze two objects which inherited from
Hashtable. Because IDictionary implementations cannot be serialized, I had
to take matters into my own hands by implementing a wrapper over the
Hashtable which implemted IXmlSerializable.

I called it XmlHashtable. It has, among other convenience methods, a method
called ReadXml(XmlReader) and a method called WriteXml(XmlWriter). This is
an abstract class which also contains two abstract properties which return
strings so I could have inheriting classes choose the names they wish for the
root element name and the name for individual items.

I implemented my own, because though I've seen code on the web which is
similar, I needed to be able to use actual objects as values, and not just
strings. This code works with any Type you wish to put into the Hashtable
that is available at runtime. I've tested it with both native Types and some
of my user defined types.

The code looks like this:
<code>
[XmlType( "XmlDict" )]
public abstract class XmlHashtable : Hashtable, IXmlSerializable {
/// <summary>
/// Returns the local name of the root node for the class. Implementing
/// classes must override this property.
/// </summary>
protected abstract string LocalName {get;}
/// <summary>
/// Returns the local name of the name of items in the dictionary.
/// Implementing classes must override this property.
/// </summary>
protected abstract string ItemType { get;}
/// <summary>
/// Generates an <see cref="XmlHashtable"/> from its XML representation.
/// </summary>
/// <param name="reader">The <see cref="XmlReader"/> from which the
/// object is deserialized</param>
public void ReadXml ( System.Xml.XmlReader reader ) {
try {
string key = null;
object value = null;
Type type = null;

reader.ReadToFollowing ( LocalName );
if ( reader.IsStartElement ( LocalName ) ) {
reader.ReadStartElement ( LocalName );

while ( reader.NodeType != XmlNodeType.EndElement ) {
key = reader.GetAttribute ( "Key" );
type = Type.GetType ( reader.GetAttribute ( "Type" ) );
reader.ReadStartElement ( ItemType );
reader.ReadStartElement ( "Value" );
XmlSerializer serializer = new XmlSerializer ( type );
value = serializer.Deserialize ( reader.ReadSubtree( ) );
this.Add ( key, value );
reader.ReadEndElement ( ); // Reading end node for Name
reader.ReadEndElement ( ); // Reading end node for Value
reader.ReadEndElement ( ); // Reading end node for
Element
reader.MoveToContent ( );
}

reader.ReadEndElement ( ); // Reading end root node
}
}

catch ( XmlException e ) {
throw new XmlException ( "XmlDictionary.ReadXml(XmlReader)
reader pointing to invalid element", e );
}
}

/// <summary>
/// Converts an <see cref="XmlHashtable"/> object into its XML
/// representation.
/// </summary>
/// <param name="writer">The <see cref="XmlWriter"/> stream to which the
/// object is serialized</param>
public void WriteXml ( System.Xml.XmlWriter writer ) {
writer.WriteStartElement ( LocalName );
foreach ( DictionaryEntry de in this ) {
writer.WriteStartElement ( ItemType );
writer.WriteAttributeString ( "Key", de.Key.ToString ( ) );
writer.WriteAttributeString ( "Type", de.Value.GetType (
).FullName );
writer.WriteStartElement ( "Value" );
XmlSerializer serializer = new XmlSerializer ( de.Value.GetType
( ) );
serializer.Serialize ( writer, de.Value );
writer.WriteEndElement ( );
writer.WriteEndElement ( );
}

writer.WriteEndElement ( );
}
}
</code>

The inheriting classes must use the [XmlSchemaProvider( "GetXmlSchema" )]
attribute, which they do as shown here:

<code>
/// <summary>
/// Adds the XML schema to the <see cref="XmlSchemaSet"/> and returns
/// the fully qualified name for the <see cref="AssetProperties"/>
/// root element.
/// </summary>
/// <param name="set">The <see cref="XmlSchemaSet"/> to add the schema
/// to</param>
/// <returns><see cref="XmlQualifiedName"/> representing the
/// schema for this type</returns>
public static XmlQualifiedName GetXmlSchema ( XmlSchemaSet set ) {
XmlSchemaAttribute attribute;
XmlSchemaSequence sequence;
XmlSchemaElement element;

XmlSchemaComplexType itemType = new XmlSchemaComplexType ( );
itemType.Name = ItemType + "Type";

// create the "Key" attribute and add it to the complex item type
attribute = new XmlSchemaAttribute ( );
attribute.Name = "Key";
attribute.SchemaTypeName = new XmlQualifiedName ( "string",
"http://www.w3.org/2001/XMLSchema" );
attribute.Use = XmlSchemaUse.Required;
itemType.Attributes.Add ( attribute );

// create the "Type" attribute and add it to the complex item type
attribute = new XmlSchemaAttribute ( );
attribute.Name = "Type";
attribute.SchemaTypeName = new XmlQualifiedName ( "string",
"http://www.w3.org/2001/XMLSchema" );
attribute.Use = XmlSchemaUse.Required;
itemType.Attributes.Add ( attribute );

sequence = new XmlSchemaSequence ( );

element = new XmlSchemaElement ( );
element.Name = "Value";
element.SchemaTypeName = new XmlQualifiedName ( "anyType",
"http://www.w3.org/2001/XMLSchema" );

sequence.Items.Add ( element );
itemType.Particle = sequence;

XmlSchemaComplexType assetPropertiesType = new
XmlSchemaComplexType ( );
assetPropertiesType.Name = LocalName + "Type";

// create "AssetPropertiesType" schema type for
"AssetProperties" element
sequence = new XmlSchemaSequence ( );
element = new XmlSchemaElement ( );
element.Name = XmlCoreTypes.AssetProperties.ItemType;
element.MaxOccursString = "unbounded";
element.MinOccursString = "0";
element.SchemaTypeName = new XmlQualifiedName ( itemType.Name,
"http://mediaframe.com" );
sequence.Items.Add ( element );
assetPropertiesType.Particle = sequence;

element = new XmlSchemaElement ( );
element.Name = LocalName;
element.SchemaTypeName = new XmlQualifiedName (
assetPropertiesType.Name, "http://mediaframe.com" );

// Generate the Schema element itself and set the necessary
properties
XmlSchema schema = new XmlSchema ( );
schema.TargetNamespace = "http://mediaframe.com";
schema.Namespaces.Add ( "mf", "http://mediaframe.com" );
schema.Items.Add ( element );
schema.Items.Add ( itemType );
schema.Items.Add ( assetPropertiesType );

// Add the schema to the set of schemas and compile it
set.XmlResolver = new XmlUrlResolver ( );
set.Add ( schema );
set.Compile ( );

//return element.QualifiedName;
return assetPropertiesType.QualifiedName;
}
</code>

So, serializing and deserializing one of these objects by itself works
perfectly. However, when I try to serialize an array of these objects and
then deserialize it, I only get the first one deserialized before it all
quits on me. The serialization works fine, I can see the XML by putting a
break point before deserializing.

I'm trying to use this in my web services, but it has the same issue whether
I serialize and deserialize manually (with the XmlSerializer) or use the web
services to do it all.

I'm just trying to figure out where I went wrong. Any tips would be
extremely useful.

Thanks,
John Glover
Mar 21 '06 #1
3 4973
Hi John,

Could you show me how you serialize and deserialize the array? I'm trying
to make a repro on my computer so that I can make a better troubleshooting.
Thanks!

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

Mar 22 '06 #2
Kevin,

I'm using the following code to serialize and deserialize which is pulled
from my test class for an object called AssetProperties which implements the
XmlHashtable abstract class from my first post:

<code>
[TestMethod ( )]
public void XmlArraySerializationTest ( ) {
AssetProperties[ ] objA = new AssetProperties[ ] {
<put some code here to initialize the array> };

XmlSerializer serializer = new XmlSerializer ( typeof ( AssetProperties[
] ) );
StringWriter writer = new StringWriter ( );
serializer.Serialize ( writer, objA );
StringReader reader = new StringReader ( writer.ToString ( ) );

AssetProperties[ ] objB = (AssetProperties[ ])serializer.Deserialize (
reader );

Assert.AreEqual ( objA.Length, objB.Length,
objA.GetType ( ).ToString ( ) + " failed XML serialization and
deserialization -- arrays not the same size." );
for ( int i = 0; i < objA.Length; ++i ) {
Assert.AreEqual ( objA[i], objB[i], objA.GetType ( ).ToString ( ) +
" failed XML serialization and deserialization." );
}
}
</code>

However, I think I have figured out what the problem is. Well, at least I
know what to do to make it stop, but I still have a problem. I fixed the
problem by adding a line to my ReadXml(XmlReader) method so that it read an
extra end element at the end, like this:

<code>
/// <summary>
/// Generates an <see cref="XmlHashtable"/> from its XML representation.
/// </summary>
/// <param name="reader">The <see cref="XmlReader"/> from which the
/// object is deserialized</param>
public void ReadXml ( System.Xml.XmlReader reader ) {
try {
string key = null;
object value = null;
Type type = null;

reader.ReadToFollowing ( LocalName );
if ( reader.IsStartElement ( LocalName ) ) {
reader.ReadStartElement ( LocalName );

while ( reader.NodeType != XmlNodeType.EndElement ) {
key = reader.GetAttribute ( "Key" );
type = Type.GetType ( reader.GetAttribute ( "Type" ) );
reader.ReadStartElement ( ItemType );
reader.ReadStartElement ( "Value" );
XmlSerializer serializer = new XmlSerializer ( type );
value = serializer.Deserialize ( reader.ReadSubtree( ) );
this.Add ( key, value );
reader.ReadEndElement ( ); // Reading end node for node inside Value
reader.ReadEndElement ( ); // Reading end node for Value
reader.ReadEndElement ( ); // Reading end node for Property
reader.MoveToContent ( );
}
reader.ReadEndElement( ); // Reading end node for Element
reader.ReadEndElement( ); // Reading extra funny end node
</code>

But the problem still remains that I have this funny root element. I
believe the problem is that my schema is not turning out the way I would
like. The schema looks like this:

<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:tmf="http://thomson.com/MediaFrame"
targetNamespace="http://thomson.com/MediaFrame"
xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:element name="AssetProperties" type="tmf:AssetPropertiesType" />

<xs:complexType name="PropertyType">
<xs:sequence>
<xs:element name="Value" type="xs:anyType" />
</xs:sequence>
<xs:attribute name="Key" type="xs:string" use="required" />
<xs:attribute name="Type" type="xs:string" use="required" />
</xs:complexType>

<xs:complexType name="AssetPropertiesType">
<xs:sequence>
<xs:element minOccurs="0" maxOccurs="unbounded" name="Property"
type="tmf:PropertyType" />
</xs:sequence>
</xs:complexType>

</xs:schema>

So I would have assumed that the root element would be a <AssetProperties>,
but it is not. The root element is <AssetPropertiesType>. This is not what
I expect.

When I manipulate the code to build a schema like this:

<?xml version="1.0" encoding="utf-16"?>
<xs:schema xmlns:tns="http://thomson.com/MediaFrame"
attributeFormDefault="unqualified" elementFormDefault="qualified"
targetNamespace="http://thomson.com/MediaFrame"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="AssetProperties">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" name="Property">
<xs:complexType>
<xs:sequence>
<xs:element name="Value" type="xs:string" />
</xs:sequence>
<xs:attribute name="Key" type="xs:string" use="required" />
<xs:attribute name="Type" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

I get all kinds of errors about a name being required.

Is there a good reference for how to build an XML schema using code from the
XmlSchema namespace?

Any suggestions about what I've done wrong would be extremely helpful.

Thanks,
John

"Kevin Yu [MSFT]" wrote:
Hi John,

Could you show me how you serialize and deserialize the array? I'm trying
to make a repro on my computer so that I can make a better troubleshooting.
Thanks!

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

Mar 22 '06 #3
Hi John,

Have you tried to use XmlRootAttribute for the AssetProperties class?

[XmlRoot(Namespace = "www.contoso.com",
ElementName = "AsseteProperties",
DataType = "string",
IsNullable=true)]

I think this will help you to control the root element name. For more
information, please check the following link:

http://msdn.microsoft.com/library/de...us/cpref/html/
frlrfsystemxmlserializationxmlrootattributeclassto pic.asp

Kevin Yu
=======
"This posting is provided "AS IS" with no warranties, and confers no
rights."

Mar 24 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2155
by: mattoc | last post by:
Happy new year to all. I have a strange error that I've been trying for a while now to fathom.. Basically I have a hierarchy of state classes that I need to serialize to XML. Some of them can...
0
1872
by: Thomas D. | last post by:
Situation: --------------------------- I have an 'export'-wrapper to my regular objects. For each regular object there is also an export object. An export object derives from the regular object...
8
3444
by: ashoksrini | last post by:
Hi All, I have the below requirement and would like to get some feeback from the group on the best way to implement: 1. I have WSDL defined exposing few web services. 2. We dont have a...
1
4397
by: Thomas D. | last post by:
Hello all, I'm using the IXmlSerializable interface for a project and encounter some problems when testing my webservice in a client application. I know this interface is undocumented and not...
0
1063
by: Chris Szabo | last post by:
Good afternoon everyone. I'm running into a problem deserializing a stream using the XmlSerializer. A stored procedure returns the following from SQL Server: <Student StudentId="1" Status="1"...
1
831
by: Peter Nofelt | last post by:
Hey All, I am having issue with serializing a class and its base class using ..net 2.0. I am using IXmlSerializable I've provided code displaying my at the bottom of this post. Thanks ahead...
5
1949
by: Ruben | last post by:
Hi! Is there a way to figure out, if the constructor or the Set-methods of fields are called by the XML-deserilization or by other calls? I would like to bind special behaviour to my class...
3
5251
by: =?Utf-8?B?S2VubmV0aCBILiBCcmFubmlnYW4=?= | last post by:
Hello, I was wondering if there is a way to have the contents of an XML element that contains HTML to be deserialized into the cooresponding string property without the HTML tags being surronded...
2
1100
by: xlar54 | last post by:
Lets say I have an xml document that reads: <Book> <ID> <Title>SomeTitle</Title> <ISBN>12345</ISBN> </ID> </Book> But I want to deserialize it to an object that looks like:
0
7087
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7334
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6993
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7462
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5579
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
4675
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3168
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
1514
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
737
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.