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.
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 ...
2
votes
1answer
124 views
Jackson fails to detect JAXB annotation even after adding the Object Mapper
I am trying to configure a simple example for REST service using CXF + Jackson with JaxB @XmlRootElement annotation. I have already gone through various similar questions in stack overflow as well as ...
0
votes
1answer
145 views
Generate classes with jaxb2-maven-plugin from WSDL
I am having trouble configuring the jaxb2-maven-plugin to generate Java classes from a WSDL and multiple XSD files that all exist in the same standard directory src/main/xsd.
how to use jaxb2 maven ...
0
votes
0answers
53 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 ...
1
vote
1answer
24 views
JAXBException, Unmarshalling an XML Document
I'm getting this exception: Default constructor cannot handle exception type JAXBException thrown by implicit super constructor. Must define an explicit constructor
0
votes
2answers
40 views
can we create an xml using SaxParser
I Have a requirement to merge two xml files by comparing a particular attribute id.I am new to XMLParsing. I used SAXParser to parse the xmls. I don't know how to move forward with the merging thing. ...
2
votes
1answer
42 views
MalformedParameterizedTypeException while deploying class that extends HashMap in JAXB annotated classes using moxy
I'm struggling to migrate from JAXB-RI to moxy.
I've got most of my annotations migrated (I've encountered a few significant differences in behaviour between RI & Moxy), now I'm struggling with a ...
1
vote
1answer
48 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
15 views
Different name for a generated XSD attribute from that of the java object
Is it possible to generate a XSD from Java object with a name different that of the class or its attribute ? Say I have a class having an attribute "currency" and in the generated xsd i want to rename ...
0
votes
2answers
259 views
How to Update List of XML element using JAXB via RESTful Web Services- JAX-RS?
I have an XML file that generated by JAXB. what I expected to do is put "Add and Update" operation within single method. "Add" operation works to append new entry/element but failed to update the ...
2
votes
3answers
116 views
Default namespace & complex package/data structure
I need create/read xml file using default namespace:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xmlBoo xmlns="http://www.example2.org/boo">
<customer>
...
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
63 views
Not show XML element if setter in JAXB Model was not executed
The following JAXB Model is given:
@XmlRootElement(name = "Customer")
@XmlAccessorType(XmlAccessType.FIELD)
public Customer {
@XmlElement(name = "Name")
private String name;
...
0
votes
0answers
53 views
Jaxb parsing nested elements
Hi i'm trying to parse Jmeter JTL result file with the help of JAXB.
Is it possible to parse the following xml structure via JAXB:
<testResults>
<sample name="Preconditions">
...
1
vote
1answer
148 views
Sending application/xml POST message to REST API doesn't work
This is the POST method with JAX-RS annotations:
@POST
@Consumes(MediaType.APPLICATION_XML)
@Produces(MediaType.TEXT_PLAIN)
public Response storeUser(User user) {
boolean wasStored = ...
2
votes
1answer
61 views
JAXBContext handling of @XmlValue
I've come across this problem in my code: when all fields except for the one declared @XmlValue are null, MOXy marshals out the field as if it were the sole value of the whole object. I realize this ...
0
votes
0answers
29 views
How to avoid pluralising of my list names when JAXB classes are generated
I am using jdk 1.6/xjc compiler to generated jaxb classes. How to avoid plurals in the list names.
My jaxb class should contaian a list as List getQuestion();
instead of List getQuestions();
I am ...
1
vote
1answer
40 views
Handling missing nodes with JAXB
I am currently using JAXB to parse xml files. I generated the classes needed through an xsd file. However, the xml files I receive do not contain all the nodes declared in the generated classes. The ...
0
votes
3answers
149 views
Jackson Deserialize to POJO Based On Object Properties
Is it possible to deserialize JSON using Jackson into one of two types based on the content of the JSON?
For example, I have the following Java (technically Groovy, but that's not important) ...
1
vote
1answer
73 views
jaxb unmarshalling creates duplicate list of objects : How to unmarshall objects in lists?
jaxb unmarshalling creates duplicate list of objects : How to unmarshall objects in lists?
xml file and code is shown below while unmarshalling reading elements getting duplicate list i am using jaxb ...
1
vote
1answer
80 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' ...
0
votes
0answers
55 views
jaxb inheritance custom mapping
I have those classes
@XmlRootElement
public class Root{
@element
public B element = new B();
}
public abstract class A {
}
public class B extends A{
@XmlElement
String param1;
...
0
votes
0answers
28 views
Restlet JaxbRepresentation unmarshalling when missing XmlRootElement
I have the following XML schema:
<element name="subscriber" type="SubscriberType"/>
<complexType name="SubscriberType>
...
</complexType>
JAXB generated a SubscriberType class ...
0
votes
0answers
19 views
Example of using @OverrideAnnotationWith
Can anyone give me an example of how I would use the JAXB annotation @OverrideAnnotationWith? It came up in my Eclipse intellisense and sounded like what I needed to do my task (more details below), ...
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
0answers
48 views
wsimport : unable to rename the package name
I've a wsdl at an address like
https://mycompany.com/mywspath/Documents.svc?wsdl
It seems that xsd is visible at
https://mycompany.com/mywspath/Documents.svc?wsdl&xsd=xsd0
giving a
wsimport ...
1
vote
0answers
247 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
1answer
38 views
EAR File: Where does the jaxb.properties file go
If I have a EAR file as follows...
EAR
EJB
JAR
WAR
Where would I put the jaxb.properties file ./? ./JAR/? Somewhere else?
0
votes
1answer
86 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 ...
0
votes
2answers
76 views
I could not generate the formatted XML using Jaxb2Marshaller
According to the Spring Batch document, Spring Batch could generate the formatted xml file, but I failed, all XML elements are generated in one line.
Test steps
Download ...
2
votes
0answers
119 views
JSON Unmarshalling of xs:string
Problem:
We are facing strange problems when marshalling JSONs objects including the following content {"@type":"xs:string"}. Marshalling of this object results in a NullPointerException. See the ...
2
votes
1answer
87 views
JAXB: Namespace missing
I am trying to serialize an XML from a class generated via JAXB.
The class:
package ws.avail;
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"pos",
"uniqueID",
...
1
vote
1answer
162 views
wsimport: multiple wsdl overwrite ObjectFactory
I have multiple (let's say 2, A and B) webservices and I need to generate a client to use them togheter.
In Netbeans I use the wizard "new Web Service Client" passing the two wsdl, looking at the ...
1
vote
1answer
262 views
Jaxb: Unmarshalling xml with multiple namespaces in same package
I'm new to using namespaces in xml so I am kind of confused and would like some clarification. I have a java service where I am receiving xml documents with many different namespaces and while i got ...
1
vote
0answers
47 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
1answer
21 views
Jersey 2 - JAXB
Using Jersey 2 m13-3 in Tomcat 7, I'm trying to post XML and have JAXB automatically unmarshal it.
My method signature is something like:
@POST
@Consumes(MediaType.APPLICATION_XML)
@Produces( ...
2
votes
1answer
57 views
Require JSON Field with JAXB
I have the following.
@XmlRootElement
public class SomeObject {
private String requiredField;
@XmlElement(name="address", required=true)
public String getRequiredField() {
...
1
vote
1answer
158 views
javax.xml.bind.UnmarshalException
I am getting the following error
javax.xml.bind.UnmarshalException: unexpected element (uri:"http://www.docsite.com/ClientConfig.xsd", local:"ClientConfig"). Expected elements are ...
1
vote
2answers
72 views
Is @XmlElement necessary for Jaxb
My question is, whether it is necessary to add @XmlElement before each element in your pojo to be picked up by jaxb, when making a JSON response. I am using jersey-json 1.17 . The reason i ask this is ...
0
votes
0answers
52 views
Handling an array of json objects with Javascript serialized by Jettison and JAXB
I'm my model looks like this:
@XmlSeeAlso({Object1.class,Object2.class})
public class Parent{}
@XmlRootElement
public class Object1 extends Parent{}
@XmlRootElement
public class Object2 extends ...
0
votes
0answers
73 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
...
2
votes
1answer
76 views
JaxB to read class hierarchy
Just extending Parsing class hierarchy using JaxB question.
Want to read following xml file using JaxB
<IMPORT>
<TABLE NAME="USER">
<ROW>
...
1
vote
0answers
49 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
1answer
133 views
MongoDB, Marshalling, JAXB and JSON
So I am really confused, so hopefully what I am asking makes sense. I should note that this is for homework but I am just asking for help on a small part.
Here are simplified and genericized versions ...
1
vote
1answer
80 views
Null Pointer Exception on testng datprovider
I am running in a strange problem. Let me explain:
I am passing set of input data from xml and then using JAXB to parse xml. This java object is then passed to my test method using testng ...
1
vote
1answer
69 views
JAXB output not in proper format
I Have a problem with marshalling the code as expected XML
public void xmleg() throws XMLStreamException
{
XMLOutputFactory factory = XMLOutputFactory.newInstance();
XMLStreamWriter ...
0
votes
1answer
65 views
jaxb binding to override the datatype List<Object> to String
jaxb unmarshals
<xs:complexType name="Test" mixed="true">
<xs:sequence>
<xs:any namespace="http://www.w3.org/1999/xhtml" minOccurs="0"/>
</xs:sequence>
...
0
votes
1answer
65 views
Custom IDResolver gets wrong target type
ITNOA
I wrote this custom IDResolver :
final class MyIDResolver extends IDResolver {
Map<String, Course> courses = new HashMap<>();
/**
* @see ...
1
vote
3answers
59 views
how do I convert an xml string to an object. I don't know what object ahead of time. Just several possibities
I have a string of that is an XML string and it could correspond to one of several objects that are jaxb generated schema files.
I don't know what object it is ahead of time.
How do convert this XML ...
1
vote
1answer
62 views
How do I output a collection of objects with JAXB?
Not able to generate the required XML from the java class as expected.
This is a class defining the property of zoo
**//Modal Class**
public class Zoo
{
private String name;
private String place;
...