1
vote
3answers
49 views

How do I remove the namespace values from my nested XML child elements?

I have a small RESTful web service powered by Jackson, Jersey, EclipseLink and Tomcat. For the most part, the XML is working as expected except when it comes to my nested child elements. They are ...
0
votes
3answers
41 views

Serialize to an XML document without overwriting previous data

I need to serialize to an XML document without overwriting the data that is currently in there. I have a method that does this and it will save to the xml file, but will delete whatever is currently ...
2
votes
1answer
40 views

How to Serialize in EF5 with ICollection<T>

I'm using .Net 4.5 and Entity Framework 5.0. I have 3 basic entity classes created using the Code-First approach. Now I'm trying to serialize it and am unable. Here's the basics of the classes: Base ...
2
votes
1answer
36 views

XML Serialization Error

I am trying to deserialize XML, but I receive this error: Unable to generate a temporary class (result=1). error CS0030: Cannot convert type 'responseReturnSalesOrder[]' to ...
0
votes
0answers
34 views

Conditional serialization for the whole model

When serializing a model in C#, it is possible to leverage the ShouldSerialize capability to define when a property should be serialized and when not. Is there an out-of-the-box way to specify the ...
0
votes
0answers
30 views

Serialization of list and copy in the XML file

I am trying to serialize a list that I created. The aim is: each time that I click on add, a new panel appears, this panel obtain a name as strat1, strat2, strat3,… All these strat(i) are recorded ...
0
votes
1answer
33 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 ...
0
votes
1answer
52 views

Using XmlIgnoreAttribute to Ignore Base Class Property

I have an abstract base class to which I have added some virtual properties. What I would like is to, in my derived class, specify that a particular base class property be ignored during the ...
0
votes
0answers
16 views

Customizing WCF validation / providing more context when a SerializationException occurs

I am currently working on a WCF service with a REST binding which is expected to be accessed by systems that were not developed in .NET and have no access to the C# data contract. As a result, it is ...
0
votes
2answers
53 views

XML Serialization with Simple Framework

I am using a framework called Simple, which is very helpful for serializing and deser. xml content. However I am not able to serialize a xml file to an object. The output object should be filled with ...
0
votes
0answers
20 views

XML Serialization How to change XmlAttribute name in Derived class instance

So, I have the code below, and what I want to do is be able to change the name of the attributes and use different names for the same properties defined in the base class. For installer, in my ...
0
votes
0answers
23 views

De-Serializing Derived objects using XMLIncludeAttribute

I have a requirement to create mappers for record elements. I have a parent class and a bunch of child classes. To the parent class, I added the XmlIncludeAttribute so that whenever a list of the type ...
1
vote
0answers
34 views

Passing XML data as a string parameter in the request ServiceStack

I’m using ServiceStack and every time I’m trying to pass XML string as a string parameter or “< “ symbol for the POST request I’m getting an exception: SerializationException - Could not ...
1
vote
2answers
51 views

Byte array java xml serialization

I have problem with xml serialization in java. Actually I have to make a xml header to my cryptography program which should look like this: <EncryptedFileHeader> <Algorithm>algorithm ...
1
vote
0answers
48 views

C# - Serialization of a dynamic form - XML

I am trying to create a serialisation in a XML file, however I am too novice to understand all the point. I have a dynamic form where if you click on add, then a new panel appear; strategy 1, if you ...
0
votes
0answers
63 views

How do I deserialize complex XML into classes?

I have an XML coming in from the server in the form of: <resultSets> <resultSets uid="957136"> <results uid="777402"> </results> </resultSets> ...
0
votes
2answers
35 views

How to read serialized data into a set of entity classes

I've been assigned a task to import reference data from a database into a set of entity classes. Here's an example of one of the simpler entity classes: public class CountryList { public ...
0
votes
1answer
82 views

PHP XML serializer

Is there some php libraries which implement serialization of data to XML-format like serialize() and unserialize() (with restoring objects from XML) functions of objects with private and protected ...
0
votes
0answers
41 views

Get XmlSerializer to ignore property on base base class

I have a class (MyBasicHttpBinding) that inherits from BasicHttpBinding which in turn implements HttpBindingBase. HttpBindingBase has a property ProxyAddress. I want to serialize MyBasicHttpBinding ...
2
votes
0answers
62 views

C# Custom XML Serialization adding extra attributes

I have class public class ConfigurationItem { public String Type { get; set; } public String Value { get; set; } } Ant folowing code serializes static void Main(string[] args) { ...
0
votes
1answer
55 views

Deserialize XML with different tree structure for same node

Problem I am working with XML structured like below, and I am having issues because the <value> tag can contain several types of data, and can sometimes have a nested value. I have tried using ...
0
votes
1answer
108 views

How to ignore a nullable property from serialization if it is null or empty?

I have a class which is used for Xml Serialization. Inside which I have a nullable property which is decorated with XmlAttribute: [XmlAttribute("lastUpdated")] public DateTime? LastUpdated { get; ...
0
votes
0answers
79 views

List collections and XMLSerializer

Basically I have created a user interface and the user input is stored within two lists. One class contains both lists and I am trying to use XMLSerializer to write an XML file containing those lists ...
1
vote
1answer
88 views

How to get serialized XML of object passed to web service?

I have a VB.NET (2008) console application which consumes a web service. All is working fine -- I've used WSDL.exe to import the web service's definition and create the appropriate classes, I can ...
0
votes
0answers
37 views

Serialization “ClassName” class, which has property typeof(Encoding) c#

I'm sorry if it looks stupid, but I really can`t understand how to serialize my own class which has property: public Encoding EncodingName {get;set;}. Can someone explain what is the best way to ...
0
votes
0answers
34 views

C# collections,XML serialisation lists and classes

I am using the XML serialiser namespace to write out an XML file based on user input from a form. I get the user input and pass it into a class, which then populates a list collection with all of the ...
0
votes
2answers
94 views

How to use a C# class generated by XSD to serialize/deserialize individual elements of the XML

I currently have a C# class that I have generated from an XML schema, this is used to take an XML file and update values in a database. Where I am stuck is that one of these values (due to complexity ...
0
votes
0answers
33 views

XMLEncoder - Runtime Exception

I have been playing around with serialization-XML in java and am a little stuck. When I run this program I get two exceptions and I am not sure what the cause is: java.lang.InstantiationException: ...
0
votes
1answer
29 views

xml or serialize

I have got a limited list of objects which I am serializing to storage using ObjectInputStream and ObjectOutputStream. I have come across suggestions not to use Serialize. Instead of serializing the ...
0
votes
1answer
79 views

XSLT & XPath very complex data transformation

I am working on something where data is delivered in various XML formats, and although I can figure out most of the pieces of how to parse it, I do not know enough about XSLT and XPath to know where ...
1
vote
1answer
31 views

Xstream Ambigious xml tags

I'm working on a Android project, which is using an API to get it's data. Now first of all, I can't change anything to the API because it's also used in an iPhone app which has allready been launced. ...
1
vote
2answers
125 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
54 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> ...
2
votes
1answer
50 views

XML Serialization – serialize the properties in user control

How to serialize the properties in user control? I have tried the following code but I got InvalidOperationExceptio, While creating the XmlSerializer object MyUserControl userControl = new ...
0
votes
1answer
19 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
2answers
60 views

Unable to create xml file

I am trying to create an xml document with the information that is taken from a test. Basically I am using {get; set:} to get the information and when I walk through the program you see where the file ...
0
votes
0answers
36 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 ...
1
vote
1answer
59 views

Hexadecimal Characters in Encoded XML Attribute

I'm using following method to encrypt the data before storing them into database. The data will be converted to XML upon retrieval and passed to data-access layer to be deserialized into a known ...
0
votes
0answers
40 views

Error in creating xml file from java object

when i try to store my CreateNode object in a xml file it gives me the following error java.lang.InstantiationException: GraphPanel$CreateNode Continuing ... java.lang.Exception: XMLEncoder: ...
1
vote
1answer
64 views

Serialize classes keeping hierarchy tree

I want to serialize class hierarchy and keep hierarchy tree in resulting xml. I set Message property of ProtokolMessage class with Heartbeat object which implements Message abstract class. As the ...
0
votes
2answers
55 views

Save a List<T> not serialisable to a file

I would like to save and restore the size and order of columns datagrid on a WPF application. I store this data on two lists : List<DataGridColumn> List<SortDescription> DataGridColumn ...
0
votes
0answers
113 views

Only one top level element is allowed in an XML document error while serializing from java

when i serialize a graph from java to xml by storing a firstnode, remaining nodes and edges in a xml file it gets stored. but when i open the xml file it gives me an error "Only one top level element ...
1
vote
0answers
158 views

WebAPI JSON Deserialization with property of Object

I have the following problem with the Asp.net Web Api. I try to use the following object as parameter of my action [DataContract] public class MyObject { [DataMember] public object ...
0
votes
2answers
211 views

YAML vs GPB vs JSON vs XML, which is better?

I would like to know the merits & de-merits of 1) YAML 2) Google Protocol Buffers 3) JSON 4) XML I would like to make one common framework for serialization which will be used by Perl and Java ...
0
votes
0answers
31 views

How to represent & serialize this data?

I have a piece of data i was representing as a decimal, but now the code needs to be changed so that the data could be a decimal or one of a couple strings. For example, the piece of data could be ...
0
votes
2answers
39 views

Vb.Net XmlDeseralize xml attributes into class object

I am having trouble deserializing xml attributes into class properties. <?xml version="1.0" encoding="UTF-8" ?> <Ball clientid="xyz"> <Name>Tommy</Name> <ballColor ...
0
votes
1answer
38 views

XML blank namespace

I am serializing an object to XML with following header. <agr:ABWInvoice xmlns:agr="http://services.agresso.com/schema/ABWInvoice/2011/11/14" ...
0
votes
1answer
56 views

Deserialising a collection of inherited objects

I've got an xml file with a collection that looks like this <AbstractCollection> <ConcreteA name="Bob" age="4"/> <ConcreteB name="Tree" size="1" /> ...
0
votes
0answers
90 views

Preserving XML namespace when XmlDocument is returned from Web API method

I am using ASP.NET MVC 4 to write a Web API application. I have an API method that returns a digitally signed XmlDocument object. From the client I am requesting the response in JSON format but the ...
0
votes
1answer
142 views

RestSharp serialization not serializing class name correctly

RestSharp doesn't seem to be paying attention to the "SerializeAs" attribute that I've decorated one of my class names with: Person [Serializable, SerializeAs(Name = "person")] public class Person { ...

1 2 3 4 5 20