Tagged Questions
1
vote
1answer
218 views
Type of substitution group or any of its subclasses are not known to this context
I can't seem to get all the JAXB magic right with regard to the abstract super-class generated from a substitution group. I'm using the reference implementation of JAXB.
Here's the class hierarchy:
...
1
vote
0answers
214 views
Jackson/JAXB serialize List without the wrapper element
I am trying to use Jackson's XML annotations to serialize a Map to XML. I am converting the Map to a List in order to use the map keys as the element names and the values as the element values, and I ...
1
vote
1answer
229 views
Unmarhshalling a tricky CDATA element using JAXB
I want to use JAXB to unmarshal the following into a 'Tag' object. This is how the client passes the results to me -
<Tag type="a">
<![CDATA[html text here]]>
</Tag>
Note ...
2
votes
1answer
56 views
Preventing a class member conversion to JAXB XML
Here is my JAXB class,
@XmlRootElement
public class Status {
private int code;
private String message;
public Status() {
}
public Status(int code, String message) {
...
1
vote
2answers
767 views
Generating automatically the jaxb.index file using maven
I have a package with multiple java classes inside.
I need to read xml files with the package's classes data.
Is there an automatic way (using maven) to generate the ObjectFactory class or the ...
0
votes
2answers
646 views
setting namespace of objects dynamically in jaxb marshalling
I have a situation where I need to setup my namespaces dynamically for my jaxb classes. my namespace in jaxb classes have a version that needs to be dynamically changed.
@XmlRootElement(name = ...
5
votes
1answer
748 views
Using JAXB to support schemas with minor variations
The Situation
I need to support generating XML documents based on schemas that vary only slightly between each other. Specifically, the schemas that I need to support are based on industry standards ...
1
vote
1answer
1k views
JAXB marshalling exception javax.xml.stream.FactoryConfigurationError running with Java 5
I am trying a simple JAXB marshaling in my JUit test class and I am using Java 5. I get this error while running the test.
javax.xml.stream.FactoryConfigurationError: Provider ...
4
votes
2answers
1k views
Unmarshalling a Socket's InputStream closes the Socket?
I have a server-client architecture where the client sends an XML to the server who reads it and generates a PDF out of it and sends that back to the client.
On the client side:
...
6
votes
2answers
699 views
@XmlElements marked with @XmlJavaTypeAdapters?
I have this situation
@XmlType(name ="", propOrder={"value"})
@XmlRootElement(name = "compound")
public class Compound extends Value {
@XmlElements({
@XmlElement(name="simple", ...
12
votes
3answers
14k views
Is it possible to customize the namespace prefix that JAXB uses when marshalling to a String?
For example, I've got a simple schema which imports another schema. The second schema (urn:just:attributes, just-attributes.xsd) just defines an attribute group.
<?xml version="1.0" ...
5
votes
5answers
7k views
What is the Jaxb equivalent of a Text node value?
I am looking to convert a class that looks like this ...
public class Amenity {
public String id;
public String value;
}
into the following XML using JaxB annotations:
<amenity ...

