Java Architecture for XML Binding is the Java standard for working with XML as domain objects. It provides an easy mechanism for mapping Java classes to XML representations.

learn more… | top users | synonyms

2
votes
0answers
547 views

Allowing EJB 3.1 Webservice with optional namespace

i'm using EJB 3.1 with NetBeans 7.0 to deploy WebServices. I have generated classes from my XSD file. NetBeans generates a WSDL File for this WebServices. <soapenv:Envelope ...
2
votes
0answers
270 views

Is it possible to define custom JAXB marshalling adapter for a member of collection?

I have a main class: @XmlRootElement @XmlAccessorType(XmlAccessType.NONE) public class Foo { @XmlAnyElement public Collection<Object> items; } Now I'm adding a new element to this items ...
2
votes
0answers
95 views

JAXB: generate Java classes only for a subset of the XSD types

I have a couple of huge XML schema definition (XSD) files and I want to generate only for a subset of the defined types the corresponding Java classes. More precisely I have a list of "root" types ...
2
votes
0answers
2k views

Specify @XmlJavaTypeAdapter class via bindings file?

I have a 3rd party interface that supplies xsd files that matches their API. Some of their mappings are not quite Java, the usual boolean as 0 & 1 :-( I'd like to use a bindings file to specify ...
2
votes
0answers
248 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 ...
2
votes
0answers
970 views

CXF-java2wsdl-plugin not importing external schema defined in @XmlSchema annotation

I'm using the cxf-java2ws-plugin to generate a WSDL file from JAX-WS annotated classes. For my data objects; I'm specifying the fact that an external schema file already exists (by adding an ...
2
votes
0answers
1k views

how to validate not null elements using with schemaValidation in JAX-WS/JAXB

I am implementing java-first web services using JAX-WS and trying to use the @SchemaValidation to validate required elements that are in my webMethod parameters. here is how I declare my required ...
2
votes
0answers
376 views

How to port jaxb annotation to simpleXml library?

I am using Simple xml library to port Jaxb annotations into android. http://simple.sourceforge.net/home.php I came accross this annotations in jaxb @XmlRegistry @XmlElementDecl and I have to convert ...
2
votes
0answers
438 views

Jaxb - Namespace problems with SchemaGen and java.util.Map

When a class contains a java.util.Map, SchemaGen generates an xsd with a namespace on the Map elements. However when the marshaller generates xml from the same class no namespace is present. This ...
2
votes
0answers
240 views

JAXB in java 1.6_03 vs java 1.6.0_13 and above

I am trying to map a field of type List in a class, and I am using a XmlAdapter for this purpose eg @XmlRootElement public class A { @XmlJavaTypeAdapter(BListAdapter.class) private List<B> ...
2
votes
0answers
941 views

JAXB unmarshals incomplete objects when using XSD <choice> element

I'm experiencing a problem unmarshalling a element in an XML document using JAXB RI 2.2.1. The element is defined as follows (the full XSD is too large to post): <xsd:element ...
2
votes
0answers
820 views

Use @XMLTransient in CXF web service with jaxb binding

I have an application that relies heavily on configuration object (template). So import/export features is a must. One developer has completed the import/export feature and lot of DTOs has been ...
1
vote
0answers
8 views

java.lang.internalerror while calling a webservice using Jersey api

I have an application that has two module the client and server which talk with each other using jersey api. Each business object will have an interface which will be used by the client and server ...
1
vote
0answers
22 views

NUL characters after JAXB marshalling

I've been using the JAXB libraries to read & write XML files for a while now, without any issues. However, I've recently had issues where NUL characters are written to the XML files during ...
1
vote
0answers
27 views

Using a JAXB XmlAdapter to adapt an entire list without a wrapper element

I'm trying to use an XmlAdapter to unmarshal XML into a custom collection type (that intentionally does not implement the Collection interface due to a conflicting restriction imposed by another use ...
1
vote
0answers
15 views

Line number of xinclude while unmarshalling using jaxb

I found this question on SO. I shows how to get the line numbers of individual xml elements while unmarshalling with JAXB. I extended this example being able to use xinclude. Unfortunately, I'm not ...
1
vote
0answers
21 views

Disable JAXB namespace substition on Marshalling?

I have an XSD Schema which uses namespaces to make elements with the same name distinguishable. I am generating the JAXB bindings using the Maven plugin jaxb2-maven-plugin. When marshalling my JAXB ...
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
0answers
25 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
17 views

Identify the ObjectFactory method used to create the object

Given an object o which was or could have been created with a JAXB ObjectFactory, what's the best way to find the method in that ObjectFactory which would be used to create the object? My objective ...
1
vote
0answers
19 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
0answers
36 views

How do I use Apache Camel's Spring Remoting Proxy with XML as the transport?

I am using Apache Camel's Spring Remoting, version 2.11.0. I have the following in my beans.xml: <camel:camelContext id="camel-client"> <camel:dataFormats> <camel:jaxb ...
1
vote
0answers
38 views

namespace errors on classes when using JAXB and eclipse Juno

I have some classes that model a filesystem, basically there is a base FileSystemEntry class and FileSystemDirectoryEntry, FileSystemFileEntry subclasses. All of these classes contain JAXB ...
1
vote
0answers
44 views

JAXB namespace switching

I have a requirment where I had created XSD's based on my JPA domain classes (in this domain classes some generic classes are there like some common classes Address, Name, Phone etc ..). I had ...
1
vote
0answers
156 views

Pass a HashMap<String,Object> over SOAP using JAXB

I am trying to pass a Hashmap over SOAP. I am using CXF wsdl2java to create my schema. And I have created a wrapper class for my HashMap since Hashmap itself cannot be passed over the line. I have ...
1
vote
0answers
46 views

JAXB Binder.updateXml(objectTobeUpdated) fails when called twice

I have an existing XML, im using Jaxb to update it. Following code fails: there are bugs raised on this issue, but couldnt get any information about the fix. Can anyone kindly help on how to resolve ...
1
vote
0answers
27 views

Jaxb wildcard umarshalling marshalling

first of all sorry for my poor english. I would like to unmarshal and than marshal the following classes. @XmlSeeAlso({B1.class, C1.class}) public abstract class A1 implements Serializable { private ...
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 ...
1
vote
0answers
268 views

remove xmlns attribute from the root element while marshalling jaxb

This might be a related to JAXB Marshaller - How do I suppress xmlns namespace attributes? But my problem is a little different. I do the regular java marshalling and my xsd has no namespaces.The ...
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" ...
1
vote
0answers
53 views

JAXB Parsing with HTML Content in the XML

I am receiving the following XML (which is produced by a third party): <Source>Product Description</Source> <Content>This is dummy text, <p>in highest qualities.<p> ...
1
vote
0answers
108 views

java.util.Date property rendered as xs:string in xsd using JAX-WS (Apache CXF / Metro)

I generated some model classes based on a WSDL using apache cxf. I then added a jaxb bindingfile to convert all xs:dateTime and xs:date elements to java.util.date (instead of the default ...
1
vote
0answers
73 views

Custom ContextResolver<JAXBContext> not called prior to unmarshalling a request in RESTEasy 2.3.5

I have a problem with a custom ContextResolver for JAXBContext after upgrading from RESTEasy version 2.3.2 to 2.3.5. This resolver should be called prior to unmarshalling the request and prior to ...
1
vote
0answers
33 views

Class reuse with JAXB bindings don't honour SimpleTypes

I'm trying to reuse classes that are already compiled and available. This looks to be achievable by declaring bindings to the pre-existing classes as per example bindings extract below:- ...
1
vote
0answers
54 views

ObservableList and StringProperty are not marshalled in xml file

I want to write/read an XML-File via JAXB using Java 1.7. In my Files I'm using StringProperty, ObservableList and SimpleObjectProperty. I have an xml adapter for each of this classes. When i try to ...
1
vote
0answers
23 views

JAXB XML Creation

I have following class @XmlRootElement Class A{ private int id; private String name; //getter and setter } I want to create schema and xml for this class where XML can have list of ...
1
vote
0answers
165 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 ...
1
vote
0answers
242 views

Generating java classes via jaxb and ant against xsd

I have a module with some structure (src/com/mycompany). I need to generate part of code from xsd using jaxb. Also it's important to generate them on building stage. I need specify ant target for ...
1
vote
0answers
106 views

JAXB: marshalling objects with attributes gives a xml with namespaces redeclared

I have this xml: <tag1 xmlns="myNamespace.com/#"> <insideTag myAttribute="5"> some text </insideTag> </tag1> but after marshalling it becomes this: <tag1 ...
1
vote
0answers
56 views

JAXB: group type issue

I use JAXB to generate Java classes from XSD, JAXB unable to identify the group element from included xsd, simple elements works fine. Error : org.xml.sax.SAXParseException: undefined simple or ...
1
vote
0answers
76 views

JAXB generation - How to enforce the presence of a nested element (-> inner class) in the Java code

I am using JAXB to generate domain objects from an XSD of our own devising. In the relevant fragment of the XSD, given below, I have a nested preProcessing element within the parent Job element. This ...
1
vote
0answers
85 views

JAXB converts Java List to set of objects and thus loses list ordering

I have an XML schema for UI controls that looks something like the following XML <InputParameters> <Combobox name="Combo1">...</Combobox> <Radiobutton ...
1
vote
0answers
137 views

RestTemplate MalformedByteSequenceException Invalid byte 2 of 3-byte UTF-8 sequence

I am trying to load an object from a webservice, using RestTemplate, like this: Menu menu = null; RestTemplate rest = new RestTemplate(); String request = "<?xml version=\"1.0\" ...
1
vote
0answers
148 views

JaxB XmlSeeAlso, XmlElementRef, newInstance with Classes

The answer to my question JaxB reference resolving led me to further pursue the details of the issue regarding the use of XmlSeeAlso, XmlElementReference and the specification of classes involved ...
1
vote
0answers
106 views

JAXB @XmlAnyElement ignoring CDATA

Our application was working fine till I encountered CDATA section in incoming xml. I know CDATA in xml is quite common case. Some how we forgot about it. We are using JAXB mapping in the following way ...
1
vote
0answers
26 views

JAXB Ignore a method at runtime

I have a class which is a 3rd party class. I can marshall and unmarshall in Java 7 but not Java 6. The reason is because it contains the following method public PrintWriter getLogWriter() and ...
1
vote
0answers
129 views

JAXB how to pass XmlRootElement name at XmlElementRef

I tried to find the solution which will fit in my problem, but with no success. Here is the problem: I have got following part of XML structure (which I have no influence on) <users> ...
1
vote
0answers
191 views

Jersey: Returning a List<Map<String,Object>>> as XML

I have a REST service that returns a List<Map<String,Object>> when a GET is performed on a particular resource. However it tries to return this list as application/xml and fails with the ...
1
vote
0answers
54 views

JAXB MOXy 2.4.1 Property Overloading not working

I have two inherited classes (ClassTop --> ClassChild) holding a data class each which have inherited properties too (ClassTopData --> ClassChildData): ClassTop: ...
1
vote
0answers
282 views

JSON serialization with root element does not work in RestEasy/Jettison/JBossAS7

I am desperately looking for a way to make JSON serialization with root element to work on JBoss AS 7.1 with RestEasy and Jettison provider enabled. Although, according to RestEasy documentation, ...

1 2 3 4 5 23