Tagged Questions

4
votes
3answers
711 views

What is the best Java-way to create JSON/XML REST Web services that is similar to WCF?

I'm looking for a best way that is available for Java developers to implement REST services that will be communicating via JSON or XML. I'm looking for production-ready products. …
3
votes
1answer
78 views

Is there a way to put a version number in XML generated by XStream ?

I serialize my domainObjects using XStream. I would like to add some kind of versioning information to a generated xml file just in case my domain model changes. Is there a way t …
3
votes
3answers
373 views

How to disable pretty-printing in XStream?

This is how I create XStream instance for XML: XStream xstream = new XStream(); This is for JSON: private final XStream xstream = new XStream(new JsonHierarchicalStreamDriver() …
3
votes
3answers
362 views

Serialise to YAML using XStream in Java

Is there a YAML driver for the Java XStream package? I'm already using XStream to serialise/deserialise both XML and JSON. I'd like to be able to do the same with YAML.
2
votes
2answers
53 views

XStream : node with attributes and text node?

Hi, I would like to serialize an object to an XML of this form with XStream. <node att="value">text</node> The value of the node (text) is a field on the serialized …
2
votes
1answer
53 views

Suitable XML Marshaller and Unmarshaller

Hi. We have an XML that needs to be converted to an object and vice versa. Something like Xstream does. Until now we were using Xstream to marshall and unmarshall the object/xml. …
2
votes
3answers
86 views

XStream or Simple

I need to decide on which one to use. My case is pretty simple. I need to convert a simple POJO/Bean to XML, and then back. Nothing special. One thing I am looking for is it shou …
2
votes
1answer
242 views

How to ignore a type with XStream?

Hello, with XStream, how can I ignore the serialization of a defined Type (for instance, when serializing a GUI, i want to ignore all swing types)? Or if i want to ignore all jav …
2
votes
6answers
1k views

What are the relative advantages of XMLEncoder and XStream?

Suppose I want to store many small configuration objects in XML, and I don't care too much about the format. The XMLDecoder class built into the JDK would work, and from what I hea …
1
vote
1answer
30 views

XStream serializing collections

I have a class structure that I would like to serialize with Xstream. The root class contains a collection of other objects (of varying types). I would like to only serialize part …
1
vote
1answer
31 views

XStream failing when & present in the XML document

Hi , I am using xStream for serializing and de-serializing objects. But when there is "&" present for any of the tag values , xStream is failing and throwing excpetion. for …
1
vote
2answers
95 views

XStream short dynamic aliases

I want to have short names for classes, now i can do it with aliases XStream x = new XStream(); x.alias("dic", Dic.class); but i have to define alias manually for every class, i …
1
vote
2answers
158 views

How do I encode UTF-8 using the XStream framework?

Per XStream's FAQ its default parser does not preserve UTF-8 document encoding, and one must provide their own encoder. How does one do this? Thanks!
1
vote
4answers
357 views

parse google geocode with xstream

I'm using Java and XStream to parse a google geocode request over http. My idea is to have an Address class with all the geocode attr's (ie. lat/long, city, provice/state etc) but …
1
vote
3answers
355 views

how to create an InputStream from a Document or Node

How can I create an InputStream object from a XML Document or Node object to be used in xstream? I need to replace the ??? with some meaningful code. Thanks. Document doc = getD …

1 2 3 next
15 30 50 per page