473,761 Members | 10,276 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

InvalidCastExce ption upon serializing IXmlSerializabl e class

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 contain Exceptions, so I've decided to
implement IXmlSerializabl e to get round the fact that Exception is not
serializable.

Here's the implementation code from the (abstract) superclass:

#region IXmlSerializabl e Members

public void WriteXml(System .Xml.XmlWriter writer)
{
writer.WriteAtt ributeString(Xm lNamespaces.Xml SchemaInstance. Prefix,
"type", XmlNamespaces.X mlSchemaInstanc e.Uri.ToString( ),
this.GetType(). Name);
WriteAdditional ContentXml(writ er);
}

public System.Xml.Sche ma.XmlSchema GetSchema()
{

XmlSchema schema = new XmlSchema();
schema.Id = this.GetType(). FullName;
schema.TargetNa mespace = XmlNamespaces.S ervice.Uri.ToSt ring();

schema.Namespac es.Add(XmlNames paces.Service.P refix,
XmlNamespaces.S ervice.Uri.ToSt ring());
schema.Namespac es.Add(XmlNames paces.XmlSchema Instance.Prefix ,
XmlNamespaces.X mlSchemaInstanc e.Uri.ToString( ));

XmlSchemaComple xType state = new XmlSchemaComple xType();
state.Name = this.GetType(). Name;
schema.Items.Ad d(state);

XmlSchemaSequen ce sequence = new XmlSchemaSequen ce();
sequence.MinOcc urs = 0;
sequence.MaxOcc urs = 1;

AddSchemaConten t(schema, sequence);

if (sequence.Items .Count > 0)
{
state.Particle = sequence;
}

schema.Compile( new ValidationEvent Handler(schemaV alidationHandle r));

return schema;
}

public virtual void ReadXml(System. Xml.XmlReader reader)
{
}

protected virtual void WriteAdditional ContentXml(XmlW riter writer)
{
}

protected virtual void AddSchemaConten t(XmlSchema schema,
XmlSchemaSequen ce parentSequence)
{
}

private void schemaValidatio nHandler(object sender,
ValidationEvent Args args)
{
Trace.WriteLine (args.Message);
Debug.Fail(args .Message + ":" + Environment.New Line +
Environment.New Line + args.Exception. ToString() + Environment.New Line +
Environment.New Line);
}

#endregion

The problem is this. I can (de)serialize whichever type is specified as
the first argument in the XmlSerializer constructor. However, attempts
to serialize any types that are specified in the additional types
argument fail with an InvalidOperatio nException ("There was an error
generating the XML document"), the inner exception of which is an
InvalidCastExce ption ("Specified cast is not valid"), and the stack
trace of which is:

at System.Xml.Seri alization.XmlSe rializer.Serial ize(XmlWriter
xmlWriter, Object o, XmlSerializerNa mespaces namespaces, String
encodingStyle)
at System.Xml.Seri alization.XmlSe rializer.Serial ize(XmlWriter
xmlWriter, Object o)
at
Limit.Company.L ossAdjustment.T ests.State.Stat esTest.serializ e(FeeState
state, XmlSerializer serializer) in
q:\projects\lim it\limit.compan y.lossadjustmen t.tests\state\s tatestest.cs:li ne
131
at
Limit.Company.L ossAdjustment.T ests.State.Stat esTest.XmlSeria lizeErrorState( )
in
q:\projects\lim it\limit.compan y.lossadjustmen t.tests\state\s tatestest.cs:li ne
71
--InvalidOperatio nException
at
Microsoft.Xml.S erialization.Ge neratedAssembly .XmlSerializati onWriter1.Write 1_State(Object
o)

Furthermore, if I explicitly create XML that matches the schema of one
of the additional types, it deserializes, but to the type that was
specified as the FIRST argument of the XmlSerializer constructor. I
guess this means that I have problems with my schemas somewhere, but
I'm at a loss as to how to fix them.

Many thanks in advance,

Matt

Nov 12 '05 #1
1 2170
okay - i have figured out what the problem is, and it is nothing to do
with the IXmlSerializabl e interface.

basically, I was trying to use the XmlSerializer in a manner whereby I
would specify that the object I was passing it was any of types A, B, C
or D. it can't handle this. you must specify the type you are passing
it to serialize and then only ever pass it this type. this main type
can contain the other types as part of an object graph, but that's as
far as it goes.

why does it need to know the type you're passing it anyway? surely that
it is marked serializable is enough..
ma****@tiscali. co.uk wrote:
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 contain Exceptions, so I've decided to
implement IXmlSerializabl e to get round the fact that Exception is not serializable.

Here's the implementation code from the (abstract) superclass:

#region IXmlSerializabl e Members

public void WriteXml(System .Xml.XmlWriter writer)
{
writer.WriteAtt ributeString(Xm lNamespaces.Xml SchemaInstance. Prefix,
"type", XmlNamespaces.X mlSchemaInstanc e.Uri.ToString( ),
this.GetType(). Name);
WriteAdditional ContentXml(writ er);
}

public System.Xml.Sche ma.XmlSchema GetSchema()
{

XmlSchema schema = new XmlSchema();
schema.Id = this.GetType(). FullName;
schema.TargetNa mespace = XmlNamespaces.S ervice.Uri.ToSt ring();

schema.Namespac es.Add(XmlNames paces.Service.P refix,
XmlNamespaces.S ervice.Uri.ToSt ring());
schema.Namespac es.Add(XmlNames paces.XmlSchema Instance.Prefix ,
XmlNamespaces.X mlSchemaInstanc e.Uri.ToString( ));

XmlSchemaComple xType state = new XmlSchemaComple xType();
state.Name = this.GetType(). Name;
schema.Items.Ad d(state);

XmlSchemaSequen ce sequence = new XmlSchemaSequen ce();
sequence.MinOcc urs = 0;
sequence.MaxOcc urs = 1;

AddSchemaConten t(schema, sequence);

if (sequence.Items .Count > 0)
{
state.Particle = sequence;
}

schema.Compile( new ValidationEvent Handler(schemaV alidationHandle r));

return schema;
}

public virtual void ReadXml(System. Xml.XmlReader reader)
{
}

protected virtual void WriteAdditional ContentXml(XmlW riter writer)
{
}

protected virtual void AddSchemaConten t(XmlSchema schema,
XmlSchemaSequen ce parentSequence)
{
}

private void schemaValidatio nHandler(object sender,
ValidationEvent Args args)
{
Trace.WriteLine (args.Message);
Debug.Fail(args .Message + ":" + Environment.New Line +
Environment.New Line + args.Exception. ToString() + Environment.New Line + Environment.New Line);
}

#endregion

The problem is this. I can (de)serialize whichever type is specified as the first argument in the XmlSerializer constructor. However, attempts to serialize any types that are specified in the additional types
argument fail with an InvalidOperatio nException ("There was an error
generating the XML document"), the inner exception of which is an
InvalidCastExce ption ("Specified cast is not valid"), and the stack
trace of which is:

at System.Xml.Seri alization.XmlSe rializer.Serial ize(XmlWriter
xmlWriter, Object o, XmlSerializerNa mespaces namespaces, String
encodingStyle)
at System.Xml.Seri alization.XmlSe rializer.Serial ize(XmlWriter
xmlWriter, Object o)
at
Limit.Company.L ossAdjustment.T ests.State.Stat esTest.serializ e(FeeState state, XmlSerializer serializer) in
q:\projects\lim it\limit.compan y.lossadjustmen t.tests\state\s tatestest.cs:li ne 131
at
Limit.Company.L ossAdjustment.T ests.State.Stat esTest.XmlSeria lizeErrorState( ) in
q:\projects\lim it\limit.compan y.lossadjustmen t.tests\state\s tatestest.cs:li ne 71
--InvalidOperatio nException
at
Microsoft.Xml.S erialization.Ge neratedAssembly .XmlSerializati onWriter1.Write 1_State(Object o)

Furthermore, if I explicitly create XML that matches the schema of one of the additional types, it deserializes, but to the type that was
specified as the FIRST argument of the XmlSerializer constructor. I
guess this means that I have problems with my schemas somewhere, but
I'm at a loss as to how to fix them.

Many thanks in advance,

Matt


Nov 12 '05 #2

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

Similar topics

1
303
by: Waz | last post by:
I'm having some problems serializing a class that contains a collection. Creating the TestClass below and then calling its Serialize method throws the error: There was an error reflecting 'TestApp.TestClass' If I use place an over the TheDeliveryList property it works fine. Another option may be to implement the IXmlSerializable interface but I was hoping that this would not be necessary.
1
4220
by: Gregory Khrapunovich | last post by:
Hi, I have a class that contains user configuration settings and I would like to save it on disk when program exits and restore data when program starts. XmlSerializer seems like a natural choice. And it works fine. There is only one problem. All members of the class must be declared public in order to be serialized. It breaks the encapsulation and can potentially be a problem (some members should only be set through functions because...
0
1899
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 and has for each property in the base object an extra boolean property. That extra properties tells wether to include the base property in the final export (= webservice) or not. That is because not all the properties may be exposed all the time...
1
4422
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 intended for use, but I think this is the only solution for my situation. I searched the web, in the hope finding the answer, without any luck, so my final hope is with you. Let me explain the situation: I have an 'export'-wrapper to my regular...
2
37223
by: Jayne | last post by:
I'm building a Web Service with the CLR 2.0 that returns a DataTable but I get the followng error: System.InvalidOperationException: There was an error generating the XML document. ---> System.InvalidOperationException: Cannot serialize the DataTable. DataTable name is not set. at System.Data.DataTable.WriteXmlSchema(XmlWriter writer, Boolean writeHierarchy) at...
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 of time for any help or feedback. Cheers, Peter
2
697
by: she_prog | last post by:
I have a class derived from UserControl. I need to serialize an object of this class, but only some properties of it, as not all properties are serializable (some of the properties coming from UserControl are like that). When serializing, how could I ignore all the properties coming from the UserControl class? I know there is XmlIgnoreAttribute, but how could I set it to every property of UserControl, as it is not my class? Thank you...
2
3560
by: ilitirit | last post by:
Can anyone explain why the following program doesn't work? The attributes and elements of the MessageList class are not being generated. Am I doing something incorrectly? Or if this is a bug in .NET, is there a known workaround? using System;
4
3565
by: roynevo | last post by:
Hi, I'm trying to deserialize an object on the context of a remoting call (RPC). The deserialization seem to work fine, however when I'm casting the result to the relevant class I get an InvalidCastException. Note: * the remoting server has TypeFilterLevel to Full to remove security restrictions.
0
10115
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9957
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9905
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9775
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8780
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5229
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 last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3881
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 we have to send another system
3
3456
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2752
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.