Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
4k views

using XmlArrayItem attribute without XmlArray on Serializable C# class

I want XML in the following format: <configuration><!-- Only one configuration node --> <logging>...</logging><!-- Only one logging node --> ...
7
votes
2answers
410 views

Best Practice for Serialize/Deserialize from Java to XML

What is the most appropriate way to serialize Java Classes to XML? I tried JAXB, but it has issues with Interfaces and Generics. What solution is least intrusive but scalable?
5
votes
1answer
245 views

C# deserializing xml with multiple possible namespaces

I created an API wrapper class library for consuming a rest API from a 3rd party. It was all working until they recently updated the API in the latest version of their product and added a namespace ...
5
votes
4answers
208 views

Xml Serialization in C#

I'm trying to follow a microsoft tutorial about XML serialization, but I getting some problems!! This is XML file, used as input: <?xml version="1.0" encoding="utf-8"?> <Books ...
5
votes
1answer
452 views

XML Deserialization in VB/VBA

I have a set of VBA classes in an MS Access database. I have an xml string with data I want to create new classes with. Other than setting each property individually, is there an easy way to ...
4
votes
3answers
102 views

XML-Deserialization of double value with German decimal separator in C#

i'm trying to deserialize a Movie object from a "German" xml string: string inputString = "<?xml version=\"1.0\"?>" + "<movie title=\"Great Bollywood Stuff\">" + ...
4
votes
4answers
312 views

Best way to deserialize this XML into an object

In other examples I've seen that are similar to mine, there is a root node, then an array node, and then a bunch of array items. My problem is, my root node is my array node, so examples I've seen ...
4
votes
3answers
953 views

How do I use an XmlSerializer to deserialize an object that might be of a base or derived class without knowing the type beforehand?

In C#, how do I use an XmlSerializer to deserialize an object that might be of a base class, or of any of several derived classes without knowing the type beforehand? All of my derived classes add ...
4
votes
3answers
817 views

Best way to parse xml in Appengine with Python

I am connecting to isbndb.com for book information and their response looks like this: <?xml version="1.0" encoding="UTF-8"?> <ISBNdb server_time="2005-02-25T23:03:41"> <BookList ...
4
votes
1answer
273 views

Using XML decorations to specify default values during de-serialization

I have a problem deserializing some XML; the XML supplied by a third party is quite verbose, so if there is no value set for an particular element, it will supply and empty element (e.g. <element1 ...
4
votes
2answers
1k views

Why does the OnDeserialization not fire for XML Deserialization?

I have a problem which I have been bashing my head against for the better part of three hours. I am almost certain that I've missed something blindingly obvious... I have a simple XML file: <?xml ...
4
votes
1answer
596 views

C# XML string element with Name attribute

I am trying to create a c# object for serialization/deserialization with a string property. The property needs to generate an element and also have an attribute: eg: ... <Comment ...
3
votes
1answer
48 views

How avoid exception deserializing an invalid enum item?

For simplicity purposes here, I will show my sample code using fruit. In actuality I am doing something more meaningful (we hope). Let say we have an enum: public enum FruitType { Apple, ...
3
votes
3answers
165 views

XML Deserialization of string elements with newlines in C#

I can't seem to figure out why this test doesn't pass The test is: given the following XML: <?xml version="1.0" encoding="utf-8"?> <foo> <account> 1234567890 </account> ...
3
votes
3answers
823 views

Deserialize multiple XML elements with the same name through XmlSerializer class in C#

I have an XML in the form <BackupSchedule> <AggressiveMode>0</AggressiveMode> <ScheduleType>0</ScheduleType> ...
3
votes
2answers
151 views

How can I deserialize an XML, when I only know the type of an ancestor class?

Let's assume I want to deserialize this (I've removed the namespaces to make things simpler): <TextField> <Caption>Location</Caption> <Name>Location</Name> ...
3
votes
1answer
389 views

Xml Deserialization - after unknown node in xml-data, all fields remain empty

i want to deserialize a xml-string to an object using XmlSerializer. The xml-string contains additional unknown nodes, which are not covered by my object-class i want to deserialize to. After ...
3
votes
5answers
816 views

deserializing enums

I have an xml in which one of the elements has an attribute that can be blank. For e.g., <tests> <test language=""> ..... </test> </tests> Now, language is enum type in the ...
3
votes
6answers
309 views

Get an element from List<T> based on ID

This question is related to this question: Given System.Type T, Deserialize List Given this function to retrieve a list of all elements... public static List<T> GetAllItems<T>() { ...
3
votes
2answers
235 views

Slightly non-trivial data structure: is XmlSerializer right for me?

I'm currently using XmlSerializer to, surprisingly enough :), handle de/serialization of my data structures - I find it wonderfully simple to use, but at the cost of flexibility. At the moment, I'm ...
3
votes
3answers
2k views

XStream: How do I map xml mixed attributes and elements to POJOs?

This must be a newbie question, but I could not get it from http://xstream.codehaus.org. Well, I have the following xml string <cat age="4" > <name>Garfield</name> </cat> ...
2
votes
1answer
29 views

How to desterilize the xHtml text using XmlSerializer?

Below is my code. [XmlRootAttribute("book")] public class BookHtml { [XmlElement("book-id")] public string BookId { get; set; } [XmlElement("book-xhtml")] public BookHtmlMetadata ...
2
votes
3answers
44 views

XML Deserialization without specifying XmlRootAttribute

here is my xml : <connections total="2" > <person> <id>ohKiUAZWz2</id> <first-name>ミ★нιяαℓ</first-name> ...
2
votes
4answers
101 views

How to deserialize two different xmls files into two different class-objects in C#?

Suppose I have two different xml files as embedded-resource in a same assembly: x.xml <car brand="Hummer"> <type ... /> <chasis ... /> </car> y.xml <shark ...
2
votes
2answers
81 views

Deserialize element value as string although it contains mixed content

Assuming an XML like this: <my:Root xmlns:my="http://foo/bar"> <my:FieldBasic>content</my:FieldBasic> <my:FieldComplex> <html xml:space="preserve" ...
2
votes
4answers
78 views

C# Xml deserialization with custom type member

I have an object to deserialize but the object has custom type ApplicationLanguage that cannot be serialize. [Serializable] public class FieldTranslation { // how is this ...
2
votes
1answer
130 views

XMLSerializer: Deserializing as derived type

I've got my fingers crossed that someone out there has a good understanding of the Microsoft XmlSerializer. Basically, I have built a system for outputting XML on the back of the serializer which is ...
2
votes
1answer
185 views

XStream - unmarshalling - Type specified in XML not visible

I have some XML files stored by XStream a while ago, and they include references to RandomAccessSubList, a class which is not visible beyond the package level and has no default constructor so XStream ...
2
votes
1answer
104 views

Can't use XMLGregorianCalendar in Android, even if it is documented?

I really can't understand this one: it looks like Android has the XMLGregorianCalendar class, because it is documented here. But if you go ahead and try to use it, that's what you get: 10-27 ...
2
votes
1answer
110 views

C# - Xml Element with attribute and node value

I have some Xml that I need to deserialize into an object. The Xml is: <Person> <Type id="1234">Bob</Type> </Person> and the classes are: public class Person { public ...
2
votes
1answer
135 views

C# class from xml

I am using xsd to generate classes from an xml file. It is working ok but there is one part of the xml file that is not being generated as I would like. Here is a sample section of the xml: ...
2
votes
3answers
225 views

Is it possible in XSL to flatten XML hierarchy?

I have the following structure to XML file: <INSTANCE> <Sections> <Section> <Forms> <Form> <Control id="GroupHeading1"> ...
2
votes
2answers
232 views

When is the class constructor called while deserialising using XmlSerializer.Deserialize?

My application saves a class away using XmlSerializer, and then later when required, creates an instance by deserialising it again. I would like to use some property members of my class (assigned ...
2
votes
1answer
290 views

XmlNodeReader returns {None}

I'm currently having trouble deserializing an XmlDocument from a web service call, here is my code : - public void getTest(XmlDocument requestDoc) { XmlDocument results = new ...
2
votes
1answer
307 views

Deserialization with Axis 2

I have some Java code that takes an XML (SOAP) message and returns the deserialized object: public static <T> T deserializeObject(String xml, Class<T> clazz) throws AxisFault, Exception { ...
2
votes
1answer
581 views

How to ignore unused XML elements while deserializing a document?

I'm using SimpleXml to (de)serialize POJOs. Now, I have a big XML which has some elements which are not needed. For instance, with this XML: <Root> <Element>Used</Element> ...
2
votes
1answer
198 views

Problem in C# Xml deserialization

In my project, legacy code generates xml which has following structure : <Output> <Template recordID=12> <Employer type="String"> ...
2
votes
1answer
768 views

Loading a serialized DataTable in PowerShell - Gives back array of DataRows not a DataTable

I'm trying to save and load a DataTable in PowerShell. I save it like this: $dt | Export-CliXml -path "c:\exports\data.xml" and load it like this: $dt = Import-CliXml -path "c:\exports\data.xml" ...
2
votes
2answers
116 views

Not being able to deserealize this XML

Just for some fun I was playing with the API of Last.fm. The XML file they return for top artists is structured like this: <lfm status="ok"> <topartists user="xbonez" type="overall"> ...
2
votes
0answers
483 views

Unmarshalling SOAP Envelope from file in Java

I want to unit-test the mapper objects that map/translate web service types generated by wsimport in to my own domain objects. I also want to test error-scenarios, such as SOAP faults and such, and I ...
2
votes
2answers
117 views

C# XML De serialization and arrays

There is next xml file: <element Name="root"> <SubFields> <element Name="subroot"> <SubFields> <element1 Name="element1" customatt1 ...
2
votes
2answers
424 views

Deserialize XMLto array of objects, or singular object

I'm trying to write a generic method that can be used to deserialize xml to an array of objects. Given XML that looks like so: <people> <person> ...
2
votes
2answers
122 views

Question about XML deserialization in .net

I'm trying to deserialize an XML that comes from a web service but I do not know how to tell the serializer how to handlke this piece of xml: <Movimientos> <Movimientos> ...
2
votes
1answer
425 views

XML Deserialization of complex object

I have xml structure like this: <Group id="2" name="Third" parentid="0" /> <Group id="6" name="Five" parentid="4" /> <Group id="3" name="Four" parentid="2" /> <Group id="4" ...
1
vote
3answers
50 views

c# Deserialize XML nested collections

Hi I have some XML I wish to deserialise to .NET POCOs using the XMLSerializer the xml looks like this: <?xml version="1.0" encoding="UTF-8"?> <message ...
1
vote
1answer
115 views

How can I cast or deserialize SoapObject to my object?

I have a .Net Webservice that returns a simple serialized object. I Have the following code to get response from my .Net webservice. How can I deserialize returned XML to my object? I want to return ...
1
vote
1answer
42 views

Deserializing a collection with XmlSerialize results in empty collection

I'm trying to deserialize the following XML document: <?xml version="1.0" encoding="utf-8" ?> <TestPrice> <Price> <A>A</A> <B>B</B> ...
1
vote
1answer
31 views

Xml deserializing with meta datas

I want to deserialize this Xml : <Content id="1"> <Element key="Description">Bla bla bla</Element> <Element key="Title">The title</Element> </Content> ...
1
vote
1answer
40 views

How can XML Deserializer be configured to pick up an attribute? [closed]

Possible Duplicate: Deserializing XML, how do I access attributes? I am deserializing the following XML: <root> <foo> some content </foo> <bar ...
1
vote
2answers
57 views

Parsing xml element to class

I have xml document (you may look it up here) from web request. I need to get values of ccy, base_ccy, buy and sale attributes from each "exchangerate" element: <exchangerate ccy="EUR" ...

1 2 3 4