2
votes
1answer
24 views
How can I make the xmlserializer only serialize plain xml?
I need to get plain xml, without the <?xml version="1.0" encoding="utf-16"?> at the beginning and xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www. …
0
votes
1answer
26 views
How would I robustly log binary or XML using slf4j/log4j/java.util.logging?
After doing logging for many years I have now reached a point where I need to be able to postprocess the log files with the long term goal of using the log files as a "transport me …
4
votes
2answers
29 views
How can I deserialise an XML element into an array of elements with both attributes and text in C#?
I am having a problem trying to deserialise this XML:
<?xml version="1.0" encoding="UTF-8"?>
<links>
<link title="ABC">http://abc.co.uk</link>
< …
2
votes
2answers
20 views
Object XmlSerialization with protected property setters
Here is my object
[Serializable()]
public class PersistentObject
{
public virtual int ID {
get { return id; }
protected set { id = val …
0
votes
3answers
58 views
The quest for 0x0B
I get this error when reading some data from an SQL column then converting it to XML:
"System.InvalidOperationException: There is an error in XML document (182, 16). ---> System. …
1
vote
4answers
47 views
Deserialize XML with ampersand using XmlSerializer()
The following code breaks when the XML has data like "Lord & Hogan". Any suggestions?
Thanks, Ken
private T GetResponse<T>(String apiObject, String query)
{
…
0
votes
1answer
14 views
Any benefit to using default attribute when minOccurs attribrute is > 1?
I came across a legacy XSD that has a bunch of lines like...
<xs:element minOccurs="1"
maxOccurs="1"
default="true"
…
0
votes
3answers
111 views
Easier way to serialize C# class as XML text
While trying to answer another question, I was serializing a C# object to an XML string. It was surprisingly hard; this was the shortest code snippet I could come up with:
var yo …
0
votes
0answers
14 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 …
0
votes
1answer
32 views
sqlalchemy REST serialization
Reading the doc of sqlalchemy, i saw the serialization part.
I'm wondering about a possibility to use an xml serializer for matching sa models with Rest webservices like Jax-RS
The …
0
votes
1answer
24 views
C#: serializing linq2sql entities to xml with child nodes.
Hey guys,
I have a WPF application which tightly coupled to linq2sql through WCF. It now turns out the Customer would like some sort of Offline mode using an xml file structure.
…
5
votes
6answers
216 views
.NET XML Serialization and inheritance
I have structure like this:
public interface A
{
public void method();
}
public class B : A
{
}
public class C : A
{
}
List<A> list;
List contains objects of type B …
1
vote
1answer
18 views
Prevent XmlSerializer from emitting xsi:type on inherited types
I have managed to serialize a class that inherits from a base class to XML. However, the .NET XmlSerializer produces an XML element that looks as follows:
<BaseType xsi:Type="D …
0
votes
1answer
39 views
How to load TreeView Serialization into GridView
From a TreeView, I get this XML serialized:
<?xml version="1.0" encoding="utf-16"?><node text="<span id='c6f5ab9e-d08f-448a-9143-02d174317c07' oncontextmenu=&q …
1
vote
2answers
75 views
deserialize the XML Document — Need Help
I am using the below code snippet now to deserialize the XML document ...
[WebMethod]
public XmlDocument OrderDocument(XmlDocument xmlDoc)
{
XmlSerializer serializer = new Xml …
