2
votes
1answer
42 views

root element is already defined jaxb

My problem is that I have two Schemas A.xsd B.xsd they both share the same root, I'm gonna try to exemplify A.xsd <xs:element name="A"> <xs:complexType> .my elements on A ...
1
vote
1answer
33 views

Extending or redefining XSD complexType

I try to extend the sitemap.xsd : I would like to add a new element (called 'crawl') to the tUrl complexType. So I created a sitemap-extended.xsd (I have redefined sitemap.xsd and I have extended ...
0
votes
1answer
98 views

jaxb2 maven plugin, define multiple schema files in separate tags

I'm using maven jaxb2 plugin to generate Java classes from xsd files. Recently i faced problem, my schema files list geting really long, and I wrote all of them down in shemaFiles tag as comma ...
0
votes
1answer
139 views

Validate an XML generated using JAXB Classes (not by XSD)

If XML is generated by JAXB classes(not by XSD), I don't have an XSD to validate. How do I validate the XML? Does the JAXB does validation of XML automatically before it starts unmarshalling?
1
vote
2answers
286 views

JAXB - marshalling with recursive dependency

is anybody try to marshal JAXB object with recurisive referency? I have following class: public class A { private Long id; private String name; private List<A> aList; } and I'd ...
1
vote
2answers
388 views

JAXB generates faulty classes

after generating some classes from a xsd file, the classes are faulty. a @xmlElementRef is used with required="false" and that attribute is not allowed. My .xsd I'm using: <xs:schema ...
1
vote
1answer
37 views

Unmarshalling XMLs generated from two XSDs

Here are two xsd definitions, both of them are almost 90% similar.Below are the skeleton of the first xsd: XSD1 : <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element ...
0
votes
1answer
252 views

XSD(maxOccurs=(specify large value))- java.lang.OutOfMemoryError: Java heap space

when we deploy the application on tomcat server I have been facing java.lang.OutOfMemoryError issue because we specify large values for "maxOccurs" attribute(i.e. maxOccurs="999999")in the schema ...
1
vote
1answer
268 views

JAXB: Ignore order of elements while using xs:extension

We are using JAXB for Java-xml binding.We initially created domain class and then using schemagen commandline tool the following schema has been generated. But generated schema is not valid, giving ...
3
votes
1answer
158 views

Generate source using jaxb from an xsd that is in my classpath

I'm trying to generate java classes using JAXB from a schema in my class path. For CXF I generated java classes from a wsdl in my classpath like so: <wsdlOptions> <wsdlOption> ...
1
vote
1answer
742 views

JAXB Generated classes giving namespace cannot be resolved error

Reference to my previous 2 posts (post 1, post 2). Now i am stuck at another weird problem (I am noob at JAXB). I have generated the Java classes using my book.xsd (which included bookList and book as ...
1
vote
2answers
568 views

XSD for having 2 root elements (1 at a time)

So here is a complex/retarded situation. I am writing an XSD and there happens to be a requirement where i need 2 root elements (1 at any given time) <xs:element name="booksList"> ...
0
votes
1answer
563 views

JAXB default values from xsd when generating beans with xjc

When generating java beans from xsd files I would like to have the default values defined in the xsd file pre-set in the java beans as well. The unmarshalling process does not care about xsd defaults, ...
2
votes
2answers
502 views

Generating JAXB class from XSDs with similar attribute names

I use maven-jaxb2-plugin to generate jaxb annotated classes from xsd. I have many xsd files like those: <?xml version="1.0" encoding="UTF-8"?> <xs:schema ...
0
votes
1answer
86 views

How to access jaxb:class element

How do I get the jaxb:class element to show? I currently have the following xsd: <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" ...
2
votes
2answers
654 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" ...
1
vote
1answer
350 views

custom binding to force Inner class creation or getters/setters for xs:element

I have a schema declaration as follow from a third-party provider. <xs:complexType name="GroupParameterType"> <xs:sequence minOccurs="0" maxOccurs="4"> <xs:element ...
1
vote
1answer
407 views

Question about Jaxb 2.x SchemaGen

i am trying to generate schema using jaxb from my exisitng POJO classes and till now its working fine now i have a requirement where i need to declare a attribute type is my XSD but the attribute ...
1
vote
1answer
3k views

creating XSD using jaxb schemagen

i am learning JAXb 2.0 and is new to it. i am trying to generate XSD based on y POJO classes using schemagen and for simple classes it working fine but when my class contains refrence to other ...
3
votes
2answers
464 views

XML + XSD => Java?

I need to make the above equation comes true! I have an XML file with its XSD schema, and I need to get the Java classes with the required code to parse the XML file and construct java objects.. I ...
0
votes
4answers
1k views

Java libraries for converting xsd to bean/objects

What are my options for libraries to convert XSD files to java beans or objects? I have a large XSD that I have been trying to convert using JAXB2, but JAXB2 is creating invalid classes.