1
vote
0answers
17 views

JAXB does not parse .xsd as intended. C# auto generation from same file does

I am having some trouble with the way JAXB currently generates java objects from .xsd files. Below I have a code snippet from a .xsd file I am using. The intent of this code is that it will have a ...
0
votes
0answers
31 views

Extensible XML schema with immutable set of Java classes bound to it

I'm trying to develope extensible XML schema that could be extended without change of Java code bound to it by JAXB. Here is the schema: <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
0
votes
0answers
18 views

How to access imported xsds

Hi I have a complex schema, the schema is internally calling multiple schemas. I am facing following problems I can't customize the classes <bindings ...
0
votes
0answers
20 views

Not able to generate javadoc for Enum using XJC

I have a Enum defined in an XSD as : <xs:simpleType name="TestEnum"> <xs:restriction base="xs:string"> <xs:enumeration value="Value1"/> <xs:enumeration ...
1
vote
1answer
52 views

Understanding JAXB @XmlRootElement annotation

I am using the tutorial here for understanding JAXB. When the writer comes to create the root of the document, the writer begins as below: //This statement means that class "Bookstore.java" is ...
1
vote
0answers
26 views

Java Code for creating child elements within an element

I want to generate the following XSD Schema using JAXB and ObjectFactory class of org/w3/_2001/xmlschema <xs:element name="result"> <xs:complexType> <xs:sequence> ...
1
vote
2answers
30 views

is it possible to validate xml via xsd with no sequence and ignoring extra tags

how to validate xml using xsd without sequence and if any unknown or extra tag is present then that should be skipped(no validation error should be thrown). But for the tags which is present in xsd I ...
0
votes
0answers
17 views

How to get the maxlenth element in my generated xsd

I have a query : ( SELECT id, empId, firstName, jobTitle, country, lastModified, talentPool, lumpsumTarget FROM User ) I get the response using web service. The query response looks something like : ...
2
votes
1answer
36 views

xsd -xml regex validation not working for me using JAXB

I have written a simple XSD where I have written following XSD pattern <xsd:element name="xx"> <xsd:simpleType > <xsd:restriction base="xsd:string"> <xsd:pattern ...
1
vote
1answer
27 views

XSD sequence compile to different lists

I have XSD schema like this: <xs:complexType name="Element" abstract="true"> <xs:sequence maxOccurs="unbounded"> <xs:element name="resistor" type="vs:Resistor" ...
1
vote
0answers
20 views

jaxb binding annotation element from another schema and library

I'm writing a Web service that exchange some signed information as part of the messages (not in the headers) and I would like to know how I should make the binding to avoid that xjc generates classes ...
1
vote
2answers
43 views

specify type for IDREF in XML schema

I am generating Java objects from and XML schema using xjc. I would like to reference the same element multiple times within the document using IDREF. I would also like to constrain the objects ...
1
vote
1answer
45 views

Error while generating JAXB model from xsd in eclipse

I am trying to generate JAXB model from the following xsd <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://abc.com/mmm/trt" attributeFormDefault="unqualified" ...
2
votes
1answer
33 views

XSD: Specifying a name for a text node property

I am using an XML schema and xjc to generate java classes. I would like to define an XML structure that looks like this: <unicorn color="white" ...
-2
votes
2answers
37 views

Java jaxb xsd how to allow maxOccurence

I want following xml output and have following xsd <msgBody> <Contato> <cd_id>11</cd_id> <property key="name" value="Adde" /> <property key="Phone" ...
0
votes
0answers
156 views

Cannot resolve the name 'activity:verb' to a(n) 'element declaration' component

I am trying to create Java classes using xsd which I created from an XML using trang.jar. I am trying to create these Java classes in Eclipse IDE using JAXB tool. Below is my xsd and errors that i get ...
1
vote
2answers
76 views

XML IDREF in JAXB returns the wrong class?

I am new to both XSD design and JAXB. I managed to create my XSD as below: <xsd:element name="policy" > <xsd:complexType> <xsd:sequence> <xsd:element name="actor-def" ...
0
votes
0answers
32 views

Exception When creating jaxb classes from xsd

I am getting this exception when generating jaxb classes from xsd. I have included all the necessary jars. But unable to find solution for this exception. I am using java 1.5. Exception in thread ...
1
vote
1answer
79 views

JAXB not treating value attribute as an attribute

I created an XSD and one of my elements attributes is named value. I created classes using JAXB however when I used those classes to create XML value is not an attribute, it is a value within an ...
1
vote
1answer
33 views

Handling frequent schema change in the jaxb

In my application we are using JAXB for unmarshalling incoming xml response. JAXB pojos are further mapped to DAOs for DB operations. My issue is our service provider is going to frequently update ...
1
vote
1answer
50 views

jaxb catch exception if field is not found in java class

I need to catch the exception when an xml is unmarshalling to a java class if a field and its attribute(s) found in xml file are not defined in java class. I am not able to construct the xsd ...
1
vote
1answer
64 views

JAXB: How to do mapping between xmlMessage and its Java Class to do unmarshal when we have a lot of type of xmlMessage

I have XSD file which I have processed using XJC to generate Java classes. <?xml version="1.0" encoding="UTF-8"?> <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
1
vote
1answer
90 views

Troubles converting XSD to Java using JAXB

I'm trying to convert an XSD I have no control over to Java classes using JAXB. The errors I'm getting are : [ERROR] cvc-pattern-valid: Value 'true' is not facet-valid with respect to pattern '0|1' ...
1
vote
0answers
31 views

Is there a General Binding Rule to resolve severals : Two declarations cause a collision in the ObjectFactory class

I'm working to generate java class from a WSDL and several XSD files. One of the XSD contain more than 1000 complexType/element that causing the error: Two declarations cause a collision in the ...
0
votes
1answer
95 views

jaxb binding customization without having xsd

I've a wsdl (I dont have the .xsd file) and I want to generate the classes from it. Using wsimport I get a tree of classes that is the standard mapping of the webservice schemas itself and of its ...
1
vote
0answers
48 views

Generate XSD from Java WITH documentation

I created an XSD schema and have put in some documentation via the tag. from the XSD i generated Java classes using Jaxb (from within eclipse - jdk1.6) i now plan to use my java classes as "source" ...
0
votes
0answers
75 views

SOAP Header update with xsd in java

My app is a client to a SOAP webservice via soap/jms and have been given a wsdl for same by provider. WSDL essentially refers to 3 xsd and my soap request is suppose to look as below: soap-env ...
4
votes
2answers
80 views

Changing class without changing a schema

I have a xsd schema which I'm not allowed to change. It produce generated java classes. Assume that classes looks as follows: class Data { protected List<Value> value; ...
0
votes
2answers
85 views

How to make integer element value in xsd not become zero when no value entered in SOAP XML?

I have a java web service application built with jaxb and spring webservice. I have a complex type in a xsd like this: ... <complexType name="GetRecordsRequest"> <sequence> ...
0
votes
0answers
32 views

How to get the content value for xs:simpleType using JAXB?

Hi I am having a following complexType in my schema. ComplexType <xs:complexType name="DerivedType"> <xs:complexContent> <xs:extension base="BaseType"> ...
0
votes
1answer
70 views

cxf does not generate the expected type in WSDL

I have an exception: public class MyException extends Exception { public MyException() { } public MyException(String message) { super(message); } ...
1
vote
0answers
166 views

how to write custom error handler for xsd validation for jaxb object

I want validate my JAXB object using xsd And want to return proper error message. But the error message i m able to get is : cvc-complex-type.2.4.a: Invalid content was found starting with ...
2
votes
1answer
99 views

Ugly java code with xsd:sequence

I use JAXB to bind XSD schemas to POCOs. I have tried two different ways to write an XSD schema but each has a flaw: Option 1 Problem: Each element is represented with <Elements> in XML ...
1
vote
1answer
121 views

Add default namespace to an element within soap body

I have generated a web-service client (JAX-WS) and model from wsdl and xsd. I have problem with namespaces within soap body. Lets assume we have two classes: @XmlRootElement(namespace="aNamespace") ...
0
votes
1answer
96 views

SAXParseException code cvc-elt.1 for given xsd/ xml

I have a given xsd file and given examples for this file. the xsd is very similar to http://www.forum-datenaustausch.ch/hospitalinvoicerequest_400.xsd but with one additional element below the root. ...
0
votes
0answers
51 views

Can't import automatically generated JAXB classes for unmarhalling with NetBeans

I have generated the java classes using a Jaxb binding in netbeans.It has created 3 classes under the package Generated sources(Jaxb) and one of the classes is Object factory.Now when i write a new ...
3
votes
1answer
74 views

JAXB is not generating the required schema for a class that contains generated Java classes?

I have this class @XmlRootElement public class GpsDataRequest{ //definition of variables @XmlElement(required=true, type=GpxType.class) public GpxType getGpxRoot() { return ...
0
votes
0answers
43 views

Deal with duplicate xsd elements while running codegen in JIBX

I have duplicate element name called "package" exist in my xsd. Now I am trying to run JIBX codegen utility it says me error like below : com.abc.myPackage.Package is already defined in ...
1
vote
3answers
64 views

XSD - Fail Some, Pass Some

I'm trying to do something that may not be possible. I have an XML document containing a list of records of the same type. Something like this: <root> <record>I'm a ...
1
vote
2answers
230 views

JAXB generate classes from xsds always have @XmlElement(required=true)

I have my xml schema defined as below <?xml version="1.0" encoding="UTF-8"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://poc/" elementFormDefault="qualified" ...
1
vote
1answer
35 views

How to process different case of Same Word in JAXB?

<xs:simpleType name="PowerUnit"> <xs:restriction base="xs:int"> <xs:enumeration value="MWh"/> <xs:enumeration value="mWh"/> </xs:restriction> ...
1
vote
1answer
95 views

Jaxb Error in Netbeans

I am trying to create a java class from an Xml Schema available at a specified url.I am using netbeans Jaxb binding to achieve this . i am getting the error : [ERROR] Property "Title" is already ...
1
vote
1answer
78 views

test if JAXB generated field is required

I have a JAXB generated class PersonType with the properties name, phone, address. In the XSD I define that "phone" minoccurs="1". How can I test programatically(i.e. via reflection, etc), in Java ...
0
votes
0answers
129 views

How to convince hyperjaxb to generate one-to-many relation with @xml-element-wrapper annotation?

I am using hyperjaxb to generate JPA entities directly from xml (to avoid object properties copy) and I am struggling to make hyperjaxb generate my classes to achieve following effect: This is how I ...
1
vote
1answer
47 views

How to resolve conflict when generating a xsd to jaxb objects

How to resolve conflict when generating a xsd to jaxb objects? Below is example: A.xsd includes B.xsd and C.xsd Both B.xsd and C.xsd have a duplicate element
1
vote
4answers
352 views

How to compare XMLGregorianCalendar with only the Date portion (day, month, year)?

I'm developing a webservice integrated with spring-struts web application, in XSD there is a XMLGregorianCalendar type property, let's say the property name is trxDate. In SOAPUI testing ...
2
votes
2answers
241 views

JAXB marshalling for BigDecimal using fractionDigits

So here's my problem. I'm given an XSD to which my generated XML file should comply. Using the org.apache.cxf.cxf-xjc-plugin maven plugin and an external binding file I generate the source code. But ...
1
vote
1answer
68 views

JAXB Custom Binding for Untyped Element?

I have a very large and complex XSD for a SOAP service which I do not control. There are several elements which always contain string data which are not typed. Typically these are very deeply-nested ...
1
vote
2answers
55 views

Handling non-well-formed (numeric) element tags in JAXB

I'm attempting to use JAXB with data that does not technically fit the XML standard; in particular, the names of the elements are technically invalid as they begin with numeric characters. Here's an ...
1
vote
1answer
51 views

How to maintain element version in xsd

I have 3 different xsds. xsd2 is superset of xsd1. xsd3 is superset of xsd2. I have all 3 different clients that may of either of the xsds. And for each xml quest from them using their xsd, i have to ...

1 2 3 4 5 7