views:

228

answers:

1

Basically, the initial problem is I need to make a boolean value serialize as 0 or 1. The solution I found was to implement IXmlSerializable, which I did. Unfortunately the class I'm trying to serialize is generated code off a schema and has an XmlTypeAttribute on it. When I try to (de)serialize the object with the XmlSerializer created in the usual manner ( new XmlSerializer(type)) it throws this exception:

System.InvalidOperationException: Only XmlRoot attribute may be specified for the type ______ Please use XmlSchemaProviderAttribute to specify schema type.

Two options come to mind immediatly:

1) remove the attribute in the generated code. This change would have to be made every time the code was re-generated.

2) Use an XmlAttributeOverrides object when creating the serializer to remove the attribute. This would require the rest of the code base to "know" that it needs to override that attribute. Also, the exception thrown gives absolutly no clue as to what needs to be done to fix it.

Both options kinda stink. Is there a third option?

A: 

I have the same problem, for me removing the IXMLSerializable works, I don't use it, and have you tried to hide the true or false with a some logic in the properties? Like this:

bool mblnFlag;

public String Flag { get { if (mblnFlag) return true; else return false; } set { if (value == "1") mblnFlag = true; else mblnFlag = false;

} }

Of course you should enhance the properties and do more checking, but that's the idea

Francisco Lomas
I got around my issue by commenting out the XmlTypeAttribute, however modifying the generating code feels dirty and i was hoping there was a third option that didn't involve modifying generated code.I'm probably just dreaming :(
Josh Sterling