I have a problem, I have some JAXB generated java files between which there is the well known \"package-info.java\" which just contains 2 lines of code, an annotation and a package definition:
Does JAXB support modular code generation? Most of my background is with JibX for XML marshalling, but for legacy reasons our firm is using JAXB.
In my Android app I use: import javax.xml.bind.JAXBContext; But I get: The import javax.xml.bind cannot be resolved
I have tried in many different ways to send my xml document over a socket connection between a server and a client without closing the socket after sending (keep the outputstream open, for sending ano
I am marshalling objects to XML file using encoding \"UTF-8\". It generates file successfully. But when I try to unmarshal it back, there is an error:
I was trying to figure out if it is possible to unmarshall an xml element to multiple pojos. for example:
I\'m using JAXB 2.2.2 to parse a simple XML-REST stream. This is the piece of code: JAXBContext jc = JAXBContext.newInstance( \"com.example.entities\" );
I am having some problem mapping my Java Data Type to standard Schema Date data type. I have a simple class that I annotated like this.The period instance variable is of Java Date object type.
I am currently learning JAXB and Web Service and I have this problem that I dont know how to solve. Suppose I have this very simple class that I annotated with JAXB.
I have a very basic application that uses JAXB marshaller to validate input information against an xsd schema. I register a validation event handler to obtain information about the exceptions. What I