0
votes
2answers
19 views

Partial Unmarshalling of an XML using JAXB to skip some xmlElement

I want to unmarshal an XML file to java object using JAXB. The XML file is very large and contains some nodes which I want to skip in some cases to improve performance as these elements are non ...
0
votes
2answers
48 views

jaxb, seperate namespace for child element

I am trying to create XML using jaxb like below format, where child element has separate name space. <soap:Envelope xmlns:soap="http://demo.org/soap/envelope/" ...
2
votes
1answer
20 views

Issue with JAXB XMLAdapter marshalling

I have a requirement to generate an XML file with below format using JAXB2, It has both Fixed and Variable xml content. What is the Constraint? The content of Variable XML Part should be one of the ...
-1
votes
1answer
31 views

namespace issue on web service with Apache CXF

I'm using Apache CXF 2.7.3, and running into a namespace issue that I really don't understand. I've tried extensively to search on this, but most of the results that I find are for different ...
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
0answers
19 views

JAXB XJC how to generate an enumeration with method and implementing interfaces with binding file

I have a problem with JAXB XJC and binding. I don't know how to generate an enumeration by xsd implementing and interface and a set of method. For example I would generate something like that public ...
1
vote
0answers
45 views

JAXB javaType customization on xs:integer produces @XmlElement with “type=String.class”

When generating Java beans from a XSD with XJC, I need to map xs:integer to Integer rather than BigInteger. I added a javaType tag to my JAXB customization file (as said in many answers from this ...
0
votes
2answers
58 views

unable to generate jaxb .xsd to java classes in goal phase

Java - jaxb - maven plugin I have maven based web application, in pom i have following plugin which should generate jaxb .xsd to java classes. When i execute clean, compile, package xsd classes do ...
0
votes
1answer
68 views

Setting null string as xsi:nil=true

I have this class package com.ni.schemas.provider_framework._1.providers; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import ...
0
votes
1answer
81 views

How can I change the xml element name that jaxb outputs for each item in a list

If I have a List of objects @XmlRootElement(name = "get_item") public class GetItem { private List<Image> images; } I can pretty much do anything with the Images class ...
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 ...
2
votes
2answers
91 views

JAXB: how to unmarshall Java object composed from multiple tags or attribute values

I am converting from SAX parser to JAXB - can't figure out how to unmarshall multiple tag/attribute values into single (compassable) Java POJO. I have xml file like this: <item validFrom="1950" ...
0
votes
0answers
158 views

How to use Annox to Add @XmlRootElement When Generating JAXB Model from WSDL?

I have the following WSDL <?xml version='1.0' encoding='UTF-8'?> <wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" ...
0
votes
1answer
97 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 ...
1
vote
1answer
147 views

Exception : “Missing class indicator field from database row [UnmarshalRecordImpl()].” when unmarshalling XML using EclipseLink JAXB (MOXy)

Is it any way to unmarshalling with @XmlDescriminatorNode/@XmlDescrimintatorValue annotations next XML, or any workaround: <assets> <asset type="full"> <data_file ...
0
votes
1answer
129 views

Netbeans with JAXB Random ClassCastException ..cannot be cast to com.sun.xml.bind.v2.runtime.reflect.Accessor

I have downloaded the Soap messages from a SOAP Service and trying to mock the Soap service by returning the downloaded messages. the following code shows how I am Unmarshalling the Soap message into ...
2
votes
1answer
81 views

Spring MVC with Jaxb2Marshaller failing on 2013 dates

I have a Spring MVC project that accepts XML input via a the PUT method. One of the elements in the XML is a dateTime. I am using a Jaxb2Marshaller to unmarshal the XML into a bean. I have a unit test ...
0
votes
1answer
20 views

Multiple related schemas using jaxb2

I'm using jaxb2 for a rest webservice. I need to use two schemas. One is my own schema, stored in the src/main/resources/schema folder, and another schema, which is an online schema ...
0
votes
0answers
85 views

Ignore XML namespace validation for JAXB 2.0

How to ignore XML namespace validation for JAXB 2.0? I am using the following approach: final InputStream inputStream = this.getClass().getResourceAsStream( "/NFP.xml" ); final InputStream stream = ...
1
vote
0answers
120 views

Maven generate-sources cannot resolve a dependency

I have a multi-module project in maven which uses JAXB generated sources: parent module A module B (depends on module A) Without JAXB everything compiles fine. When I add the ...
2
votes
0answers
181 views

JAXB: XmlAdapter for List<Object> items

Does anybody know how to attach custom XmlAdapter to objects contained in heterogenous list (like List)? For example - suppose we have a container class with a list of miscelaneous objects: ...
2
votes
0answers
134 views

JAXB generic list serialisation using Map

I've got a class that wraps a generic list. When I put a Map in that generic wrapped list, the JAXB output is not what I expect. Items are shown, but their contents isn't. To elaborate: A simplified ...
1
vote
1answer
195 views

How to get JAXB schemagen to allow multiple element names for one @XmlRootElement class

This is kind of the opposite direction of questions like No @XmlRootElement generated by JAXB. Basically I want to run schemagen and have two global elements of the same type. <xs:element ...
1
vote
1answer
487 views

JAXB - marshal java object with XML string field

suppose i have an object with String property that has an XML string. like: class myObject { String xml; @XmlElement(name = "xml", type = String.class) public String getXml() { ...
0
votes
0answers
118 views

JBoss 7 - RestEasy JAXBMarshalException

I'm developing a webservise using Jobss RestEasy. There i got a Marshal Exception *org.jboss.resteasy.plugins.providers.jaxb.JAXBMarshalException: javax.xml.bind.MarshalException - with linked ...
1
vote
1answer
49 views

Jaxb Element Annotation

How do i annotate my class to archive this xml structure: <elementTag attribute="false">Testvalue</elementTag> I tried to put elementTag into a seperate class, but then "Testvalue" is ...
0
votes
1answer
143 views

CXF Web service plus JAXB generated classes from another jar?

I have a java archive, schema.jar, containing classes generated from an XSD using xjc. I need to create a CXF web service (jax-ws) with web methods that create and return objects from the set of ...
0
votes
2answers
234 views

JAXB/xjc: Generate classes from child elements and load them based on class types

I have a configuration file in XML, which looks something like: <configuration> <database> <host></host> <port></port> ...
0
votes
2answers
211 views

how to use jaxb2 maven plugin with inline XSD?

I am trying to generate marshalling and unmarshalling objects using maven jaxb2 plugin. But I dont have the .xsd file for the .wsdl. the schema definition is inline. Please let me know how to proceed ...
1
vote
1answer
94 views

Apply external custom binding to included schema

I am using binding.xjb to apply custom binding to main.xsd. Works fine. I want to break down main.xsd to include say "common.xsd" but doing that breaks my binding.xjb. example: below is my ...
1
vote
1answer
999 views

Remove standalone=“yes” from jaxb generated xml

public final String getMessage() { JAXBContext jaxbContext; StringWriter sw = new StringWriter(); try { jaxbContext = ...
1
vote
2answers
385 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
95 views

JAXB Parsing of similar xml files

I have different XML returns that I want to parse with JAXB with annotated classes. Many of the XML files share a similar top structure and with the contents of an inner tag that can vary. Since we ...
0
votes
0answers
90 views

Generate classes from XSD into separate packages with maven-jaxb2-plugin

I just took over a project which used an Ant build script to generate classes from XSDs. All XSDs are in a single directory and the script used to generate each class individually using XJC. Yet, the ...
2
votes
1answer
280 views

Can we generate JAXB classes for a set of xsd in multiple packages?

I have an xsd which has several child XSD s embedded (using "xsd:include".) in it (but each xsd belongs to the same namespace). I was asked to generate jaxb classes in separate sub packages (one sub ...
1
vote
2answers
477 views

JAXB 2: unmarshalling xml without xml declaration

Good time! I have an xml: <fieldSet name="Test" desc="Test"> <field name="id"> <fieldinfo> <name>id</name> <type>String</type> ...
1
vote
0answers
157 views

Generating JAXB classes with multiple prefixes using an external binding

I have a group of XSD files, as follows: http://www.iana.org/assignments/xml-registry/schema/contact-1.0.xsd http://www.iana.org/assignments/xml-registry/schema/domain-1.0.xsd ...
0
votes
1answer
39 views

JAXB2 annotations: troubles rendering a value in a list

Ihave some issues trying to render the following xml code with JAXB2 annotations: .... <bizTransactionList> <bizTransaction type="urn:epcglobal:fmcg:btt:po"> ...
2
votes
1answer
182 views

Error unmarshalling jaxb objects

I have jaxb objects against an XML schema. That xml schema can have different root element. Which is working perfectly fine in the main project. Based on those generated objects, I am trying to write ...
0
votes
0answers
88 views

Unmarshalling a schema to JAXB objects

Folks, I'm trying to unmarshall the following example of an XSD schema. The problem I have is that we have a dynamic database, so we can't support concrete classes that would get created if I ...
0
votes
0answers
100 views

IncompatibleClassChangeError while running JAXB on Unix AIX

I get a java.lang.IncompatibleClassChangeError when i try to run my project on AIX machine. The project generate XML files using JAXB API (2.0). The development environment installed in Windows XP ...
0
votes
1answer
541 views

Posting JSON via Jersey

I have this code ClientConfig config = new DefaultClientConfig(); Client client = Client.create(config); client.addFilter(new HTTPBasicAuthFilter(adminUser, adminPass)); ...
1
vote
1answer
149 views

JAXB mixing episodes and xjc:javaType in jar library

If got a Java library which other projects depend on (.jar dependancy through Maven). In this library there is an XSD-file which defines some xs:simpleTypes which are also annotated with xjc:javaType ...
1
vote
1answer
414 views

JAXB XmlElementRef lookup into entire classpath

Hi can someone please explain how to solve following problem. i have class structure like this.. public class RequestWrapper implements Seriallizable { private List<Request> requests = ...
1
vote
2answers
387 views

Jaxb XmlElementRef parent class tag

i need some help in jaxb XmlElementRef tag generation. I have classes like following, @XmlRootElement(name = "Request") public class BaseRequest { @XmlAttribute(name = "requestid") private ...
4
votes
1answer
522 views

Can xjc -version be trusted?

I've spent the day debugging an issue with JAXB getting namespaces wrong or missing (possibly related to Marshaller.JAXB_FRAGMENT, but that's not the point here). I found the problem occurs with JAXB ...
1
vote
1answer
377 views

Creating an XML with attributes and dynamic values using JAXB

I want to Create an XML using JAXB. It should have attributes in it whose values have to come from a property defined in corresponding class. The current output is giving a property as a child tag, ...
2
votes
1answer
573 views

Convert nil=“true” to null during unmarshal operation

I am receiving XML from a server whose schema specifies nearly every element as: <xs:element name="myStringElementName" type="xs:string" nillable="true" minOccurs="0"/> <xs:element ...
3
votes
1answer
214 views

JAXB 2 - Changes in between Java EE 5 and Java EE 6

I noticed a (kinda radical) change between the Java EE 6 tutorial and Java EE 5 tutorial in what JAXB is concerned, in the sense that in the 6 tutorial the details are slim and there is no longer a ...
0
votes
0answers
115 views

Eclipse Jaxb schemagenarator ant task warning

Am facing an warning in Eclipse at ANT script for Jaxb schemagen. Following is the ant script i wrote <taskdef name="schemagen" classname="com.sun.tools.jxc.SchemaGenTask"> ...

1 2 3 4