1
vote
2answers
29 views

Strange “missing an @XmlRootElement annotation” error, only with Maven, works in Eclipse

I wrote code that marshals xml data. Before marshaling the data to output i validate the data the way Blaise Doughan suggests here Running a simple test in eclipse (marshaling data an validating it) ...
1
vote
1answer
31 views

Cannot import EclipseLink MOXy

I downloaded the latest EclipseLink (2.4) and put the eclipselink.jar in my folder. However, I do not see the @XmlInverseReference annotation anywhere and I cannot import ...
1
vote
1answer
64 views

JAXB - Unexpected elements in XML output

I have a class called Building. It has a list of BuildingBenchAssociation records (List<BuildingBenchAssociation> benches) BuildingBenchAssociation has a composite id made up of buildingId and ...
1
vote
1answer
20 views

Discrepancy in marshal behaviour

I am testing MOXy 2.5.0 RC1. I marshalled the following to a string: <c r="C3" xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"> <v>20</v> </c> It ...
1
vote
1answer
56 views

One to many and Many to One MOXy @XmlInverseReference EclipseLink 2.5

I'm showing you the class that already I've got and I would like to serialize with jaxb. Unluckly when I try to serialize positionSet inside Person I can't obtain completely all the attribute that ...
1
vote
1answer
72 views

@XmlJavaTypeAdapter, Inheritance and xsi:type

Alright here is what happens when I do the following: Entities.java: All of those classes whose names start with "E" (e.g. EStudent, ETeacher etc.) extends EntityWithId class. public class Entities ...
1
vote
3answers
95 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"); ...
2
votes
1answer
61 views

JAXBContext handling of @XmlValue

I've come across this problem in my code: when all fields except for the one declared @XmlValue are null, MOXy marshals out the field as if it were the sole value of the whole object. I realize this ...
1
vote
1answer
50 views

@XmlAnyElement and @XmlElementRefs

I use following annotated class for unmarshalling with MOXy 2.4.0. Unmarshalling into this object works just fine @XmlElementRefs({ @XmlElementRef(name = "a", namespace = ...
1
vote
1answer
143 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 ...
1
vote
1answer
80 views

Configuring MOXy's @XmlPath with XML containing CDATA

I am trying to use XPath to map an XML document via EclipseLink JAXB (MOXy). But it encounters problems when the XML contains CDATA tag Example: <![CDATA[Jill's Box Company]]> I am using ...
1
vote
2answers
100 views

How do I get EclipseLink JAXB (MOXy) to not display namespaces in XML output

I'm trying to move from the JAXB reference implementation to EclipseLink JAXB (MOXy) because it appears to solve JAXB outputting invalid XML when data contains non-displayable chars but I have a ...
1
vote
1answer
73 views

unmarshal to different object using MOXy

I have a response xml with root element SearchResourceResponse. I need to unmarshal that into a different custom(HSIDetails) object.I started using MOXy as my JAXB (JSR-222) implementation. is my ...
1
vote
1answer
80 views

EclipseLink error 50035 when using XmlIDREF/XmlID with interfaces and generalization

I am trying out the @XmlIDREF reference approach. The annotation is: /** * getter for Attribute/List<Attribute> attributes * @return attributes */ ...
2
votes
2answers
324 views

Unable to create DynamicJAXBContext - Problems bootstrapping from GML schemas

Updating this post with my latest examples based on responses below. I am attempting to use MOXY to create a DynamicJAXBContext using a simple schema which uses GML 2.1.2 schemas (which imports ...
1
vote
1answer
58 views

unmarshalling into single class using eclipselink

i have created a Company class that does produce xml like below using marshalling : <?xml version="1.0" encoding="UTF-8"?> <ns2:company xmlns:ns2="http://www.example.com/"> ...
2
votes
2answers
105 views

JAXB/MOXy: Wrong namespace for element

I am using MOXy and classes which belong to different namespaces, but MOXy always adds the wrong namespace to the referenced object. Why is this simple example not working as expected? AtomLink.java: ...
1
vote
1answer
48 views

MOXy does not import other schemas that it generates

I follow the instruction here in order to generate the XML Schema for my annotated classes. I am using MOXy for the underlying implementation of JAXB because I need its certain features like @XmlPath ...
1
vote
0answers
53 views

JAXB MOXy 2.4.1 Property Overloading not working

I have two inherited classes (ClassTop --> ClassChild) holding a data class each which have inherited properties too (ClassTopData --> ClassChildData): ClassTop: ...
2
votes
1answer
130 views

How to mark up 3rd party immutable object in JAXB(Eclipse MOXy)

I have three 3rd party immutable objects(Foo, Bar, BarFactory) and binding.xml. I'd like to mark up 3rd party immutable objects in binding.xml, but JAXB require zero argument constructor. Is it ...
0
votes
1answer
47 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
47 views

Using MOXy with private XmlAdapters?

I was previously using Sun's RI of JAXB but ran into a bug where I could not use a custom marshaller to marshal to null strings. I have now switched to MOXy to avoid that issue, but I found that, at ...
1
vote
1answer
277 views

Dynamic CDATA in JAXB using MOXy

I am using EclipseLink JAXB (MOXy). I have an issue where a property of a java class can be CDATA or not dynamically. For example, class Embed{ //@XmlValue only //OR @XmlValue @CDATA private ...
1
vote
1answer
38 views

Parsing Mixed Markup with MOXy, maybe using Transformers

Using MOXy 2.3.1, but could upgrade if it would help. I have the following XML: <myelement> text content <b>mixed</b> with tags </myelement> Which I would like to be stored ...
1
vote
1answer
73 views

Complex XPaths using EclipseLink MOXy and JAXB

I am currently using EclipseLink MOXy 2.4.1 and trying to update an element's value via XPaths. The input used is : <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <expenseReport> ...
3
votes
1answer
132 views

@XmlInverseReference annotation not working

i found similar questions, but none of asnwers helped me. So, i have 2 objects with a back-pointer relationship. Parent : @XmlRootElement public class A { private B b; @XmlElement(name = ...
1
vote
1answer
68 views

MOXy NoMessageBodyWriterFoundFailure

I'm trying to use EclipseLink MOXy as my JAXB Provider, but I'm still having some problems. I've already put a jaxb.properties file in the same package as the Error class. Nonetheless, I still get ...
1
vote
1answer
44 views

Errors in XML schema from MOXy

I'm trying to generate an XML schema using JAXBContext.generateSchema(..). My class looks something like this: @XmlRootElement @XmlAccessorType( XmlAccessType.FIELD ) class Person { @XmlAttribute ...
2
votes
1answer
77 views

Same Object With Different Mappings Depending on Context (MOXy)

I'm using EclipseLink MOXy as my JAXB (JSR-222) provider and need some help with my mapping file to marshal my classes into XML. I'm using an external file for my mapping. I have two types of ...
1
vote
1answer
149 views

Equivalent to @XmlElement.required in @XmlPath in EclipseLink MOXy

How to implement @XmlElement.required flag using @XmlPath annotation in EclipseLink MOXy 2.4.1 version?
3
votes
1answer
146 views

@XmlDiscriminatorNode/@XmlDescriminatorValue not working on WebLogic Server

Following are the classes I am using for create sub classes using MOXy JAXB conversion on WebLogic 10.3.2 version. I am using the EclipseLink 2.4.1 MOXy for generating the XML. I am unable to generate ...
2
votes
1answer
85 views

Ignore SuperClass

I'm using a class that extends a JavaFx's component public class MyClass extends Pane {} I want to serialize that class only and not the Pane superclass. As Jaxb does not support it, I'm using ...
1
vote
1answer
123 views

EclipseLink JAXB and JPA memory overhead

I have an application with lots of entities (3000) which needs to be returned by a web services and stored in the database. I've started with Hibernate and CXF / Sun JAXB implementation. After some ...
1
vote
0answers
128 views

Configure CXF JAX-WS service to work with MOXY

Although I've added a jaxb.properties with MOXY factory and I see that the JAXB was switched to moxy, CXF has a method named createRIContext in the JAXBUtils class which loads hard coded the sun JAXB ...
1
vote
2answers
777 views

JAXB Compiling Issue - [ERROR] Property “Any” is already defined

I am trying to create JAXB binding for xccdf-1.1.4.xsd which is a standard schema that can be obtain from XCCDF Schema Location I am currently using EclipseLink MOXy as my JAXB implementation since I ...
3
votes
1answer
103 views

Use Eclipselink and Moxy to write List<someObject> to file

I’m using Eclipselink JPA and have a collection of DB Entities I want to write to a file in case my DB connection is not available on subsequent queries. I’d like to use Moxy to simply marshal my ...
2
votes
2answers
607 views

How to set namespace aware to false?

I'm trying to parse some XML with EclipseLink MOXy, and it's failing on the line with the xsi attribute. If I remove this, it parses fine. However, I've got 100GiB of XML to wade through and changing ...
1
vote
2answers
139 views

Is EclipseLink MOXy suitable for ridiculously huge XML files?

I've spent some enjoyable time with EclipseLink MOXy, figuring out the best way to parse XML into POJOs within Spring. I've now been given some XML to parse, and the files go up to a quite ...
1
vote
1answer
139 views

JAXB outputting invalid XML when data contains non-displayable chars

I'm using JAXB 2.2.5 to output Xml from a JAXB Model, the data is populated from the database and occasionally the database contains non-displayable characters that it should not such as 0x1a If ...
2
votes
1answer
280 views

MOXy's @XmlCDATA seems to have no affect

I would like to have the following returned to the browser (view source) <content> <![CDATA[Please show this inside a unescaped CDATA tag]]> </content> But I acutally get ...
1
vote
1answer
79 views

Reading the same element twice with EclipseLink MOXy

Is it possible to read the same element into two different Java properties using EclipseLink MOXy? In the below example I'm mapping the <publication> document as a class, and the <date> ...
2
votes
1answer
226 views

Ignoring DTDs when unmarshalling with EclipseLink MOXy

When trying to unmarshall some XML into a POJO using EclipseLink MOXy I'm getting a FileNotFoundException where it's looking for the document's DTD as a relative path. Exception in thread "main" ...
1
vote
1answer
59 views

unexpected result using jaxb eclipselink2.2 with cdata

<ITEM> <PRODUCT_NAME>IT'S ALL ABOUT YOU-LG:9&quot;H RUBY GATHERNG VASE,RD ROSE,LIME GRN CARN,PURP STOCK,LAV POMS,ATHOS POM,SEAFOAM STATICE,SALAL</PRODUCT_NAME> ...
4
votes
2answers
656 views

Moxy error with Karaf

I'm using MOXy under fuse ESB (based on karaf), I converted org.eclipse.persistence.jar to a bundle, I deployed this bundle under fuse ESB and I got this error Error : ...
1
vote
1answer
131 views

JAXB MOXy Binder issue when using @XmlAnyElement annotation

I have an issue when using the Binder implementation in MOXy. Here is the input XML document (input.xml) <?xml version="1.0" encoding="utf-8"?> <root> <unmapped /> </root> ...
0
votes
0answers
100 views

Unmarshalling XML into a class having multiple many to one relationship

I am trying to unmarshal a XML into a class whose design are as below Class A Class B Class C Class D The relationship between Class A and Class B is one to one bidirectional. The relationship ...
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
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
692 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 2 3 4