Tagged Questions
6
votes
2answers
191 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", ...
6
votes
4answers
5k 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" ...
2
votes
1answer
185 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:
...
2
votes
5answers
5k views
What is the Jaxb equivalent of a CData Block?
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 ...