XStream is a simple library to serialize objects to XML and back again.

learn more… | top users | synonyms

0
votes
1answer
18 views

XStream Element contains TextNode and Element

I am using xstream to parse XML and everything goes well while.... there is a situation that xstream seem can't handle it. There's one tag named "", but in different xml file, it can contain text ...
0
votes
0answers
21 views

XStream JavaBeanConverter Spring config to serialize using getter

I would like to register XStream JavaBeanConverter in Spring config. I see test examples where JavaBeanConverter is registered as below. xstream.registerConverter(new ...
1
vote
1answer
23 views

Spring Batch : Database to XML issue

I have a simple spring batch program, which reads from a database table and forms an output XML using default XStreamMarshaller writer class below org.springframework.oxm.xstream.XStreamMarshaller ...
0
votes
0answers
20 views

CannotResolveClassException when converting json to bean by xstream api

I am trying to convert a json to java bean using Xstream api. Here is my snippet of Json: { "coverLetter": "To whom it may concern etc", "person": { "name": "Sufyan", "skills": { ...
0
votes
0answers
33 views

mapping key value xml pair to java map using xstream

I am trying to convert a xml file as follows into java map. xml <Person> <ID>123</ID> <Demographics> <LastName>ABC</LastName> ...
0
votes
1answer
30 views

Java XStream Deep Copy raises Exception ObjectAccessException

i have a XStream for cloning here is my simple code i have not much expertise with it. com.thoughtworks.xstream.XStream XSTREAM = new com.thoughtworks.xstream.XStream(); later i store the clone ...
0
votes
1answer
42 views

How to read list elements with attribute via XStream

I'm using XStream to read below example xml file. <list> <file>/setup/x86-linux2/bin/zip.txt</file> <file type="dir">/src/bin/</file> <name>test ...
0
votes
0answers
31 views

Creating an XML serialization file of Android classes in JVM

Given an Android project with classes being serialized with XStream, I want to create a serialization file for those classes outside the Android runtime. My idea is to get a copy of the target class ...
0
votes
0answers
25 views

Xstream Content is not allowed in prolog

Getting the following question while trying to execute a piece of code .......How can i resolve it..The same piece of code perfectly fine with Linux but not with Windows... ...
1
vote
2answers
32 views

How can we get json in below format using XStream or any other parser?

In the below format my doubt is the type mentioned with every field. Can you please suggest some solution? This is a requirement from the third party who will be consuming this. subject":{ ...
0
votes
0answers
28 views

XStream: prevent a collection field from serialization

I have a Spring, JPA, and Hibernate application. I am using XStream (v1.4) to replicate an object. This object has the following field: public List<Tester> testers; @OneToMany ...
0
votes
0answers
33 views

XStream issue with implicit collections

I have the following XML: <appConfig> <database isSource="true" fizz="129"/> <database isSource="false" fizz="29494" /> <buzz bee="always" /> </appConfig> ...
0
votes
0answers
14 views

java xstream attribute not working

I am just not able to crack this. Not able to understand what is gng wrong. Any help appreciated. I am simply trying to get all values of xml node into an java object. public class City { /** * ...
0
votes
0answers
21 views

Java7 System.identityHashCode performance

The scene: I am using XStream, which uses System.identityHashCode a lot. I have migrated from IBM Java 1.5 to Oracle Java 7 The problem: I see a performance problem, and have identified that ...
1
vote
2answers
57 views

How to persist Http Session

I have web application with Spring MVC and Webflow. I'm implementing "snapshot" mechanism: Developers by special parameter in the URL can save their current state (page, components states etc.), and ...
0
votes
1answer
40 views

Xstream generated json response for List<Object>

I am using Xstream to generate JSON for my application.I want to use JSON for ajax support. When i try xstream.alias(classAlias, jsonModel.getClass()); //Note classAlias="records" ...
0
votes
1answer
128 views

Xstream marshaller not unmarshelling xml post body

I am trying to create a spring rest service. My servlet.xml is like following: <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
1answer
24 views

Using xstream's XmlArrayList and FilePersistenceStrategy how can I control the name of the output xml file?

using xstream's XmlArrayList and FilePersistenceStrategy how can I control the name of the output xml file? Currently the files are named : int@0.xml I need to name them with a business ...
0
votes
0answers
47 views

Custom Converter extending ReflectionConverter throws ConversionException

I have a class that extends ReflectionConverter as such that does nearly nothing: public class ExtendedReflectionConverter extends ReflectionConverter { private final Map m_defaultValuesMap; ...
2
votes
1answer
59 views

Set default value for fields not in XML in XStream

Is there a way to create a converter or some operation that is performed after every single conversion? For context, I am trying to populate default values for fields that are not in my XML in order ...
0
votes
1answer
17 views

NumberFormatException xstream

I have a very strange behavior from xstream. My test code is: import com.thoughtworks.xstream.XStream; import com.thoughtworks.xstream.io.HierarchicalStreamReader; import ...
3
votes
1answer
27 views

Xstream inserts strange tags in output

I have an XML Processing Application ( coded in java) that is supposed to take 2 reports of JavaNcss tool and compile their diff. The sample XML is as follows : <objects> <object> ...
0
votes
0answers
43 views

Spring Data Neo4j serialize nodes to XML

I am using Spring Data Neo4j with aspectj and I want to serialize my object to XML @NodeEntity @TypeAlias(value = "Customer") @XStreamAlias("Customer") public class GraphCustomer implements Customer ...
1
vote
1answer
33 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. ...
0
votes
2answers
75 views

XStream Error Resolution

I'm using a java application to parse some XML using XStream. The XML is : <object> <name>an Object Name</name> <ncss>154</ncss> ...
0
votes
0answers
18 views

Generating instances of multiple classes using XStream with Java

I have the following XML : <items> <packages> <package> <name>Random Class Name</name> <classes>300</classes> ...
0
votes
1answer
38 views

Use of Spring oxm

I am new to spring. I was looking into spring-oxm's XStreamMarshaller. I was hoping to find a way to convert my objects into xml using this. The spring site tells me clearly how to do it but it still ...
0
votes
1answer
28 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
1answer
40 views

Retrieving array of non-root elements from xml file which is stored as string

I have a scenario wherein I have the following xml and classes XML : <packages> <package> <name>class1</name> <classes>300</classes> ...
0
votes
0answers
14 views

Serializing nested classes

I am totally new to serializing and decided to take XStream up first. I have a sample XML File Structure <javancss> <date>some value </date> <time>some value ...
0
votes
1answer
37 views

Should I split up my XStream converter per class?

I am working on a program that uses XStream to write out to XML. As it stands I have only one class that implements Converter. This single converter takes in my ENTIRE configuration which is a HashMap ...
0
votes
1answer
26 views

XStream and Google App Engine

Hi I saw a XStream implementation for Google App Engine however I am still getting a "Cannot construct [class] as it does no have a no-args constructor" @Test public void testNoNoArgs() { ...
1
vote
1answer
51 views

To what extend that Object to/from JSON/XML (un)marshaling can break

I've been thinking for these two JSON library: Google Gson JSON.Simple XStream Google Gson is pretty awesome, it can serialize class object that have no-args constructor. JSON.Simple is neat to ...
1
vote
1answer
97 views

Serialize / Deserialize Object into XML with (XStream)

I'm getting this error when trying to "deserialize" an object: Cannot construct MyClass as it does not have a no-args constructor. Looking at the docs, it means that XStream is not running in ...
0
votes
0answers
24 views

XStream Parsing Self Contained Tags

I am learning Server Programming by myself, and have come across this error, which is bugging me to no end. See, some of the tags in the sample XML file contains self containing tags, like: ...
0
votes
0answers
50 views

Unmarshal set in custom converter

I'm trying to convert an EnumMap containing Set entries to and from XML with XStream. The Set is a custom Set containing just a HashSet as a property. The marshalling to XML is going well, but I can't ...
0
votes
0answers
42 views

Java & XML: Fixing a few things

I'm making an attempt to load my npc drops for a game via xml. I've started the loading processes but I'm encountered a few problems. First of all, I can only have 1 drop per npc without creating ...
0
votes
1answer
45 views

XStream won't call readObject()

I have code that is modeled as such: class A { private transient Foo foo = new Foo(); private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { ...
0
votes
1answer
66 views

ommiting xml declaration in xstream

I want to append contenct to xml using xstream but using xstream.toXml(obj,writer) every time I run this, it is adding xml declaration to the content , can we ommit xml declaration in xstream?
1
vote
1answer
37 views

Cannot execute jar file from aplication that uses XSteam

I'm testing to use persisting data using XStream and it works fine when I run it from JDeveloper, BUT when I deploy the app it just simply doesn´texecute. The frame is simple, a button and a ...
2
votes
2answers
78 views

How can i make block of code generic?

public Item marshallItem(String xml) { // TODO Auto-generated method stub XStream xstream = new XStream(); xstream.alias("Item", Item.class); return (Item) xstream.fromXML(xml); } ...
0
votes
2answers
86 views

Deserialize an XML in C# generated by XStream from java

My application has 2 parts, an android client and a windows print server coded in c#. I used Xstream in java to convert my object to XML (in android). here's a part of it: <ROOT> ...
0
votes
0answers
53 views

XStream + Spring: special signs like é incorrectly encoded. How to set encoding?

So I'm using XStream and Jackson in combination with Spring 3.2.2 to automatically convert my response object to XML\JSon. The issue I'm facing is that in the returned JSon characters like é are ...
0
votes
1answer
127 views

Ignore whitespace while converting XML to JSON using XStream

I'm attempting to establish a reliable and fast way to transform XML to JSON using Java and I've started to use XStream to perform this task. However, when I run the code below the test fails due to ...
7
votes
2answers
556 views

Using Transient Entity in Hibernate to Update/Merge an existing Persistent Object

I am dealing with a fairly complex object graph in my database. I am using XStream to serialize and deserialize this object graph which works fine. When I import an object graph of an object that ...
1
vote
1answer
54 views

Spring + xstream: fields not shown in the correct order

So I'm using XStream to create my xml rest response and I'm having a bit of trouble with the field order. It does not match with the defined order in the converted class, nor with the opposite ...
0
votes
0answers
114 views

Spring: return xml for rest call response not as expected

I am trying to follow the tutorial at: http://pfelitti87.blogspot.be/2012/07/rest-services-with-spring-3-xml-json.html Which basically is a tutorial on how to automatically convert your spring ...
0
votes
1answer
40 views

XStream 1.4 dropping double quotes when using Converters

I am in the midst of upgrading Xstream 1.3 to 1.4. However I am finding that the JSON generated is incorrect, and I am not sure what I need to do resolve this. I wrote a JUNIT test and was able to ...
1
vote
2answers
122 views

Can xstream deserialize a complicated array?

I study xstream these days. But I found the xstream json tutorial which in its homepage is very simple. I have an array as follows: { "mails":[ { ...
0
votes
2answers
53 views

How to convert a Map to an XML

I have a HashMap that I would like convert into an XML file. This tutorial demonstrates how to do this with XStream, and it works wonderfully. However, in my case, I do not need to unmarshall the XML ...

1 2 3 4 5 10