2
votes
1answer
16 views
.NET XmlSerializer Compiling Type Schemas Reader/Writer
For my application, I need to serialize data to file using XML, so I read Introducing XML Serialization on MSDN. One thing that concerns me is under the Security Considerations for XmlSerializer …
0
votes
1answer
24 views
Serializing object with no namespaces using DataContractSerializer
How do I remove XML namespaces from an object's XML representation serialized using DataContractSerializer?
That object needs to be serialized to a very simple output XML.
Latest & greatest - …
1
vote
2answers
60 views
Incomplete XML attribute
I am creating XML out of Dataset by dataset.GetXML() method.
I want to add attributes to it
XmlAttribute attr = xmlObj.CreateAttribute("xmlns:xsi");
attr.Value = …
0
votes
2answers
30 views
Render Empty XML Elements as Parent Elements
I have a strange requirement where an application consuming some XML that my application is generating actually needs empty elements to be serialized as parent elements. For example: <element …
0
votes
0answers
37 views
Pre-generating XmlSerializers using Sgen and ILMerge. Trouble with arrays.
I use XmlSerializer extensively and rather than allowing .NET to generate the necessary serialization assemblies at runtime, I'd like to generate these assemblies ahead of time and bundle them with my …
0
votes
2answers
17 views
.NET WebService Sending Large XML File
I have a list of objects List that I need to send over a web service. The list contains about 37,000 Objects. This translates to about a 125 MB XML File if I serialized it to XML.
I think by …
1
vote
2answers
31 views
XML Deserialization of carriage returns causes unprintable characters
Situation: When I deserialize XML that contains carriage returns, the characters appear as unprintable character "boxes" rather than as carriage returns.
Background: User input collected via a …
0
votes
2answers
35 views
How to serialize and save an object to database as Xml using Linq to SQL
I were using FileStream to Serialize an Object to Xml and Save to the disk
Stream str = new FileStream(@"serializedstate.xml", FileMode.OpenOrCreate)
XmlSerializer x = new …
0
votes
4answers
68 views
Quick and dirty reflection based XML Serializer
Does anyone know of a quick and dirty implementation of a reflection based XML serializer?
I am looking to rip out my XML serialization code due to the horrid start up time. I know about sgen.exe …
1
vote
2answers
33 views
XML file reading error
Hello, help me please i'm having the following issue:
I'm trying to read a XML file that looks like this:
<service />
<parameters>
<parametro nombreParametro="payment" …
2
votes
6answers
82 views
How can i generate xml from an object hierarchy?
I have object, tree/model/hierarchy, whatever the correct term is. It consists of what could be characterized as a one-to-one mapping of the desired XML.
That is i have the following (in a …
1
vote
1answer
50 views
XML alternative of Text.JSON.Generic for Haskell
Is there any XML-(de)serializer for Haskell using Data/Typeable with functions similar to
toXml :: Data d => d -> XmlValue
fromXml :: Data d => String -> Result d
in the spirit of …
0
votes
3answers
77 views
XmlSerializer doesn’t serialize everything in my class
I have a very basic class that is a list of sub-classes, plus some summary data.
[Serializable]
public class ProductCollection : List<Product>
{
public bool flag { get; set; }
public …
1
vote
2answers
52 views
Castor and sockets
I'm new to Castor and data binding in general. I'm working on an application that, in part, needs to take data off of a socket and unmarshall the data to make POJOs. Now, I've got the socket stuff …
0
votes
1answer
47 views
Is there an easier way to deserialize similar XML files?
I am writing a class library which abstracts data contained in XML files on a web site. Each XML file uses the same root element: page. The descendant(s) of page depend on the specific file that I am …
