Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
334 views

Jibx - how to unmarshal/marshal tag with value and attribute?

<stateData> <MyTag name="voltage">12</Mytag> <MyTag name="Fuel">72</Mytag> </stateData> Sorry Guys, I did not meant to be lazy. Ok Here is the question: I ...
3
votes
4answers
1k views

What is the best Java OXM library?

Even though I've been a developer for awhile I've been lucky enough to have avoided doing much work with XML. So now I've got a project where I've got to interact with some web services, and would ...
2
votes
1answer
68 views

JAXB-Eclipselink: Mapping abstract “getter” to XML

I am using the EclipseLink implementation (2.3) of JAXB to map POJOs to XML and encountering a problem with following usecase: public abstract class A { public abstract Set<X> getX(); ...
2
votes
2answers
101 views

Grouping properties using JAXB annotations

I have a class Product with the following properties: name, dateCreated, createdByUser, dateModified and modifiedByUser, and I'm using JAXB marshalling. I'd like to have output like this: ...
2
votes
1answer
253 views

(Java) How can I pass Schema-validated XML documents as parameters between distributed components (e.g. web services or sockets)?

Here is a description of the scenario and I would appreciate also any comments on the approach used The core of my application is a set of web services backed by a P2P database. One service accepts a ...
1
vote
0answers
31 views

I am having problems annotating model classes to support desired XML unmarshalling

I am interested in using a OXM framework to support unmarshalling of the following XML that will be passed as the HTTP POST payload of a request to a RESTful API call. This is my first time trying to ...
1
vote
3answers
503 views

JAXB - Creating modules for reuse

Does JAXB support modular code generation? Most of my background is with JibX for XML marshalling, but for legacy reasons our firm is using JAXB. One feature that was available for JIBX was modular ...
0
votes
0answers
68 views

Spring OXM - Castor XML mapping elements with the same name and different attributes

I'm having an hard time mapping elements with the same name ("attribute") and different attribute (attribute1, attribute2, ...). <?xml version="1.0" encoding="UTF-8"?> <documents ...
0
votes
0answers
95 views

Spring OXM Schema based configuration

I have a working Spring OXM application. It is pretty small application with two classes. One of them is model (say Car.java) and other is Spring MVC controller rest web service (CarController.java). ...
0
votes
1answer
61 views

Spring oxm getting type cast error near catch statement

I am getting error near catch statement Error : required java.lang.Throwabe found org.springframework.oxm.XmlMappingException enter code here public void writeObjectToXml(Object object, String ...
0
votes
3answers
444 views

Generic Collections and XStream

Is there a way to map (using xstream) a List<Person> to <friends> and List<Things> to <stuff> for example? Thanks!
0
votes
5answers
289 views

XML binding solution in .NET

Are there any proper xml binding(mapping) solutions (OXM) in .net? What I need is to generate model classes from arbitrary xml. As for now I can't find anything like JaXB 1/2, JiBX, Castor XML, ...
0
votes
1answer
788 views

Mapping collection to XML in Castor

I'm trying to map a POJO to XML using Castor. Let's say I have a Order that has a collection of Items... is there any way of achieving an xml like the following: <order> ...order attributes ...