Tagged Questions

XJC is an AXIS2 tool for compiling XSD (XML Schema) to Java source code.

learn more… | top users | synonyms

21
votes
1answer
2k views

JAXB multiple schemas with element reference

I have two schema's which are processed using JAXB. The first schema is preprocessed and information of this is used using an episode file (following ...
20
votes
8answers
19k views

No @XmlRootElement generated by JAXB

I'm trying to generate Java classes from the FpML (Finanial Products Markup Language) version 4.5. A ton of code is generated, but I cannot use it. Trying to serialize a simple document I get this: ...
14
votes
1answer
10k views

How to generate a Java class which implements Serializable interface from xsd using JAXB?

I would like to introduce caching into an existing Spring project which uses JAXB to expose WebServices. Caching will be done on the level of end points. In order to do that classes generated from XSD ...
10
votes
7answers
12k views

Generating a JAXB class that implements an interface

I'm currently using JAXB to generate java classes in order to unmarshall XML. Now I would like to create a new schema very similar to the first and have the classes that are generated implement the ...
7
votes
5answers
1k views

JAXB List Tag creating inner class

So we have an XSD type in the form: <xs:complexType name="Foo"> <xs:all> <xs:element name="Bars"> <xs:complexType> <xs:sequence> ...
6
votes
1answer
193 views

Java: JAXB: Marshelling of JAXBElement<Calendar> to xs:date not correct

I have a problem using JAXB. I've created my Java Classes via xjc (using an xsd-schema) and has a global binding for the XML-Datatypes xs:date xs:dateTime and xs:time to java.util.Calendar with parse ...
5
votes
3answers
191 views

JAXB / XJC parent-child-parent navigation

i would like to have bidirectional navigation methods in classes between child object and parent object. IDREF is not enough in my case because I don't want to specify le id of parent. to be clear, ...
5
votes
2answers
2k views

JAXB: How to change XJC-generated classes names when attr type is specified in XSD?

I'm a beginner to JAXB and I'm having annoying issues when generating Java classes with xjc. I am provided with a XSD like this: <xs:element name="item" type="itemType"/> ... ...
5
votes
2answers
7k views

How can I process multiple xsd shemas using jaxb and the Ant xjc task?

I'm using jaxb to generate java object class from xml schemas within an Ant script like so: <!-- JAXB compiler task definition --> <taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask" ...
4
votes
1answer
99 views

How to avoid unnecessary namespace declarations in a marshalled element/tag?

I have a XSD which is not self created but received from another party. So I can't change this XSD because I must ensure comptibility with the other party. Using XJC 2.2 and JAXB 2.2 using simple ...
4
votes
1answer
863 views

JAXB Ant Task Error: xjc2 [ERROR] null unknown location

When binding on some valid XML documents using Ant's xjc2 task, I get the following failure message: [xjc2] [ERROR] null [xjc2] unknown location The documents are very similar to other files which ...
4
votes
3answers
2k views

How to make generated classes contain Javadoc from XML Schema documentation

I'm currently working with an XML Schema that has <xsd:annotation>/<xsd:documentation> on most types and elements. When I generate Java Beans from this XML Schema, then the Javadoc of ...
4
votes
1answer
1k views

jaxb unmarshal abusable by crafted xml when using default sax parser?

So in my current project I use the JAXB RI with the default Java parser from Sun's JRE (which I believe is Xerces) to unmarshal arbitrary XML. First I use XJC to compile an XSD of the following form: ...
4
votes
1answer
8k views

How to generate @XmlRootElement Classes for Base Types in XSD?

I am having some issues with generating Java Classes with appropriate JAXB annotations from an XSD using XJC. I have a relatively simple XSD file defining my XML schema. The complex types within the ...
3
votes
1answer
166 views

JAXB empty node in bindings

JAXB can't parse the bindings for this example: <xs:element name="classA" type="classA" substitutionGroup="classSubA"/> <xs:complexType name="complexClassA" mixed="true"> ...
3
votes
0answers
199 views

XJC generate another field type (effect on get method)

Using the latest JAXB (Metro) and generating Java with XJC.... Want to (as other users have asked) generate java.util.Set as a type for fields that represent unbounded sequences. Looks like that ...
3
votes
2answers
313 views

JAXB code generation: restricted type -> how to remove a zero occurrence field?

I use JAXB 2.1 to generate Java classes from several XSD files that I cannot modify (coming from a WSDL file actually), and I have a problem related to complex type restriction. On of the restrictions ...
3
votes
2answers
995 views

JAXB XJC code generation - ObjectFactory class is incomplete

I generate Java classes from my XSD schema file using XJC command line tool. The ObjectFactory class generates incomplete content. It generates creation methods without JAXBElement<Type> ...
3
votes
2answers
2k views

Prefixing JAXB generated classes

I have this Maven "task" to generate Java classes from an XSD file using JAXB. <!-- XML to Java classes --> <plugin> <groupId>com.sun.tools.xjc.maven2</groupId> ...
2
votes
2answers
137 views

What is JAXB generated package-info.java

I'm trying to find some information on what the package-info.java file generated by the JAXB xjc commandline app actually does. All that is in the file is ...
2
votes
1answer
118 views

XJC Generating Integer Instead of int

The following schema should be generating two primitive int fields in a Value class, but instead generates a primitive int for the element and java.lang.Integer for the attribute. <?xml ...
2
votes
1answer
433 views

JAXB XJC - XPath evaluation results in empty target node?

I've got the following simple XSD document (foo.xsd): <?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" ...
2
votes
2answers
119 views

How do I separate the <xsd:choice/> sub-elements into individual Collection properties using JAXB?

I have the following XSD fragment that is from a Vendor, I can't change the way it is specified: <xsd:element name="navmap"> <xsd:complexType> <xsd:choice minOccurs="0" ...
2
votes
1answer
208 views

Using ANT with multiple XSD and single XJB

I have a custom external XJB file that has the schema name within it as follows : jxb:bindings schemaLocation="completeCheck.xsd" node="/xs:schema" Just wondering, is there a way to substitute the ...
2
votes
1answer
92 views

JAXB classImpl binding (to use specific impl that extends generated impl) but getter return super type

to wrap some generated classes, i use the classImpl binding but collections in generated classes return the generated type instead of the type in classImpl and i want a list of classImpl of course ...
2
votes
2answers
1k views

How can i remove namespace from the generated JAXB File?

Here is my code: xsdFile: <complexType name="Player"> <sequence> <element name="Login" type="string"></element> <element name="Passwd" ...
2
votes
2answers
426 views

Generate additional custom method with jaxb-xjc

there's some way to generate a custom method within an class generated with JAXB. I search around tutorials, including oracle's tutorial, but I didn't find clear instructions how can I custom methods ...
2
votes
4answers
525 views

JAXB: How to use auto-generated classes from Spring?

I am using xjc to generated Java classes from an XSD. The resulting classes only include getter methods for collection types, e.g. List, but no setter methods. How can i use these generated classes as ...
2
votes
2answers
458 views

JAXB XJC compiler disregarding mixed=true on XML Schema documents

XJC seems to be completely ignoring mixed="true" on my XML Schema elements thereby not allowing me to extract text content. From the sample XML below, I need to be able to extract "Title Text." ...
2
votes
1answer
992 views

How generate XMLElementWrapper annotation with xjc and customized binding

I'm using JAXB and xjc to compile my XML Schema into Java classes. I do not want to manually edit this generated classes. I have xml schema like that: <xs:element name="root"> ...
2
votes
3answers
4k views

JAXB List of Choice

I have following schema <complexType name="BookShelf"> <sequence> <element name="newBook" type="string" minOccurs="0" maxOccurs="unbounded"/> <element ...
2
votes
1answer
3k views

xjc binding customization does not work in jaxb 2.1.3. It works in jaxb 2.0

I developed a binding customization file in jaxb 2.0 in JDK 1.6.0 and it worked fine. Now I'm using jaxb 2.1.3 in JDK 1.6.0_13 and it gives me errors: Error xxx shows up in more than one ...
1
vote
1answer
34 views

Using jaxb converter tool xjc

Is xjc from the command line (having JAVA_HOME\bin in your PATH) running com.sun.tools.xjc.Driver? I.e. Is running the class com.sun.tools.xjc.Driver the same as running xjc?
1
vote
1answer
52 views

Intellij IDEA doesn't recognized XJC task attributes

I have an ant build.xml file with XJC task definition: <taskdef name="xjc" classname="com.sun.tools.xjc.XJCTask"> <classpath> <fileset dir="jaxb" includes="*.jar" /> ...
1
vote
1answer
56 views

Any alternatives to the JAXB XJC-compiler reference implementation from glassfish?

I am wondering if there are any alternatives to the reference implementation of the JAXB XJC-compiler from Glassfish!? Don't understand me wrong, the XJC is working fine. But if this is the "reference ...
1
vote
2answers
101 views

Create a common xsd generated class to be used by other packages

I am trying to use the same generated class but in separate packages. So the structure should look something like this: com.test.common -commonType.java com.test.A -objectA.java com.test.B ...
1
vote
0answers
69 views

How to resolve third-party XML schema collisions?

I'm working with a set of schema descriptor files written by a third party. I need to generate JAXB stubs for them. Each XSD defines a different message type, along with a number of supporting ...
1
vote
0answers
141 views

Specify @XmlJavaTypeAdapter class via bindings file?

I have a 3rd party interface that supplies xsd files that matches their API. Some of their mappings are not quite Java, the usual boolean as 0 & 1 :-( I'd like to use a bindings file to specify ...
1
vote
1answer
230 views

Add/Override behavior on Jaxb generated classes by extending them

I have a web server responding with xml data and a client consuming it. Both share the same domain code. One of the domain objects looks like this: @XmlAccessorType(XmlAccessType.PUBLIC_MEMBER) ...
1
vote
0answers
34 views

How to use xjc generated classes with JDO

we have a collection of POJOs created by xjc that we need to be able to persist through JDO. How would you go about applying JDO annotations to the generated classes?
1
vote
1answer
183 views

Omitting @XmlSeeAlso from XJC output

Currently I'm busy on a project using XML messaging. I have one general schema, with abstract types and some reusable type definitions and elements. For each sort of message I'm dealing with, there's ...
1
vote
1answer
101 views

How to override the default name for in JAXB using a external binding file?

I have an element that looks something like this. <xsd:element name="container"> <xsd:complexType> <xsd:choice minOccurs="0" maxOccurs="unbounded"> ...
1
vote
3answers
208 views

Why JAXB (jaxb2-maven-plugin) skips this attribute?

jaxb2-maven-plugin 1.3 skips an attribute from an object. I cannot modify the XSD. In the XSD (fragment): <?xml version="1.0" encoding="ISO-8859-1" ?> <xs:schema ...
1
vote
1answer
167 views

How to inform xjc not to go through xs:import?

I want to create a java classes from the xsd using xjc ant task. Most of it works ok. I need it not to go through and because it already has mapping done. Here is xsd: <?xml version="1.0" ...
1
vote
2answers
91 views

Combine XSD-descriptions

How could I combine two XSDs to one? I want to use xjc to generate Java classes from the final XSD. The two XSDs I have: http://www.topografix.com/GPX/1/0/gpx.xsd ...
1
vote
2answers
443 views

How to disable Java Naming Conventions in xjc?

For example sOmE_PROPerty in xsd must be sOmE_PROPerty in java class not someProperty. I tried to use globalBindings enableJavaNamingConventions="false" but it doesn't work.
1
vote
1answer
168 views

XJC: Create classes with public fields

I'm using XJC to create Java classes from an XML schema file. The fields in the created classes are protected, which used to be ok for me. But now I'm doing some ...
1
vote
1answer
44 views

How to cache xsds to offload w3c servers?

I'm building a web service based on SAML-P and XACML, which requires a large number of XSDs to be considered by JAX-B/XJC for each build. This takes forever and is exceedingly unreliable, I think due ...
1
vote
1answer
376 views

How can I tell wsimport that separate WSDL files are referring to the same object classes?

I have three different JAX-WS services which use the same classes on the server (e.g. ServiceA, ServiceB, and ServiceC, all of which use MyCommonClass as a parameter). Another module we are developing ...
1
vote
2answers
117 views

How to change access modifier of class in XML schema

I am writing an XML schema file and I generate classes from it. The generated classes are always public. What I want is to have the classes package-visible only. Is this possible ? If yes, please give ...

1 2