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.
1
vote
1answer
125 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
311 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
348 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 ...
1
vote
1answer
766 views
How to use namespaces in JAXB using EclipseLink MOXy?
I have an XML like:
<message xmlns:gtm="http:// www.example.com/working/gtm">
<gtm:header>
<someid></someid>
<sometext></sometext>
...
1
vote
1answer
88 views
MOXy JAXB: how to use BigDecimalAdapter with different precisions
I have a BigDecimalAdapter to format all BigDecimal types of my model. The declaration in the package-info file is:
...
2
votes
1answer
199 views
How does MOXy handle empty arrays
In my Jersey project, I am using MOXy to marshal to/from JSON. One of the classes I want to to marshal is an array of strings that could be empty.
class Data
{
@XmlElement(nillable = true) public ...
1
vote
1answer
333 views
errors using xjc:superClass with XmlTransient annotation on super class with EclipseLink Moxy (jaxb 2.1 generated code)
i'm using xjc:superClass and an @javax.xml.bind.annotation.XmlTransient annotation on the super class.
i'm trying to switch over to Moxy and I get this error:
'Exception Description: Property ...
1
vote
1answer
227 views
eclipselink moxy xpath - Unable to use xml-path expression on a element with a dash in name
I currently use moxy on a project and I'm facing a problem for which I can't find a solution.
I use only a xml mapping file to map a xml received from a client to my java classes.
My problem is that ...
2
votes
2answers
210 views
XmlDiscriminatorNode, XmlSchema namespace, and elementFormDefault=QUALIFIED
I'm using eclipselink-2.3.2. My package is annotated:
@XmlSchema(namespace = "http://example.com/namespace", elementFormDefault = XmlNsForm.QUALIFIED)
I have the following classes:
@XmlRootElement
...
2
votes
2answers
797 views
JAXB afterUnmarshall not called when using extended class
I wrote a bean (BaseBeanEx) extending a JAXB annotated bean (BaseBean). The BaseBean is in a List somewhere in the datastructure and can't be changed. The Software does an explicit cast to BaseBeanEx ...
1
vote
1answer
156 views
Can one define null value serialization policy in JAXB/MOXy for entire class or globally in the mapping file?
I only found a way to define null handling policy per individual property:
<xml-element java-attribute="something">
<xml-null-policy xsi-nil-represents-null="false" ...
1
vote
1answer
201 views
Can JAXB/MOXy serialize enums in the same way as regular classes (non-enums)?
Imagine I have enum defined like this:
public enum ArchiveStatus implements Serializable {
CANDIDATE (0, "CANDIDATE", "Candidate for archival"),
IN_LIBRARY (1, "IN-LIBRARY", ...
1
vote
1answer
151 views
Can MOXy serialize POJO with getters only without need to explicitly put annotation at each getter?
So given I have class Name:
class Name {
private String first;
private String middle;
private String last;
public getFirst() { return first; }
public getMiddle() { return middle; }
...
3
votes
1answer
336 views
NPE when using MOXy's meta data with a class that implements java.util.Map
The situation
I'm using EclipseLink's MOXy and I'm trying to use the external OX mapping XML with classes that implement the Map interface. However, every time I try create a JAXBContext, I get the ...
1
vote
1answer
1k views
MOXy JAXB: how to exclude elements from marshalling
I have my model:
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class CustomerTest {
private Long id;
@XmlPath("contact-info/billing-address")
private AddressTest ...
1
vote
1answer
45 views
moxy: what is the equivalent of RuntimeTypeInfoSet
In jaxb-impl, I can get a RuntimeTypeInfoSet object which can be used to map from the xml metadata to the appropriate java reflection data. What is the equivalent for moxy.
UPDATE: my use case is ...
2
votes
1answer
147 views
JAXB / EclipseLink : unmap a type dynamically
I have a service which should be able to deliver "user profiles" under different level of details or different verbosity modes.
These user profiles are synchronized in a database with JPA2 and all is ...
1
vote
1answer
311 views
Getting MOXy @XmlPath to Work with Namespace
I'm writing a script to parse a KML file using JAXB and MOXy, but I'm having difficulty getting @XmlPath to work with a provided namespace.
If my KML looks like this:-
<kml>
...
1
vote
1answer
525 views
Unable to unmarshall XML using Jaxb and XMLPath
I have an XML which needs to be mapped to a Java object i.e. a DTO. My XML has some wrapper elements which don't have any java objects in my DTO.. my XML looks something like this
<UseCaseView>
...
1
vote
1answer
496 views
DescriptorException “Missing class indicator field from database row” exception when unmarshalling XML using EclipseLink JAXB (MOXy)
I'm having a problem using Moxy to marshal/unmarshal Salesforce outbound message XMLs. The exception that I'm getting is:
javax.xml.bind.JAXBException
- with linked exception:
[Exception ...
2
votes
1answer
386 views
Getting a List<String> from XML using JAXB (Moxy)
I am using jdk1.6 and eclipselink-2.3.2.v20111125-r10461
I have an XML similar to:
<alpha>
<beta>
<omega>abcd</omega>
<gamma>
...
1
vote
1answer
256 views
MOXy JAXB: how to map several XML tag elements to the same JAVA bean property
I am trying to unmarshall an XML file using MOXy JAXB. I have a set of classes, already generated, and I am using Xpath to map every XML element I need into my model.
I have an XML file like this:
...
1
vote
1answer
141 views
Undefined Tag in xml generated by MOXy
I have a JPA entity class with jpa annotations but without jaxb annotations:
@Entity
public class Category extends EntityObject {
@Id
private long id;
// getter setter and stuff
}
...
4
votes
2answers
2k views
How to POST JSON request to a Jersey REST service?
I can successfully post XML data to my service, but, trying to do the same using JSON is failing. The POJO is:
@XmlRootElement
public class Address {
String city;
String zip;
//Getters ...
2
votes
1answer
246 views
Unreferenced static inner classes treated differently by MOXy and the RI
Let's say I have the following two classes:
package example.model;
public class Model {
public static class Inner {}
public Other prop;
}
and
package example.model;
public class Other {
...
2
votes
1answer
2k views
JAXB: Marshal output XML with indentation create empty line break on the first line
When I marshal an XML with this attribute
marshal.setProperty(Marshaller.JAXB_FRAGMENT, Boolean.TRUE);
marshal.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
it will generate an empty ...
1
vote
1answer
415 views
eclipselink moxy xpath - selecting all child elements of the current node or all elements in a document with a particular name
i have this xpath defined for moxy in a jaxb class
@XmlPath("child::*/REG")
public List entries;
but it won't unmarshal the xml document correctly. the List variable called entries is empty.
i've ...
1
vote
1answer
274 views
JAXB(MOXy) -mapping one model object to different schemas
I'm facing problem with mapping one model Object (for example: GroupHeader) for different schemas. Each of this schema has different namespace, But some of the complextypes has almost same structure ...
1
vote
1answer
151 views
Moxy + inheritance + package name as xml-root-element
I'm trying to marshall a class that is extending abstract class using eclipseLink moxy:
public abstract class AbstractExample {
private String fieldA;
private String fieldB;
// Getters, ...
3
votes
1answer
341 views
how to set characterEscapeHandler for moxy jaxb
I'm trying to set custom characterEscapeHandler for moxy jaxb but getting exception:
javax.xml.bind.PropertyException: name: com.sun.xml.bind.characterEscapeHandler value: ..
I do it (and it ...
2
votes
1answer
454 views
JAX-B: Missing XML attributes on child elements
Edit: I originally left out what may be an important detail from my question -- My service methods that return Java objects to be marshaled return an interface type (Foo) rather than the class ...
3
votes
1answer
1k views
Configuring CXF with Spring to use MOXY for XML marshalling/unmarshalling
I have a Java server application that uses CXF to provide SOAP and REST web services. Currently it uses the reference implementation of JAX-B for XML marshalling/unmarshalling, but I have configured ...
2
votes
1answer
1k views
eclipselink/Moxy : inheritance and attribute name oveloading based on type
I'm facing a marshalling/unmarshalling problem involving inheritance and polymorphism using MOXy's JAXB implementation and external metadata bindings file.
I have no control on the XML files or the ...
1
vote
1answer
457 views
JAXB-ElipseLink: Marshaller not validating
I would like my Eclipselink 2.3 Marshaller to perform validation upon marshalling.
I have made sure that the Schema is correctly created by a SchemaFactory, i am passing it to Marshaller.setSchema and ...
1
vote
1answer
161 views
JAXB-ElipseLink: @XmlJavaTypeAdapter and the type-attribute
I am using @XmlJavaTypeAdapter to marshal fields of type Map to XML. This results in EclipseLink-MOXy creating an xsi:type="<myValueType>"-attribute on the output xml-element.
Upon validation ...
2
votes
1answer
265 views
JAXB-ElipseLink: Preventing marshalling of inherited property
Again i am having an EclipseLink 2.3 marshalling-usecase that seems to be quite trivial but not working as expected:
I have an abstract base class which defines a property getX(). I have several ...
2
votes
1answer
473 views
JAXB-Eclipselink: XmlRootElement and inheritance
Using Eclipselink/MOXy 2.3 i have following usecase in marshalling to XML:
abstract class MyAbstract {
}
class MyImpl extends MyAbstract {
}
class A {
private MyAbstract myAbstract;
// ...
1
vote
1answer
298 views
Jaxb EclipseLink/MOXy : Is it possible to specify the names of get/set methods
I have a quite simple question :
Say I have a model class defined like this :
public class Test{
private String testAttribute;
public Test(){
}
public String ...
2
votes
1answer
297 views
JaxB EclipseLink/MOXy : Supposedly empty date marshalled as today's date instead of no writing a node for it
Once again I have a question about Eclipselink/MOXy with external metadata mapping file.
I have a reference xml which applies to a class. This xml contains data that applies to some but not always ...
2
votes
1answer
444 views
Jaxb Moxy with Hibernate? on Jboss 6.1
Is it possible to use Moxy With Hibernate?
And if so how do i install it, have tried to find documentation of it but found nothing.
2
votes
1answer
793 views
How to handle java.util.Date with MOXy bindings file
i'm new to MOXy and JaxB in general and I'm facing a problem with java.util.Date conversion.
I'm unmarshaling an XML file (which I have no control of) to objects using a mapping file (I can neither ...
1
vote
1answer
243 views
JAXB-Eclipselink: Inherited properties
I have following use-case for marshalling a POJO to XML using Eclipselink MOXy 2.3:
public abstract class A {
public abstract getX();
}
public class B extends A {
private Foo x;
...
1
vote
1answer
148 views
EclipseLink MOXy @XmlPath support for predicate inequality
Having previously posted EclipseLink MOXy @XmlPath support for axes/parent
I'm still working with @XmlPath annotation and it appears to me predicate inequality isn't supported?
@XmlPath("node[@attr ...
2
votes
1answer
525 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
1answer
150 views
How do I un/marshall attributed elements in JAXB?
It seems like this should be fairly obvious, but I can't find anything on how to simply (un)marshall XML elements which also have attributes using JAXB.
In other words, I understand how to use JAXB ...
2
votes
1answer
224 views
How do I use Moxy from Scala?
This is a follow-on question from How to un/marshall underscored XML to/from camelcased Java using JAXB?
I'm trying to use Moxy (part of EclipseLink) from Scala (sbt 0.10.0), and am struggling to ...
1
vote
1answer
111 views
Check my JAXB implementation
I am trying to use Eclipselink's MOXy. I put jaxb.properties file in the same directory as my annotated classes and it contains the entry:
...
5
votes
1answer
362 views
EclipseLink MOXy @XmlPath support for axes/parent
Are any of the following XPath expressions acceptable? Using version 2.3.1 of eclipselink
@XmlPath("../header/@type")
@XmlPath("/root/header/@type")
@XmlPath("parent::*/header/@type")
Basically ...
1
vote
1answer
1k views
Mapping xml to jpa entities using JAXB
Isn't it possible to map xml to jpa entities using JAXB? Will Eclipselink Moxy be helpful?