The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
47 views

Can I include java source from multiple projects when running schemagen using the jaxb2-maven-plugin?

I have a multi module maven project and I need to build an XML schema from JaxB annotated classes. These classes are in different maven projects. Can I use the jaxb2-maven-plugin to generate a ...
0
votes
0answers
20 views

schemagen removes the “_” in my class name

I have a class with name Test_Client.java, for this when I generate the XSD using schemagen it has generated the complexType name is testClient. The XSD which is part of my WSDL , while using ...
1
vote
1answer
78 views

jaxb schemagen issue in linux when calling from build.xml. Cant find source files?

Here's the details: This works fine on Windows, but won't work on Linux and I need it to work on a Linux machine. schemagen -version gives the same results on both Windows and Linux.. schemagen ...
1
vote
1answer
95 views

How to generate xsd from custom Java class which extends from java.util.Date by JAXB Schemagen

I have a custom java class "CustomDate1" extends java.util.Date, and I want to generate XSD file for it by Schemagen. but seems the in XSD file, the "customDate1" doesn't with the extension item, I ...
1
vote
0answers
106 views

schemagen NullpointerException

Java class: @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "user", propOrder = { "id", "name" }) public class User { @XmlAttribute(required=true) ...
1
vote
1answer
374 views

Where does xmlns:tns come from when using schemagen

We are using schemagen to create an XSD from some annotated POJOs. Here is our ant target <target name="generate-xsd" depends="compile"> <taskdef name="schemagen" ...
1
vote
0answers
97 views

ignore class for jaxb schemagen generation

I have two groups of classes. From the ones in group A I would like to generate an XML Schema using schemagen and the one's in group B I simply want to ignore with regard to the schema generation. ...
1
vote
0answers
140 views

schemagen.exe generates xsd schema with non-determined order of <xs:complexType>

I used org.codehaus.mojo jaxb2-maven-plugin to generate xsd schema for my classes. Plugin site http://mojo.codehaus.org/jaxb2-maven-plugin/faq.html tell, that plugin uses JDK utility schemagen.exe to ...
3
votes
1answer
249 views

JAXB SchemaGen with Enums in a different package

How do you generate a schema from JAXB Objects that reference enums in a different package? Below is an example: Enum Class package com.example.one public enum EnumExample { VALUE_ONE ...
0
votes
0answers
74 views

Exporting to xsd a class derived from Exception (using JAXB)

I want to export with schemagen a class which derives from RuntimeException to xsd file. The problem is that the RuntimeException is exported as the super class but doesn't exist in the xsd (because ...
0
votes
0answers
99 views

maven-jaxb-schemagen-plugin incompatible with JAXB 2.2.5+

When build a JAXB model using the maven plugin version 1.2 with a dependency on JAXB 2.2.5 and greater, the build fails with: java.lang.NoClassDefFoundError: com/sun/tools/jxc/AptBasedTask Examining ...
1
vote
1answer
129 views

How to document contract-last (via jaxb schemagen) webservice?

I've developed a webservice and rightfully my users would like to see documentation. I'd prefer to simply document my code, either with javadoc comments or with an explicit annotation, e.g. ...
-1
votes
1answer
502 views

Execute Schemagen (Jena) from the command line / classpath setting

I am learning the Jena API and I want to use Schemagen to create the classes that look like in the package com.hp.hpl.jena.vocabulary for my own vocabulary; I donwloaded Jena at ...
3
votes
2answers
3k views

Is it possible to get maven-jaxb-schemagen-plugin working with Java 7?

When I try to use maven-jaxb-schemagen-plugin with java 7 <groupId>com.sun.tools.jxc.maven2</groupId> <artifactId>maven-jaxb-schemagen-plugin</artifactId> ...
2
votes
0answers
247 views

JAXB JXC generates schema for enums regardless of @XmlTransient

Using the JXC schema generation ant task, I can't seem to get it to ignore an enum. I have several enums that are used internally to denote type or minor configuration values that are not relevant to ...
5
votes
1answer
5k views

Generating XSD schemas from JAXB types in Maven?

I'm trying to basically generate XSD schemas from my model classes annotated in JAXB using a Maven plugin. Here's the relevant code in my POM: <plugin> ...
2
votes
1answer
2k views

control schema file name created by jaxb schemagen maven plugin (maven-jaxb-schemagen-plugin)

I don't seem to be able to work out how to get control the file name of the XSD file created by maven-jaxb-schemagen-plugin. The documentation is a bit sparse. ...
0
votes
1answer
696 views

Problem Creating Schema Using @XmlElementRef

I'm trying to duplicate a bit of schema by starting with Java and using schemagen (long story). The schema looks like this: <xsd:element name="Responses"> <xsd:complexType> ...
2
votes
1answer
2k views

schemagen ant task ignores package-info.java

The scenario is the following: I have a java package (myapp.config) that contains all my JAXB-annotated classes, from which I'd like to generate an XML schema file. In the package, there is also a ...
1
vote
1answer
780 views

A xml schema created by “Schemagen” of Ant task can customize any more?

Now, I have two Java classes like this. public class HogeDomain { private User userDomain; public HogeDomain() { } and getter/setter.. } public class User { public ...
2
votes
1answer
410 views

JAXB ignoring XmlElement directives

I have a problem generating the schema for a class I have. What I have is: @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public Class User { .... @XmlElement(required = true) protected ...
0
votes
1answer
390 views

how to avoid inheritance when using JAXB schemagen?

I'm using JAXB annotations and schemagen maven plugin to create an xsd. I need to process that xsd with wsdl2py to create a Python's client. But as I have inheritance in my classes, schemagen creates ...
3
votes
1answer
906 views

Generating XML Schema from JAXB class files in Ant

Is it possible to use the shemagen ant Task to generate an xsd schema from class files instead of from source?
5
votes
1answer
507 views

prevent schemagen from adding the super-class to the schema?

how do i prevent schemagen from adding the super-class to the schema? I have tried using XMLTransient on the super-class, and on its fields but they still show up in the schema . for example : ...
1
vote
0answers
230 views

JAXB type Erasure

I'm trying to create java to xsd for a java type that looks like this. public class MainRequest<E extends AParentType<Person>> extends EObject { private Transaction tran; private E e; ...