XML Deserialization is the process of re-creating an in-memory object from its serialized state which used XML as a data format.

learn more… | top users | synonyms

0
votes
1answer
12 views

Xml deserializer error only on Windows Server 2008 R2

I am getting an error message "There is an error in XML document (81,6). The error line and column is where the Label tag starts in the example below. I am having this problem on multiple computers, ...
1
vote
3answers
40 views

Can't seem to deserialize very simple xml using XmlSerializer in c#

I feel like I am going made. I have written a hundred deserializing routines, but this one is killing me! Below is what I get returned from a service. A very simple array of strings...I think. ...
0
votes
2answers
22 views

vb.net deserialize an xml string

I've got a simple xml string that looks like this: <?xml version="1.0"?> <AccountBalance> <value> 22.00 </value> </AccountBalance> I'd like to set the ...
4
votes
0answers
75 views

SAP Simple Transformation with unknown XML

I have XML of unknown structure and I want to apply ST (Simple Transformation) on it to get "somehow" that content out of XML into ABAP structures. For now I have following test report: report ...
2
votes
1answer
70 views

Element name is already used simple framework

I'm parsing a xml into an object using Simple Framework. The problem is that the xml has elements with the same name but in different paths. XML: <prestashop> <products> ...
0
votes
0answers
23 views

To read two xmls and create treeview control in windows application

I need two create dynamically a tree view from two XMLs: From first xml the parent node will be Project A(that is the text of node ) and child nodes would be all folders till emails from the second ...
1
vote
1answer
36 views

How to deserialize different xml-tags into a single list

I have xml that looks something like this <root> <bosses> <boss>..some elements..</boss> <boss>..some elements..</boss> </bosses> ...
0
votes
0answers
29 views

adding an item to xml with c# serializer

I have looked thru several of the questions and have learned how to do many of the things with XML i need like using xsd.exe to create a cs file that can De-serialize my XML, but i am missing ...
0
votes
1answer
14 views

Deserializing XML element containing namespace

I have received an XSD schema, from which I have created object using xsd2code. The next step was to deserialize sample XML file using the object generated above. The problem is when I try to ...
0
votes
0answers
32 views

XSD2Code namespace issue

I am using XSD2Code to generate C# class from XSD file. I got stuck with the following problem. XML file looks something like <?xml version="1.0" encoding="utf-8" standalone="yes"?> ...
0
votes
1answer
113 views

XML serialization of objects through Sockets

My idea -> client server system, exchanges text messages (strings) through TCP sockets. I want the protocol between client and server to be based on XML. And because information between sockets is ...
1
vote
4answers
62 views

How to properly define classes to serialize them to XML?

I'm building an app using Nondeterministic Finite Automaton which have to save it and read it from a file. I tried dozens of different methods with [XmlTags] and it still give me errors. Can You tell ...
0
votes
3answers
48 views

Native Xml handling or (external) lib

I've multiple projects with each different configurations, all these configurations must be specified in a single XML file. That isn't the app.config but is specified on a generic location. My ...
0
votes
1answer
26 views

xstream deserialization issue

Trying to de-serialized the following XML, where "day" & "fulldob" are objects types with their individual converters for custom logic. Once De-serialized & when toXML method is applied to the ...
0
votes
0answers
21 views

XML Deserialization issues for elements without values but has attributes

I have the following xml: <employment_details> <first_name>John</first_name> <last_name>L</last_name> <marital_status type="single"/> ...
0
votes
0answers
17 views

WCF 4 Protocal Bridging Issue

I am working on building a routing service layer on top of the web service. The protocol bridging works like this: Client <--> customBinding (soap1.2) or basicHttpBinding(soap1.1) <--> Routing ...
0
votes
0answers
68 views

change System.Xml.Serialization.SoapTypeAttribute namespace attribute

edit-beginning I'm using a SOAP-interface from different servers, which is always built in the same way, but has some slight differences in attributes like namespace. Functions, parameters and ...
0
votes
1answer
64 views

Using RMI, is it possible to de-serialized object(of class not in current JVM classpath) and transfer to other JVM which contains this class

I have a serialized object in java.io.InputStream and I do not have this class in my current JVM classpath. Is it possible to retrieve this object using java.beans.XMLDecoder(with out ...
0
votes
0answers
27 views

.NET How to deserialize xml element with specific attibute value?

I have the following xml string: <?xml version="1.0" encoding="UTF-8"?><callout><parameter name="a">11111</parameter> <parameter name="b">03/31/2013</parameter> ...
0
votes
0answers
181 views

Error in deserializing body of request message for operation - invalid UTF8 bytes

I have a legacy VB6 app that sends data via a web service. Everything works perfect when sending to an ASMX web service. I migrated the services to WCF and added the attributes [SoapRpcService, ...
1
vote
1answer
33 views

XSD two elements with the same inner structure

I am working with an xsd, trying to get it to validate an xml. The xml is used to create objects. There are two types of objects that can be created by the elements in the list: SC and SMSC. SMSC ...
0
votes
2answers
82 views

Deserializing XML from a NetworkStream fails

I have my application set up to send objects over the network by serializing them into XML on the sending side and deserializing them on the receiving side. I first set it up with UDP, which worked ...
0
votes
1answer
101 views

How to deserialize a nested xml using DataContractSerializer in wcf?

How to deserialize a nested xml using DataContractSerializer in wcf? Example xml is; <smsPaidPhoneBookSearchResponse xmlns="http://callturksvc.alfion.com.tr"> ...
3
votes
2answers
343 views

There is an error in XML document; EndElement is an invalid XmlNodeType when deserializing

Consider a .NET client calling into a remote XML SOAP web service that's defined as a Web Reference. The client calls the service, and is attempting to deserialize the return XML into an object. The ...
0
votes
1answer
207 views

Win RT Deserialize XML to Object

I've got a class to hold some details for an adviser: namespace MortgageApp_2 { [KnownType(typeof(MortgageApp_2.AdviserDetails))] [DataContractAttribute] public class AdviserDetails { ...
0
votes
0answers
17 views

XML Serlization Error In WCF PoisonMessage Queue?

I'm trying to read from a webforms app in C# the BODY of the messages from the transactional system dead letter queue pre-defined by MSMQ The messages can be read ok, but when trying to read the Body ...
2
votes
2answers
255 views

XML Deserialization with Servicestack.Text

I am learning Servicestack.Text Library as it has some of the best features.I am trying to deserialize XML into one of my DTOs as below; C# Code:[Relevant Code with Console Application Here] class ...
0
votes
0answers
42 views

Type error in consuming webservice

I am consuming a SOAP WS in .NET, there service has been created by a java based tool. When the webservice returns i get the error: Error in deserializing body of reply message for operation ...
0
votes
1answer
90 views

Restore details from xml file into winform

Here I am saving details from form1 to data.xml by serializing. Now, I want details by searching the patient ID in Form 2 and to restore into the textboxes of Form1 when I click the Restore button ...
1
vote
0answers
116 views

Webservice testing using SoapUi - Error with Deserialization and XmlNode[]

I am trying to perform a quick testing for a webservice created by a third party. The problem is whenever I use SoapUi, i am running in to the following error: Element MyValue from namespace ...
0
votes
1answer
154 views

Unable to generate a temporary class (result=1). error CS0030: Cannot convert type

Identical symptoms to those in this post Basic symptoms are that when I use xsd.exe to create my C# class from my XML, when I attempt to deserialize it, I get this error (it compiles, but produces ...
0
votes
0answers
45 views

Boost - deserialization from XML crashes

I'm new to Boost library. I'm experimenting with the Boost's serialization/deserialization into various formats (binary, ascii, xml). I have a program which works fine for binary and ascii format but ...
1
vote
2answers
71 views

C# Xml Deserialize plus design suggestions

In my project I need to build a generic deserializer that should be backward compatible. Example: The XML looks like <PolicyDef name = "sample" type="type1"> <Options ......> ...
3
votes
2answers
177 views

Message serialized with XmlMessageFormater refuses to deserialize List<T> member

I'm having a frustrating time with C# message serialization. I have a class which has a constructor which looks like this: public ProposalRequestMessage(int imaNumber, int proposalId, bool ...
1
vote
1answer
259 views

Deserializing XML from String

I'm trying to convert the result I get from my web service as a string and convert it to an object. This is the string I'm getting from my service: ...
0
votes
0answers
114 views

Manually consuming XML in ASP.NET WebApi, as easy as JSON?

I've seen a ton of posts on consuming JSON in WebApi, and also a ton of posts on content negotiation, but unfortuantely neither fits the bill for my specific purpose and I was hoping to find an ...
0
votes
2answers
106 views

How to deserialize complex object into flat using .NET

I have XML like: <root> <prop1>value1</prop1> <prop2>value2</prop2> <data> <prop3>value3</prop3> <prop4>value4</prop4> ...
8
votes
1answer
186 views

XML deserialization generic method

I have next XML file: <Root> <Document> <Id>d639a54f-baca-11e1-8067-001fd09b1dfd</Id> <Balance>-24145</Balance> </Document> ...
2
votes
1answer
458 views

How to deserialize only part of a large xml file to c# classes?

I've already read some posts and articles on how to deserialize xml but still haven't figured out the way I should write the code to match my needs, so.. I'm apologizing for another question about ...
0
votes
0answers
110 views

XML deserialization to object error

I am tryining deserialize an xml file using XMLserializer and encountering errors. Here is the object I am trying to deserialize to: using System; using System.Collections.Generic; using ...
-1
votes
2answers
305 views

XML deserialize to object. How to construct object

I would like to deserialize the following XML to and object class in C#: <?xml version="1.0" encoding="UTF-8"?> <ern:NewReleaseMessage xmlns:ern="http://ddex.net/xml/2010/ern-main/32" ...
2
votes
1answer
152 views

simplexml_load_string isn't creating attribute array if XML node is a value node

I am loading an XML string using simplexml_load_string and if the node doesn't have any child nodes of it's own then the attributes of that node don't seem to be mapped to the array correctly. Is ...
0
votes
1answer
190 views

Can we update existing xml files using xmlserializer?

Just wondering if we can update an already built xml file using xml serialization/deserializtion in C#? Also, if the file has initially only root node, can we update it with child nodes? (regardless ...
1
vote
2answers
128 views

Deserializing complex element content to a string with XmlSerializer in C#

Is there any way to deserialize elements containing either simple text or subelement to a string with XmlSerializer? Xml sample: <Attribute> <AttributeValue ...
3
votes
1answer
94 views

Is it safe to use XMLDecoder to read document files?

Serializing Java Beans to XML using XMLEncoder and XMLDecoder seems like a pretty neat approach: many classes from many sources can be serialized reliably, just using their public interface. Using ...
0
votes
0answers
98 views

How do I deserialise an xml string in SQL Server into multiple columns?

I am trying to deserialize xml in a SQL Server stored procedure before bringing it into c# win forms. My current result table looks as follows: Edit: As the table above is too small to read below ...
1
vote
2answers
145 views

Simple framework xml deserialize - looking up for existence of attributes

Is it possible to look up for existence of specified attributes in the Simple framework for java? Let's say I have the following xml: <packet id="250"> <msg id="1" uniqueAttribute1="some ...
-2
votes
1answer
101 views

Xml Serialization and deserialization fails [closed]

I know that this question has already been asked, but I have strange problem and I can't figure out what to do: public static class XmlHelper { public static T Deserialize<T>(string xml) ...
1
vote
1answer
112 views

Decimal field not being deserialized while integer value works fine

Sample Xml: <TestXML> <TestDecimal attr1="Required" attr2="false">0.34</TestDecimal> <TestInteger attr1="MyAttr" attr2="1" DateAdded="">25</TestInteger> ...
0
votes
1answer
252 views

Get xml from website by webrequest then deserialize it and show in console

Hello i learning about this stuff an i need to send request to site get xml in response than deserialize it and see anything what was inside... i created request deserialize method and stream method ...

1 2 3 4 5 7