Tagged Questions
1
vote
1answer
26 views
How do you deserialize a simple xml node value into a composite type?
I have xml that looks something like this:
<Policy>
<Number>10-13-123123</number>
</Policy>
And a types like this:
class Policy
{
[DataMember]
PolicyNumber Number ...
0
votes
1answer
24 views
GeoLocation data type incompatibility between odata service and it's .Net generated client side proxy
I am trying to do a proof of concept with the odata compliant cloud database feature of JayStorm. So far it's going great, but I have one big problem that fits in the category of odata service client ...
0
votes
1answer
37 views
How to achieve dynamic partial XML class serialization in .Net?
I would love to use default .Net xml serializer to save my data into simple xml format. I have an enum MemberCode { feild1 = 1, feild2 = 2 /*...*/} at runtime I generate a List<MemberCode> of ...
1
vote
2answers
51 views
C# Deserialze XML to an Object
I am trying to deserialize xml to an object using C#.
This is my XML.
<Products>
<Product>
<Name>Test</Name>
<Price Amount="12.95">£ 12.95</Price>
...
1
vote
2answers
51 views
Default format of XML serialized DateTime
I am serializing a DateTime object using the DataContractSerializer class. I get the following output.
2013-05-21T10:50:23.5602265-04:00
What is the final component?
...
0
votes
0answers
15 views
Applying XMLAttributeOverrides to different instances of same type
Say I have some objects:
public class Family
{
Person mum { get; set; }
Person dad { get; set; }
}
public class Person
{
string Name { get; set; }
int Age { get; set; }
}
The ...
1
vote
2answers
49 views
XML Serialization and Empty Constructors
I have the following class that allows me to serialize objects in my program:
import java.beans.XMLDecoder;
import java.beans.XMLEncoder;
import java.io.FileInputStream;
import ...
0
votes
1answer
49 views
How to searalize complex objects and put them in a viewstate in asp.net?
I have an object of type List<SPSection>, the SPSection is a custom class that contains a string and a List<SPListItem>, SPListItem is a SharePoint object representing an item.
I want to ...
1
vote
1answer
56 views
Deserializing in VB Without Failing When the File Does Not Exist
I've nicked some code from msdn to write and read to an xml file to persist my data, but I need a little help with it. I have a dynamic array called darr. As I understand it, I use this code to store ...
0
votes
0answers
37 views
SOAP Deserialization - stuck with XmlNodes[]
eI have a webservice which I have no control over. For one reason or another, I cannot use a pregenerated XML Serializers assembly (I am running under MonoTouch) so I need to handle the ...
2
votes
1answer
164 views
C# StackOverFlowException when serializing large object graph with DataContractSerializer
When I try to serialize a huge object graph with DataContractSerializer, I get a StackOverFlowException. Increasing stack size to 10 MB fixes the problem in my current scenario, but of course this is ...
1
vote
1answer
63 views
deserialization c#
I have a WPF application contains this class:*
{[Serializable]
public class Parametres
{
private string admin_login;
private string admin_pwd;
private string server;
private string ...
1
vote
1answer
218 views
ReadAsAsync<T>,Expecting element from namespace 'http://schemas.datacontract.org/2004/07/",Encountered 'Element' with name 'workflow', namespace ''
I am trying to consume a REST API to Get data by httpclient, encountered a parsing problem ,{"Error in line 1 position 95. Expecting element 'workflow' from namespace ...
1
vote
2answers
198 views
Serialize only those properties which are specified [XmlElement] without changing the original class
Code:
[Serializable]
public class MyClass
{
[XmlElement("Company")]
public string Company { get; set; }
[XmlElement("Amount")]
public decimal Amount { get; set; }
public int ...
2
votes
2answers
61 views
Deserialization of xml file by using XmlArray?
I am trying to deserialize this xml structure.
<?xml version="1.0"?>
<DietPlan>
<Health>
<Fruit>Test</Fruit>
<Fruit>Test</Fruit>
...
1
vote
0answers
132 views
RestSharp deserialize list with a DateTime element as a child
I have problem to deserialize following xml with RestSharp:
<dates>
<date>2013-04-30</date>
<date>2013-04-16</date>
<date>2013-04-05</date>
...
0
votes
1answer
22 views
Serialize data without XmlInclude
I am trying to reference my derived classes in a repository class I created.
Here is the code:
[XmlInclude(typeof(Case1))]
[XmlInclude(typeof(Case2))]
[XmlInclude(typeof(Case3))]
public class ...
0
votes
1answer
15 views
Serlializing a property XML content 'as is'
There is something I don't now how to
handle. I amb XML serializing an object and need to serialize a property
content "as is", as an XML structure. By default, the system is
'encoding ...
0
votes
0answers
56 views
Change XmlType dynamically = DeSerialize a class with different names
I want to deserialize a class that was serialized in some files as 'A': (using: XmlSerializer xmlSerializer = new XmlSerializer(typeof(Class1)); .)
[XmlType("A")]
public class Class1 {...}
and in ...
0
votes
0answers
42 views
Is there any way to put a C# object into a DataColumn such that its serialization to byte[] happens as part of DataSet serialization?
Some of the rows in our database / DataSets have a column where we store a serialized C# object. To implement that, we typically define the column as byte[] or as a string... we serialize to XML, ...
0
votes
1answer
162 views
C# check if XML file is not corrupted before deserialization
I didn't find anything for my problem in internet.
I deserialize data for playlists.
He is my code :
using (var fs = new FileStream("playlist.xml", FileMode.OpenOrCreate))
{
XmlSerializer xml = new ...
0
votes
3answers
67 views
Problems Serializing Object
I have this class in C#
public class ExerciseDTO {
Dictionary<String, String> qa;
private String materialId, content, topic;
//constructors
//properties
public void ...
0
votes
1answer
31 views
Generate Serialized Assemblies
I am having an issue building release. I have my main OS that I am running a VM on that contains all my dev tools.
The main OS I am sharing a USB drive and have it mapped in the VM.
When I try to ...
0
votes
1answer
121 views
Serialization Exception in .NET 4.5
I'm getting this stack trace when I call:
XslCompiledTransform.Transform(XmlDocument.DocumentElement.CreateNavigator(), null, StringWriter)
System.Configuration.ConfigurationErrorsException: ...
1
vote
1answer
158 views
C# XmlSerializer has error while reflecting type
To transfer data, I'm using XmlSerializer. But I get a runtime error at following line:
XmlSerializer serializer = new XmlSerializer(typeof(Packets.Wrapper));
The error is "Additional information: ...
0
votes
1answer
30 views
Do I need to Flush when using XmlRootAttribute Class?
I know that when using a stream I need to flush it so it will releases any resources related to the stream and flushing a stream takes any buffered data which hasn't been written yet, and writes it ...
1
vote
0answers
89 views
Serializing Charts and other controls C#
So i'm trying to serialize my charts, labels, textboxes, and comboboxes, I'm able to do everything except and put it in the same xml file but the charts state, this is what i have in my serializing ...
0
votes
1answer
70 views
boost serialize Eigen MatrixXd to XML
I am trying to serialize an Eigen matrix using boost serialization. I have seen this question and tried to use the solution, however I have strange compiler errrors.
I have a shared_ptr to a MatrixXd ...
0
votes
1answer
67 views
XML Deserialization in C#
I have one class which was serialized before. We have the xml output from it.
When we open the project we deserialize the xml to get the preserved objects.
Now i have added new bool property to class ...
0
votes
2answers
103 views
Sending serialized data from android to java
I want to send class variables from android device to server.
In my server java program receives requests with socket connection
I want to use xml serializer . I couldn't find any xml serializer ...
0
votes
0answers
58 views
System.Xml.Serialization Overloads / Patterns
I started off researching a way to stop serializing value types when they were no explicitly defined by me, and came up with the 'patterns' if thats what you want to call them ...shouldserialize and ...
0
votes
1answer
56 views
Serialize XML to File causing malformations?
I'm attempting to serialize XML and create a file. I'm serializing from an object that was auto generated from XSD using xsd.exe. The file processes and is created just fine. But whenever I run it ...
0
votes
1answer
89 views
XMLSerializer not reading all Elements
I have a class used to serialize and deserialize via XMLSerializer. ExportSteps is another class which implements IXmlSerializer for custom serialization.
My issue is it's not reading and setting any ...
0
votes
2answers
228 views
XML Deserialize with UTF-8 encoding
I already searched a lot today about this and I can't find how to Deserialize with UTF-8 encoding.
<?xml version="1.0" encoding="UTF-8"?>
<AvailabilityRequestV2 xmlns="" ...
1
vote
3answers
132 views
XmlSerializer doesn't fill in values
I created classes from a DTD (over XSD and xsd.exe) for my C# project, so I could easily deserialize them into a model class in my code.
This is roughly how I do it:
XmlReaderSettings readerSettings ...
0
votes
1answer
84 views
NetDataContractSerializer produces invalid XML
My NetDataContractSerializer seems to be confused: The end of the XML appears twice:
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns:i="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
2answers
95 views
Writing my own Android Serialization class
I am writing my own android serialization class to convert an object to xml. I have created a Bar class that consists of the colour,Rect and Division of a bar.
public class Bar {
String colour;
...
0
votes
1answer
44 views
Objective-C game class serialization advice (hand coded XML file)
I am looking to create / instantiate the levels and level enemies of a game I'm creating from an xml file at runtime that I will initially edit by hand until I have time to create a level editor. Once ...
1
vote
4answers
142 views
Annotations in XStream without known class type
I have following, problem with XStream: when I try to read the annotations I need to use following sentence:
xstream.processAnnotations(DataClass .class);
which defines explicitly the class I'm ...
0
votes
1answer
203 views
Android XML serialization
I am trying to Serialize an object in my application by using the Simple Xml Serialization.(http://simple.sourceforge.net/home.php). I am trying to serialize my person class but when I run it on my ...
0
votes
0answers
65 views
Boost serialization of a class both in XML and binary at same time
I'm implementing an image detection library. I have for example the InterestingPoint class that implements an interesting point of an image and the Features class that stores some information of the ...
0
votes
0answers
217 views
Howto serialize/deserialize a null List<> with XmlSerializer
I can serialize a List if the list is not null.
But if this list is null, I get an empty list on deserialization.
What do I have to do in order to get null on deserialization, when the list was null ...
0
votes
0answers
199 views
XmlAttributeOverrides - How to use correctly?
I have a base type that is serializable within which is an array of Things. I want to accept any type of Thing when the XML is deserialized. So I was trying to override the XML attributes at run time, ...
0
votes
0answers
38 views
XMLSerializer in Debug, BinarySerializer in Release?
I am currently using a XMLSerializer to save project files to disk. However, the project file is very large (6k for an empty project already, and I am not even halfway done). I fear that later, when ...
0
votes
0answers
16 views
Customisable, reversible XML serialisation in Ruby
Ox and similar libraries provide the serialisation of ruby objects to XML, but are there any libraries which allow you to define the form that serialisation takes?
Essentially, is there a library ...
0
votes
2answers
421 views
Serialize a Dictionary<string, object> that contains a List<string>?
I've found a Serializeable Dictionary which works quite fine: http://www.jankowskimichal.pl/en/2010/10/serializabledictionary/
But I'm getting an exception whenever one of the objects in the ...
0
votes
2answers
104 views
Serialization of List not giving required output
I have a tried list, array and all different types
I have a list of items which is serializing just fine
in c#
public mySortableBindingList<Item> TransactionLines = new ...
0
votes
0answers
162 views
how do I add namespace to soap request?
How do i add namespace to the SearchSchemes ? The following is the soap request and
The current output is as follows .
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" ...
0
votes
3answers
65 views
Design of Serializing classes
I just learned how to serialize and deserialize objects to XML in C#.
Now I would like to add this functionality to my application, I have a class for the object. Should I create a class that ...
0
votes
0answers
85 views
Serialize and Deserialize UserControl
I am using the code below to show a dynamic form containing a UserControl which is encapsulated into a class. The class is to be serialized so that (a) the properties of usercontrol objects can be ...


