0
votes
3answers
43 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 …
0
votes
1answer
28 views
Using SoapFormatter
Hi I need to serialize several fields of my class
class Foo
{
Guid value1;
decimal value2;
SomeCustomEnum value3;
}
Can I serialize all fields one by one:
MemoryStream ms = new …
1
vote
2answers
29 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" …
1
vote
1answer
34 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 …
2
votes
6answers
75 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 …
0
votes
2answers
42 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
25 views
Serializable class inheriting from an Interface with a property of its own type
I have an interface, with a definintion for a property that is the same type as the interface.
public interface IMyInterface
{
IMyInterface parent
{
get;
set;
}
}
Now …
0
votes
3answers
68 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 …
0
votes
1answer
43 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 …
0
votes
3answers
30 views
customising serialisation of java collections using xstream
I have an object that needs to be serialised as XML, which contains the following field:
List<String> tags = new List<String>();
XStream serialises it just fine (after some aliases) …
0
votes
0answers
6 views
Settable collection properties:
Framework Design Guidelines gives this advice:
DO NOT provide settable collection properties.
But if I don't, I can't see a way to XML serialize anything with a collection property. The …
1
vote
2answers
88 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 …
2
votes
1answer
62 views
Best way to generate a hash signature (HMAC) for XMLSerialized objects in .NET?
I need to generate a HMAC for objects that I am serializing using the XMLSerializer found in the .NET framework. Each object will contain a property called "HMAC" that will contain a hash of the …
0
votes
3answers
32 views
XmlSerializer not populating sub-elements
I've used XSD.EXE to convert an XSD into an object. That works fine and I can Deserialize using XMLSerializer just fine, except that the subelements which are generated as arrays don't populate.
…
0
votes
1answer
117 views
protocol buffers .net (protobuf-net) 10x slower that xml serializer. how come?
the title says it all. i noticed that serialization as well des deserialization takes 10x as lang with protobuf-net compared to XmlSerializer. the output files however are much smaller. i find this …
