Tagged Questions
1
vote
3answers
100 views
JAXB Eclipse MOXy Nullable value and retrieve only a specified key in a Map
I have another more tricky question:
E.g. Person Class has: --String firstName --String lastName --Map stringMap
Person person = new Person ();
person.setFirstName("FirstName");
...
1
vote
1answer
148 views
Exception : “Missing class indicator field from database row [UnmarshalRecordImpl()].” when unmarshalling XML using EclipseLink JAXB (MOXy)
Is it any way to unmarshalling with @XmlDescriminatorNode/@XmlDescrimintatorValue annotations next XML, or any workaround:
<assets>
<asset type="full">
<data_file ...
0
votes
1answer
48 views
MOXy generating readable XML
I would like to know if there is a convenient way to customize the output xml of MOXy?
Specifically, in some classes I would like to print the attributes in separate lines.
For example:
...
1
vote
1answer
649 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
124 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
168 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
149 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
2answers
263 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
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 ...
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 ...
2
votes
1answer
389 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
275 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 ...
2
votes
1answer
1k views
Using MOXy's @XmlCDATA annotation with jersey
I'm working on REST web-service written with jersey and I'm trying to output some XML with CDATA sections in it. I understand the reference implementation of JAXB doesn't support that, so I've ...
2
votes
1answer
3k views
JAXB: Qualified attributes disables default namespace xmlns=“”?
When I use @XmlSchema(attributeFormDefault = XmlNsForm.QUALIFIED, ...)
or@XmlAttribute(namespace = "sample.com/y", ...)
JAXB ignores @XmlSchema(namespace = "sample.com/x", ...)
and instead of:
...
2
votes
1answer
278 views
Can I use the JAXB2 Basics plugin with the MOXy JAXB implementation from EclipseLink? If not, is there an alternate?
Ultimately I want JAXB to generate hashCode and equals implementations. The JAXB2 Basics plugin does that and it works fine for the Metro JAXB implementation in the JDK but fails with MOXy.
I get:
...
4
votes
4answers
5k views
JAXB 2.x: How to unmarshal an XML without knowing the target class?
If there is a way, how to do this, I'd like to know the most elegant one.
Here is the question:
- Let's assume you have an abstract class Z
- You have two classes inherited from Z: named A and B.
You ...