Tagged Questions

1
vote
3answers
26 views

Modify data while serializing

I've got the hierarchial structure of files and folders inside of my application. Application works with absolute paths, which are stored in FileNode.Items list of strings. When i …
0
votes
3answers
58 views

Using xml to load objects. Which is the best approach?

TinyXML I have a XML file that keeps a bunch of data that is loaded into objects. Right now, I have one giant method that parses the XML file and creates the appropriate objects d …
0
votes
2answers
17 views

Replace anyType node from List<Object> xml serialization

Hi, so I'm serializing an object that contains a List<Object> property, and it serializes it like this: <Explorer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xm …
0
votes
1answer
28 views

RoR - Rendering nested errors on XML

Good afternoon, I'm trying to render as XML the complete ActiveRecord error list, problem is when you do something like: respond_to do |format| format.xml { render :xml => …
0
votes
1answer
53 views

XmlReader square brackets causing reader to go to errored state

I have an XmlReader that is trying to read text into a list of elements. I am having trouble getting it to reader the text: "a [ z ]". If I try with the text "a [ z ] " (same but …
1
vote
4answers
56 views

Forbidden characters in xml

I have an object that I am serializing to xml. It appears that a value in one of the properties contains the hex character 0x1E. I've tried setting The Encoding property of XmlWr …
1
vote
2answers
30 views

Using XmlSerializer to serialize derived classes

I'm using XMLSerializer to serialize an object that contains a generic list List <ChildBase> Children {get;set} The problem is that each element derives from ChildBase whic …
3
votes
2answers
51 views

C# Advanced XML Serializer that doesn’t require domain object pollution

Are there any closed or open source projects for a XML serializer for C# that can serialize for the most part any object without the need to pollute my domain objects with tons of …
0
votes
1answer
51 views

How to Use XmlSerializer to Serialize Collections of Objects

Here are the steps I've taken so far to work with an XmlDocument being returned by a 3rd party DLL. I saved the XmlDocument as SegmentationSummary.xml. I used XSD.exe to create …
1
vote
1answer
21 views

DOMImplementationLS serialize to String in UTF-8 in Java

Hi, reading the documentation for java org.w3c.dom.ls it seems as a Element only can be serialized to a String with the java native string encoding, UTF-16. I need however to creat …
0
votes
1answer
30 views

XMl Serialization of Linq-to-Sql objects?

I am working on an Audit Log for an application that uses Linq-To-Sql. I want to serialise an object to stores its values in a XML column in a SQL Server databse. My problem is t …
0
votes
4answers
22 views

.NET: Is There an Interface for Implemented by all XML Serialized objects?

I want a method to return an XML Serialized Typed object. Is there an interface I can use to enforce this requirement?
0
votes
2answers
25 views

Whats better: Deserialise to Object vs Just Xpathing against an XML Doc?

I've been doing alot of XML processing in C# of late and after coming back to C# from a long stint javascript coding I'm really missing some of the nice short cuts of JS. I've go …
0
votes
1answer
32 views

XStream-like XML serialization for Jython objects?

Jython is great for creating custom data structures on need basis, but how to store their instances? Apparently it's possible to do it via java.io.Serializable, but ObjectStreams a …
2
votes
1answer
35 views

.net XML Serialization - Storing Reference instead of Object Copy

In .Net/C# Application, I have data structures which have references to each other. When I serialize them, .Net Serializes all references with separate object copies. In Following …

1 2 3 4 5 28 next
15 30 50 per page