-1
votes
0answers
26 views

Jaxb marshelling is changing the xml format

I have written a jaxb parser to convert xml to object and object to xml. I just tried converting an xml input to object and tried converting it back to xml string and I could see the xml is getting ...
2
votes
2answers
86 views

JAXB: how to unmarshall Java object composed from multiple tags or attribute values

I am converting from SAX parser to JAXB - can't figure out how to unmarshall multiple tag/attribute values into single (compassable) Java POJO. I have xml file like this: <item validFrom="1950" ...
1
vote
2answers
467 views

JAXB 2: unmarshalling xml without xml declaration

Good time! I have an xml: <fieldSet name="Test" desc="Test"> <field name="id"> <fieldinfo> <name>id</name> <type>String</type> ...
1
vote
1answer
377 views

Creating an XML with attributes and dynamic values using JAXB

I want to Create an XML using JAXB. It should have attributes in it whose values have to come from a property defined in corresponding class. The current output is giving a property as a child tag, ...
1
vote
1answer
226 views

Creating an XML with Dynamic Tag names using JAXB

I have to Create an XML using JAXB. But it should have Dynamic tag names. Thats the confusing part in terms of design of POJO's and applying annotation on it. What should be the POJO structures, and ...
2
votes
2answers
101 views

How to generate class with field of type Date from xs:string element with JAXB

I have xsd schema file which I can't change. Here is an excerpt that makes my problem: <xs:element name="Event" maxOccurs="unbounded"> <xs:complexType> <xs:all> ...
0
votes
0answers
557 views

@XmlAnyElement on a single Object to accept entities (@XmlRootElement) and java.lang.String

I want to annotate a single element to marshall to : <root> <entity>Any String</entity> </root> and <root> <entity> ...
1
vote
0answers
1k views

JAXB: error unmarshalling element containing xsi:type with namespace

If I have the following schema: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="test" xmlns="test" version="1.0" elementFormDefault="unqualified" ...
3
votes
1answer
2k views

How to handle forward references of XML IDREF with JAXB XmlAdapter during unmarshal?

Is it possible to handle forward references of XML IDREF elements in JAXB XmlAdapter during the unmarshal process? For example, I have the following XML complexType: <xs:complexType ...