Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
414 views

Xml Serialization Dynamic Ignore

I am trying to generate an xml document in a specific format. I would like to skip serializing a property depending on a value of the property. public class Parent { public Parent() { ...
5
votes
2answers
1k views

C# : WCF Service with IXMLSerializable member turns into DataSet

.NET I have a web service, one of the data members of a message implements IXmlSerializable, when I do "Add Service Reference" that member becomes a DataSet. I am trying to pass a serialized ...
4
votes
1answer
228 views

Namespace Prefixes with IXmlSerializable

Bit confused on the proper decorators to use, or whatever design might be necessary. When serializing a class which is implementing IXmlSerializable is there a way to include the namespace and its ...
4
votes
1answer
99 views

What XML serialization method should I use for a public API?

I'm writing a program that builds up a tree structure made up of classes that inherit from an abstract Node class. There are a number of different type of nodes built into my program. However, I also ...
4
votes
2answers
116 views

Cannot WriteXML for DataTable because Windows Search Returns String Array for Authors Property

The System.Author Windows property is a multiple value string. Windows Search returns this value as an array of strings in a DataColumn. (The column's data-type is string[] or String().) When I call ...
3
votes
2answers
743 views

IXmlSerializable Dictionary problem

I was trying to create a generic Dictionary that implements IXmlSerializable (credit to Charles Feduke). Here is my trial: Sub Main() Dim z As New SerializableDictionary(Of String, String) ...
3
votes
1answer
299 views

Custome XmlSerialization for nested / child objects

I have a scenario in which I have a class Resource which has two other classes nested in it; Action and ResourceURL. I need to write custom xmlserializer for Resource and Action but not for ...
3
votes
1answer
186 views

Should domain objects implement IXmlSerializable?

I'm building a REST API that exposes data as XML. I've got a whole bunch of domain classes in my domain layer that are intended for consumption by both the service layer behind the API, and the client ...
3
votes
1answer
123 views

Will implementing IXMLSerializable create a serializer DLL file in my Temp directory?

Normally, when using the XMLSerializer to automagically serialize an ISerializable object, a .dll file is generated on C:\WINDOWS\Temp. If I implement IXMLSerializable instead, where I'm telling it ...
2
votes
1answer
64 views

serialize and store object in another object that implements IXmlSerializable

I would like to XML serialize instances of my object Exception and store it in the XMLNode[] Nodes property of another object ExceptionReport. [System.Diagnostics.DebuggerStepThroughAttribute()] ...
2
votes
0answers
212 views

XMLDeserialize, “There was an error reflecting type” [closed]

Possible Duplicate: XmlSerializer - There was an error reflecting type XmlSerializer ser = new XmlSerializer(typeof(configType)); There was an error reflecting type ...
2
votes
1answer
152 views

“ReadElementContentAsBase64 method is not supported on this XmlReader”

using System.IO; using System.Runtime.Serialization; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; namespace XmlTest { class TestClass : IXmlSerializable { ...
2
votes
1answer
501 views

IXmlSerializable dictionary in C# without 'Key'/'Value' nodes

I'm trying to serialize a dictionary in C#. All the examples I've been able to find create XML like the following: <Dictionary> <ArrayOfEntries> <Entry> ...
2
votes
1answer
590 views

Using IXmlSerializable interface on complex object graph

If using custom XML Serialization (IXmlSerialiable), on a complex object that contains properties with constituent complex objects which do NOT use custom IXmlSerializable interface, how do you ...
2
votes
1answer
63 views

Is there a way to make a serialized member to serialize as an attribute?

Is there a way to make a serialized member to serialize as an attribute: <Serializable> Public Class Person Public Property Name As String End Class I want than when this class is ...
2
votes
5answers
351 views

Is it possible to exclude some members of a type from XmlSerializer serialization?

I have some public members I don't want to be serialized, was wondering if there is an attribute for it?
1
vote
1answer
83 views

OmitXmlDeclaration in XmlWriter and implementing IXmlSerializable

I want to create custom xml serialization by implementing IXmlSerializable. I've got this test class that implements IXmlSerializable interface: [Serializable] public class Employee : ...
1
vote
1answer
66 views

XmlSerializer saves null-file

I have a problem with serializing my objects. I implemented IXmlSerializable interface and initialize object of XmlSerializer(for example, serializer). But sometimes after calling ...
1
vote
1answer
49 views

IXMLSerializeable

I need to implement IXMLSerializeable for custom serialization on 2 members, but I want the rest of the members to be serialized with the default serialization. Or at least, is there a way for me to ...
1
vote
1answer
580 views

Serialization: Change the name of the root node without changing the class name

Goal Take a class named "Item" and output its serialized XML as: <Template><!--some properties --></Template> Problem The root node is derived off the class name that is ...
1
vote
1answer
140 views

Different return XML in a WCF Operation

I am writing a service to a international HTTP standard, and there is one method that can return three different XML results, call them Single, Multiple and Error. Now I've written an IXmlSerializable ...
1
vote
1answer
447 views

Issue allowing custom Xml Serialization/Deserialization on certain types of field

I've been working with Xml Serialization/Deserialization in .net and wanted a method where the serialization/deserialization process would only be applied to certain parts of an Xml fragment. This is ...
1
vote
1answer
850 views

Implementing IXmlSerializable on a generated class that has XmlTypeAttribute

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 ...
1
vote
2answers
451 views

How to save a datatable if it contains an object that refuses to serialize?

I'm storing GData "Event" objects from the Google API in a datable (Ok, I had to cast them as an object or they wouldn't go in), and I can access all the properties of the events perfectly, and use ...
1
vote
0answers
48 views

Finding References in IXmlSerializable

I am writing elements of a particular type into the outgoing xml using IXmlSerializable. I have implemented the schema, and am writing the items out. The code that follows is an example. public void ...
1
vote
2answers
569 views

How to revert back to 'default' XML serialization when implementing IXmlSerializable in a base class?

I'm trying to serialize a class that inherits from a base class that implements IXmlSerializable. The base class, called PropertyBag is a class that allows dynamic properties (credits to Marc ...
1
vote
2answers
2k views

Custom Serialization using XmlSerializer

I have a class that I need to do some custom XML output from, thus I implement the IXmlSerializable interface. However, some of the fields I want to output with the default serialization except I want ...
1
vote
4answers
1k views

What is the correct way to serialize nullable types?

I'm implementing IXMLSerializable in one of my classes. It contains a few numeric properties that are nullable (int? double? etc..) What is the correct way to serialize/serialize these through ...
1
vote
1answer
915 views

XmlAttributeOverrides further customization

XmlAttributeOverrides is a good way to override some attributes for serialization. MSDN says: You can control and augment the serialization of objects found in a DLL, even if you do not have access to ...
1
vote
1answer
1k views

IXmlSerializable, reading xml tree with many nested elements

Could you guys give me an example how to read and write from/to xml like this: <Foolist> <Foo name="A"> <Child name="Child 1"/> <Child name="Child 2"/> ...
1
vote
2answers
561 views

IXmlSerializable

Could you guys help me I have a problem with deserialization via IXmlSerializable var ArrayOfAccounts = new Accounts(); //This class structure I'm trying to read Class Accounts:List<Session>{ ...
1
vote
3answers
718 views

XML Serialization, in this case, IXmlSerializable or Attributes

I've done some XML serialization before but i used Attributes, I'm not sure this is doable for my next assignment, here's a brief list of XML manip requirementes. General Purpose XMl manipulation, ...
0
votes
0answers
20 views

How to implement iXmlSerializable method WriteXML to obtain desired xml output

ok.. So I've managed to generate my datacontracts using the xsd's provided to me. The resulting output includes the following: [System.Diagnostics.DebuggerStepThroughAttribute()] ...
0
votes
2answers
50 views

IList and custom XML Serialization of nested objects

I am trying to serialize IList. So I am using IXmlSerializable for this. The classes are as follows class SerializeTarget : IXmlSerializable { public IList<Target> Targets { get; set; } ...
0
votes
0answers
39 views

IXmlSerializable Implementation error

I Try to implement IXmlSerializable and faced with error occurs in XMLRead method: System.InvalidOperationException: There is an error in XML document (4, 6). ---> System.InvalidOperationException: ...
0
votes
1answer
141 views

Help with implementing IXmlSerializable on this XML

Here's the XML: <?xml version="1.0" encoding="utf-8" ?> <SAPPHIRE xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ...
0
votes
1answer
117 views

Specifying inheritance in WCF XmlSchema

I'm faced with a situation where I have to implement IXmlSerializable on a datatype, which I'll send through WCF service. But when I try to mark the base class in the xsd, the service reference can no ...
0
votes
1answer
252 views

Dynamic XmlSerializer that identifies the object type from the xml-serialization?

Is there any way to create an XmlSerializer that stores along with the serialized data the data type, then when deserializing, it automatically identifies the type of the serialized object and creates ...
0
votes
1answer
100 views

How does IXmlSerializable let me avoid base64's size inflation?

From MSDN: There are two reasons to implement this interface. The first is to control how your object is serialized or deserialized by the XmlSerializer. For example, you can chunk data into bytes ...
0
votes
1answer
227 views

representing an XML config file with an IXmlSerializable class

I'm writing in C# and trying to represent an XML config file through an IXmlSerializable class. I'm unsure how to represent the nested elements in my config file, though, such as logLevel: <?xml ...
0
votes
0answers
220 views

Cast errors with IXmlSerializable

I am trying to use the IXmlSerializable interface to deserialize an Object (I am using it because I need specific control over what gets deserialized and what does not. See my previous question for ...
0
votes
1answer
304 views

handle null values for string when implementing IXmlSerializable interface

I have the following class that implements IXmlSerializable. When implementing WriteXml(), I need to handle the case where the string members of this class may be null values. What is the best way ...
0
votes
1answer
475 views

Implementing IXmlSerializable for content containing data with or without CDATA tags

I am trying to figure out a way to parse an xml tag where content is passed in with CDATA tags for some input, but not for all. For example, the following is sample content I would receive for data ...
0
votes
2answers
3k views

Exporting WSDL/XSD schemas for data contract types with IXmlSerializable

I'm creating a WCF service which I want to consume from a Java app. But the question isn't about .net-java interop. The key point is one of types related to a service operation is IXmlSerializable. ...
0
votes
1answer
239 views

IXmlSerializable with valid XmlSchema (XMLSchema:schema' element is not declared..)

I am trying to implement IXmlSerializable. My class implements serializable and writes a single string. I wish to be able to export an object graph schema using XsdDataContractExporter (the standard ...