1
vote
2answers
61 views

EclipseLink - JPA and MOXy - different views on the same data model

here is the challange... I have a complex distributed system based on the same model It looks like this: A <-(XML)-> B <-(JSON)-> C A, B and C are different Applications basicaly ...
2
votes
1answer
209 views

Returning JPA entities from Web Service methods using JAXB and Eclipselink Moxy

I am developing a Java EE application to be deployed on a WebSphere application server. In this application, I have a Web Service, through which I would like to transfer JPA entity objects as results ...
1
vote
1answer
173 views

How to use Moxy XPath annotated beans in web services?

I have a bean @XmlRootElement(name = "alpha") public class MyBean { private String thetaValue; @XmlPath("beta/theta/text()") public String getThetaValue() { return ...
1
vote
1answer
329 views

JAXB unmarshalling only a deeply-nested subset of an XML file

My application receives a very lengthy XML document, and I would like to use it to populate a Java object. However, while there are tons of deeply-nested elements in the XML, I am only interested ...