Top "Jaxb" questions

Java Architecture for XML Binding is the Java standard for working with XML as domain objects.

Confused as how to use JAXB XML Adapter for my requirement

I am Using JAXB for unmarshalling process , for which the request comes from the UI to our service class . The …

xml jaxb jaxb2 xmladapter
Generate Java code from WSDL file

I am new to Java. I am trying to create SOAP Web service client to consume a vendors webservice which …

java jaxb jax-ws webservice-client jax-ws-customization
Generate Java classes with JAXB from a DTD file - how can I modify the DTD?

I want to generate Java classes from a dtd file using JAXB. The dtd looks like this: <!--Contents--> &…

java xml jaxb dtd
What is the difference between Castor XML binding and JAXB binding

What is the difference between Castor XML and JAXB binding since both are binding java object to XML and vice …

java xml jaxb castor
JAXB element name based on object property

I have to create object model for following XMLs: XML sample 1: <InvoiceAdd> <TxnDate>2009-01-21</…

java jaxb quickbooks
Proper fix for Java 10 complaining about illegal reflection access by jaxb-impl 2.3.0?

We are looking at upgrading some legacy code to Java 10. As JAXB is not visible by default (EDIT: and the …

java maven jaxb java-10
Resolving type definitions from imported schema in XJC fails

I've got this API using JAXB to conveniently use object models, generated from XML Schemas by the XJC (XML-to-Java) compiler, …

maven jaxb xjc xmlcatalog jaxb-episode
Jaxb equivalent in C#

Using JAXB in Java it is easy to generate from a xml schema file a set of Java classes that …

c# linq linq-to-xml jaxb
Defining package names for common XSD's with xjc and bindings

I'm trying to generate Java classes from several specific XSD's with xjc. Those schemas have some definitions in common, so …

java xml xsd jaxb xjc
unmarshalling nested objects from json

I have incoming JSON strings and I need to unmarshall into JAXB annotated objects. I am using jettison to do …

json jaxb jettison