For issues relating to the JAXB XML binding architecture, version 2.

learn more… | top users | synonyms

0
votes
1answer
34 views

Can CDATA be used without using CharacterEscapeHandler for marshaling and unmarshalling in JAXB

I don’t want to use CharacterEscapeHandler. Somehow want the newline character (\n) in java string (which is going to be an XML Attribute) needs to be there after marshall and unmarshall using JAXB. ...
1
vote
1answer
13 views

JAXB with Generified @XmlElement

I have an abstract class looks like this. @XmlTrasient public class SimpleValue<R> { public R getRawValue() { return rawValue; } public void setRawValue(final R rawValue) ...
0
votes
2answers
33 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
0answers
7 views

Mojo schemagen maven plugin wrongly generates class

Good Morning everyone, I'm trying to use the mojo jaxb2 maven plugin in my application, however whenever the schema gets created properly, in the same folder it generates the whole classes (as a ...
-1
votes
0answers
27 views

Jaxb marshelling is changing the xml format

I have written a jaxb parser to convert xml to object and object to xml. I just tried converting an xml input to object and tried converting it back to xml string and I could see the xml is getting ...
0
votes
2answers
55 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/" ...
-1
votes
1answer
36 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
21 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 ...
2
votes
1answer
45 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
38 views

Camel 2.10 and Spring JAXB complaining about Handling Interfaces

We recently upgraded the version of Open JDK 7 to version 1.7.0_u21 and have started to run into issues with Camel and JAXB that is included in that version. Versions starting with 1.7.0_u9 or below ...
0
votes
0answers
31 views

how to map same value to two different fields in jaxb while marshalling and unmarshalling

I have a xml tag Hello for which there is a field like below in my java class HelloWorld{ @XmlElement private String name; } While unmarshalling this successfully assigns Hello value to name ...
1
vote
0answers
27 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
4answers
607 views

Please advise the best pattern for serialising JAXB Lists

There have been many questions as to how why list types are not serialising, however I'm questioning what is a good practice to serve a list type of beans in a simple way. So far I have been creating ...
3
votes
2answers
476 views

CXF java2ws: how to include external xsd files?

I generate WSDL files for several web services (from the server service definitions) where I have already XML schemas (*.XSD) for the beans used as parameters. How do I tell java2ws to reference these ...
1
vote
0answers
50 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 ...
1
vote
1answer
67 views

Camel POJO producing with JAXB data format exception

I am using Camel 2.10.3 Here is my camel context: <camelContext id="camelContext" xmlns="http://camel.apache.org/schema/spring"> <endpoint id="webserviceStart" ...
0
votes
2answers
64 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 ...
2
votes
2answers
8k views

convert object into JAXBElement

I want to implement a method which returns JAXBElement following is the code @XmlRootElement(name = "history") @XmlAccessorType(XmlAccessType.FIELD) public class IBHistoryInfo { ...
3
votes
2answers
4k views

Spring Batch & Jaxb2Marshaller

I am attempting to use Spring Batch to read an XML input file and save each chunk into a database, but I am getting the following exception: Caused by: javax.xml.bind.UnmarshalException - with ...
1
vote
1answer
20 views

JaxB marhsalling using interfaces

I have the following class, i want to be able to produce xml dynamically based ona an interface, with changing implementations... is that possible... i have tried with little luck... @xmlRootElement ...
0
votes
0answers
47 views

Marshal/UnMarshal as xsd elements to Java.util.HashMap using jaxb external xjc custom bindings

Can any one help me on below requirement? I have an xsd with complex type <xs:complexType name="MapType"> <xs:sequence> <xs:element name="entry" minOccurs="0" ...
0
votes
1answer
55 views

How to add a custom ContentHander for JAXB2 support in Spring 3 (MVC)?

Scenario: I have a web application that uses Spring 3 MVC. Using the powerful new annotations in Spring 3 (@Controller, @ResponseBody etc), I have written some domain objects with @XML annotations for ...
1
vote
1answer
150 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
3answers
103 views

JAXB Eclipse MOXy Nullable value and retrieve only a specified key in a Map

I have another more tricky question: E.g. Person Class has: --String firstName --String lastName --Map stringMap Person person = new Person (); person.setFirstName("FirstName"); ...
0
votes
1answer
105 views

Need documentation for JAXB annox

Need documentation on JAXB annox through which i would like to know what all the attributes are set for ex in the below code...I would like to know the documentation to see what name, target, ...
0
votes
0answers
63 views

MTOM not working on Spring Webservice

I am developing MTOM enabled a Spring Webservice with JAXB2 as marshallar. The target is to 1.Develop a service which recieves a request and send a response with document as MTOM attachment. ...
0
votes
5answers
2k views

Is there a need in JAXB implementation for Android?

As far as I know, there is currently no JAXB implementation which would work on the Android platform. I would like to ask a simple question - Is there a need for JAXB on Android? Being a JAXB ...
0
votes
0answers
36 views

JAXB generateSchema - Import not added for the referenced simple types

I am using JAXB generateSchema API for generating XML schema from java classes. I have classes in some packages that are referencing simple types. JAXB doesnt generate any class for simple types. I ...
0
votes
1answer
70 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
87 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 ...
1
vote
1answer
34 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
0answers
49 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
96 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
55 views

Nillable on @XmlAnyElement

I made a general class for plural elements for JAXB. @XmlTransient public abstract class Plural<S> { @XmlAnyElement(lax = true) private Collection<S> singulars; } With ...
2
votes
2answers
1k views

Custom validation error messages using Jaxb2marshaller and spring-ws

I have a running spring-ws project that can unmarshal requests using Jax2b, but when unmarshalling of integers/booleans fail I get an error message with little detail and often without the name of the ...
0
votes
0answers
172 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
27 views

jaxb inheritance, unmarshalling cause nullpointerexception

I have an ElectivePolicy abstract class which has two subclasses, PackagedElectivePolicy and SimpleElectivePolicy. for mapping this inheritance relationship I've use typeAdapter and as I checked it ...
1
vote
1answer
747 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 ...
0
votes
1answer
107 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
0answers
33 views

jaxb2 maven plugin, custom package

I use jaxb2 maven plugin to generate java classes. My schema import 6 others. In schemas there exists elements with the same name, but in other namespaces. All schemas are provided so I don't want to ...
0
votes
0answers
209 views

consuming soap web service, soap fault exception

I am trying to write a client to consume web services done in .Net using SOAP. I am using Spring-ws webServiceTemplate with Jaxb2Marshaller. I am getting following error, ...
1
vote
1answer
128 views

JAXB Unmarshal - Elements missing and elements in not in order

I am trying to unmarshal an XML that I marshalled before. In the unmarshalled result, I am missing elements and the elements I get are not in the same order as the input XML. I've created a ...
1
vote
1answer
152 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 ...
1
vote
2answers
107 views

Moxy not honoring the super class/interface properties

enter code hereI have the properties for a Customer spread across two interfaces as shown below. I have the external xml binding defined using the sub interface ICustomer. When I marshall the pojo to ...
0
votes
1answer
137 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 ...
18
votes
3answers
23k views

JAXB: how to marshall map into <key>value</key>

The question is about JAXB Map marshalling - there is plenty of examples on how to marhsall a Map into a structure like follows: <map> <entry> <key> KEY </key> ...
5
votes
4answers
6k views

JAXB 2.x : How to override an XmlElement annotation from parent class - Mission Impossible?

Why is this not possible? It seems so simple but it does not behave as expected. Summary: Class A uses an aggregated DataA bean whereas Class B (a subclass of Class A) is using an aggregated DataB ...
1
vote
2answers
987 views

Empty SOAP response - using JBoss 4.2, Jaxb2, Java 1.6

I am trying to deploy a spring-ws SOAP webservice in JBoss 4.2 (JDK 1.6, spring 3.0, spring-ws 2.0). I am using JAXB2 as O/X binding. Setup is fine, beans found and wired, requests can be sent and ...
1
vote
1answer
52 views

JAXB : Map< String, (Map<Object,List<Object>>) >

i'm working on some web services and i'm trying to send an object having the following structure : Map< String, (Map>) > the problem is that jaxb fail to marshall that object can anybody suggest ...
2
votes
1answer
82 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 ...

1 2 3 4 5 7