MOXy is the object-to-XML and object-to-JSON component of EclipseLink. It is a JAXB (JSR-222) implementation with extensions for supporting: XPath based mapping, JPA entities, and infoset preservation.
0
votes
2answers
183 views
How can I configure EclipseLink MOXy in Spring MVC?
How can I configure EclipseLink MOXy in Spring MVC? I have three configuration files- applicationContext.xml, rest-servlet.xml and rest-context.xml.
1
vote
1answer
188 views
In MOXy unable to merge element if element contains a child an an attribute
This is my Xml output
<worklist>
<work>
<relation-list target-type="artist">
<relation type="composer">
<name>Пётр Ильич Чайковский</name>
...
1
vote
1answer
44 views
Can I get MOXy to not output an element when generating json?
An instance of my JAXB Object model contains an element that I want output when I generate Xml for the instance but not when I generate json
i.e I want
<release-group>
...
1
vote
1answer
96 views
standalone value does not appear in xml generated by moxy - jaxb
I have a xml file generated using moxy implementation of jaxb. However standalone value does not appear in the xml document.
1
vote
1answer
691 views
Generate JSON output using MOXy JAXB in Spring
I have a requirement to marshal both json and xml outputs. But, how to generate JSON output using MOXy JAXB in Spring? I can generate the xml file as shown in the example at: ...
1
vote
1answer
208 views
Use XmlIDRef for reference to abstract class
First of all a small example. The class ReferencingEntity holds a reference to the abstract class AbstractEntity. There are two implementations fo this class:
@XmlRootElement
public abstract class ...
1
vote
0answers
93 views
Assure object identity in jaxb unmarshalling
The setting is as follows. I use MOXy 2.4.0 as jaxb provider in JBoss 6.1.0.Final. RESTEasy is used as JAX-RS provider.
When an entity is unmarshalled, that references the same entity (same id's) ...
3
votes
1answer
544 views
JAXB eagerly fetches fields marked FetchType.LAZY even when EntityManager has been cleared(), closed() and set to null
I bow to the apt stackoverflow community and humbly seek guidance (I bow my head in subservience as I write this)
I have the following Entity class/bean which has a mixture of ...
1
vote
1answer
185 views
XML tag repetition in JAXB marshalling using EclipseLink MOXy
Can someone help me to generate XML with repeated tag using JAXB marshalling using EclipseLink MOXy.
@XmlPath("ExecRpt/Pty/@ID") --"ABC"
@XmlPath("ExecRpt/Pty/@ID") --"ABD"
...
1
vote
1answer
633 views
Partial mapping of XML in JAXB (MOXy)
I would like to unmarshall only the trk and its child elements from the below XML. However, I want to create gpx as the root element while marshalling
<p:gpx creator="" version="1.1" ...
1
vote
1answer
296 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 ...
1
vote
1answer
119 views
Reusable complexType, and xml-registry, xml-element-decl usage
I've the below TimePeriodType
<xs:simpleType name="UnitOfTimePeriodType">
<xs:restriction base="xs:token">
<xs:enumeration value="Months"/>
<xs:enumeration ...
1
vote
1answer
161 views
Overriding @XmlTransient behavior using external mapping file in Moxy
Why can't I override the "type" property to be non-transient using external mapping as shown below? When I serialize, I doesn't see the "type" element.
public class PhoneNumber
{
private String ...
1
vote
1answer
147 views
JAXB/MOXY mapping issue: The property or field phoneType must be an attribute because another field or property is annotated with XmlValue
Below is my class and OXM mapping. Not sure why I am getting the below exception if I want the phoneType to be a child element under phone
public class PhoneNumber
{
public enum PhoneType
{
...
1
vote
1answer
159 views
EclipseLink MOXy @XmlPath support for element with different values e.g. <Pty ID=“ID1” Src=“6” R=“1”>
Can some one help me to generate <Pty ID="ID1" Src="6" R="1"> tag using
EclipseLink MOXy @XmlPath in single annotation.
Thanks a lot in advance.
1
vote
1answer
188 views
XmlPath mapping problems using eclipselink MOXy
I don't see why the XmlPath mappings I have made below are coming out as null. Is there something wrong with my syntax? I used similar syntax elsewhere without problem.
Thanks for any clues.. John
...
1
vote
0answers
91 views
Using MOXy JAXB and not displaying list element node
I have a class that generated the standard XML using JAXB. I need the XML changed a bit to make the list node not appear and the content of the list to appear directly under the list containing node.
...
1
vote
2answers
258 views
Inheritance mapping throwing an exception with MOXy
I followed the second option mentioned in JAXB inheritance in MOXY to map my parent class and child class listed below. MOXy is throwing the below exception and not sure what the issue is
Parent ...
1
vote
1answer
90 views
JAXB Unmarshal: Set same attribute value to two model class properties
XML root Element has an id attribute with the value something like
<Party id="PARTYID_1341592540748_ed044bd3-b8b2-40f9-a679-4daa411ecc45">
Here I need complete PartyId and a part of it in ...
1
vote
1answer
78 views
MOXy Set/Map Mapping
I'm trying to use MOXy to generate a specifically formatted response for a front end client to make it easier for them to determine specific relationships. This is a bit of a contrived example, but ...
1
vote
2answers
96 views
JAXB: Unmarshal and set a part of attribute value
I am getting a long string as attribute and I want to unmarshal a part of it.
Here is what element look like:
<Party id="PARTYID_1341592540748_ed044bd3-b8b2-40f9-a679-4daa411ecc45">
But I ...
1
vote
2answers
107 views
Moxy not honoring the super class/interface properties
enter code hereI have the properties for a Customer spread across two interfaces as shown below. I have the external xml binding defined using the sub interface ICustomer. When I marshall the pojo to ...
2
votes
1answer
105 views
Moxy is marshalling unmapped java properties
I was able to use the XML as external meta-data by following the article here. However, Moxy is marshalling the properties that are neither annotated nor specified in the external XML meta-data. Below ...
0
votes
0answers
98 views
Changing JAXB unmarshalling as per the ORM structure
I am receiving following XML structure:
<Parent>
<Holding id="111"/>
<Party id="yyy"/>
<Party id="xxx"/>
<Party id="zzz"/>
<Relation ...
2
votes
2answers
294 views
JAXB (Moxy) XML Metadata mapping issue
I am trying to map the below interface using Moxy's XML Metadata extension. But when I try to load it, I am getting the below error. I can't add a public constructor to the AddressType as it is an ...
1
vote
1answer
817 views
JAXBContext, jaxb.properties and moxy
The jaxb.properties needs to be in the same package as the domain classes you are creating the JAXBContext on.
I am using Moxy's xml driven configuration since I doesn't want to use annotations or ...
1
vote
1answer
215 views
EclipseLink MOXy with recursive data structures / child elements of same type
I am using EclipseLink MOXy and have a data structure that has child elements of the same data type. Now I don't want to serialize the datastructure with infinite depth, but only the first level.
...
1
vote
0answers
145 views
Hibernate: Conditional One To One mapping
I am saving a XML to database with the help of JAXB and Hibernate. There are two elements at the same level
<ElementA id="111-aa>
<childern/>
</ElementA>
<Relation ...
1
vote
1answer
160 views
EclipseLink MOXy - How to avoid keeping jaxb.index and jaxb.properties file in Model classes package?
I am using EclipseLink external mapping file to marshal Java objects to XML and JSON. Since my model classes are defined in different projects where i don't have access to add/modify any file or ...
1
vote
1answer
129 views
Can I use Eclipselink MOXy to move an element to become a key when outputting json
From my JAXB model I can output this xml
<metadata xmlns="http://musicbrainz.org/ns/mmd-2.0#" xmlns:ext="http://musicbrainz.org/ns/ext#-2.0">
<work-list>
<work ...
1
vote
1answer
614 views
EclipseLink MOXy with spring MVC for RESTful services not working for JSON
Here is the situation.
When I use EclipseLink MOXy with Spring 3 MVC to generate JSON output it throws following exception when I try to set the json media type with following statement.
...
1
vote
1answer
119 views
Can I get MOXy to not output an attribute when generating json?
An instance of my JAXB Object model contains an attribute that I want output when I generate Xml for the instance but not when I generate json
i.e I want
<release-group type="Album">
...
2
votes
1answer
89 views
How do you get MOXy oxml mapping file to recognise static classes
Using MOXy I can flatten parts of my object model in my json output
i.e
<java-type name="Medium">
<java-attributes>
<xml-element java-attribute="trackList" xml-path="."/>
...
2
votes
1answer
124 views
Can I get MOXy to convert a string to a boolean when generating json
The object model has an element ended of type String
public class LifeSpan {
protected String begin;
protected String end;
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String ended;
...
1
vote
1answer
96 views
How an I get MOXy to just output on one line to save space
To solve another problem I have moved from using Jersey to EclipseLink MOXy to generate JSON from a JAXB created object model ( created by Sun JAXB 2.1.12). One difference I've noticed is the ...
1
vote
1answer
139 views
Can I get MOXy to rename an element when generating json?
From a common JAXB model the xml generated can be of the form
<ipi-list><ipi>1001</ipi><ipi>1002</ipi></ipi-list>
because in json we have arrays we dont need ...
1
vote
1answer
248 views
How do I get Json generated by MOXy to understand when model are numbers
To solve another problem I have moved from using Jersey to EclipseLink MOXy to generate JSON from a JAXB created object model ( created by Sun JAXB 2.1.12). One difference I've noticed is that in the ...
1
vote
1answer
280 views
JAXB MOXy Mapping Multiple Object iterations to single XML
I am using JAXB MOXy to map my java objects to XML. Up until now I have only ever needed to convert 1 object at a time and that word fine. So my output XML looks something like this:
<?xml ...
2
votes
2answers
1k views
Jax-WS - To Remove Empty Tags from Request XML
I'm trying to consume a web service exposed by a provider. The Provider has a strict checking at his end that the request xml should not contain tags which don't have values.
I'm using Jax-WS. If i ...
3
votes
1answer
179 views
ClassNotFound exception in enums in dynamic moxy
I am using EclipseLink dynamic moxy for jaxb. When I try to set an enum value, I get a ClassNotFound exception. Can anyone point out what I am doing wrong?
Schema:
<xs:element ...
1
vote
1answer
244 views
Unmarshalling nested collection via @XmlPath MOXy annotation
Given the following XML structure:
<root>
<data>x</data>
<details>
<some_other_element>...</some_other_element>
<collection>
...
1
vote
1answer
438 views
MOXy unmarshalling in Weblogic 12
I have a problem with running my web service in WebLogic 12c (with OpenJPA 2.1.0). The response of the web service is a DTO which has list of specific entities. After executing the service, its ...
4
votes
1answer
288 views
JAXB wrap wrapped collections
I have a class that contain two lists. I want to generate a wrapper element around the list elements, and around the two list.
class SomeClass {
private List<TypeA> listA;
private ...
3
votes
1answer
283 views
JAXB inheritance in MOXY
I have two classes:
package a;
class A {
private <type> fieldOfClassA;
// getters, and setters
}
package b;
class B extends A{
private <type> fieldOfClassB;
// getters, and setters
}
...
2
votes
1answer
252 views
XmlInverseReference, Hibernate, JAXWS and Moxy
I can not seem to get moxy working with JAX-WS web services and hibernate. Despite what I do, @XMLInverseReference does not work. I'd expect it to fill in the application variable on a Site. What am I ...
1
vote
1answer
108 views
Reffering to an xml-element from an xml-element-ref between separate xml binding files
I have two eclipselink moxy binding files because I want to add binding metadata for classes coming from two different packages. The problem is, that I want to refer to an xml-element defined in ...
1
vote
1answer
124 views
How can I make EclipseLink MOXy (2.3.2) omit the xmlns:ns0=“” on my root element?
I try to marshal a model generated by EclipseLink. The XML I get is
<?xml version="1.0" encoding="UTF-8"?>
<slipbox xmlns:ns0="" version="1.0">
...
2
votes
1answer
309 views
XMLDirectMapping - No conversion value provided
docx4j (which I host) is typically used with the Sun/Oracle JAXB implementation; the classes of interest below were generated using XJC.
Following on from an earlier issue which the MOXy guys kindly ...
1
vote
1answer
342 views
MOXy XMLCompositeCollectionMapping descriptor is missing
docx4j (which I host) is typically used with the Sun/Oracle JAXB implementation; the classes of interest below were generated using XJC.
I thought I'd try EclipseLink MOXy, to see how it went.
On ...
1
vote
1answer
42 views
Unmarshaling to a different property that is marshaled
With predetermined class structure like this:
@XmlRootElement
class Root {
Foo property;
transient Wrapper wrapper;
}
class Wrapper {
Foo wrappedProperty;
}
I would like to be able to ...
