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
0answers
12 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 ...
0
votes
0answers
13 views
Changing type of webparam
So my question is basically the following:
I've got a xsd that I need to use as reference to create a server with a webservice. The xsd that I've got as reference is more or less the following:
...
1
vote
0answers
12 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
22 views
JAX-WS web-service defined by WSDL with abstract global elements
Here is a WSDL containing abstract global element named paramName:
<wsdl:definitions name="AdapterSessionManagerService" targetNamespace="http://companyname.org/" ...
0
votes
2answers
30 views
Client is blocked after unmarshalling xml from socket using JAXB
I'm trying to send some xml from a Client to a Server and have the Server send back a message to the Client after receiving the data. If it is just sending xml then it runs smoothly, but when the ...
0
votes
0answers
11 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 ...
2
votes
1answer
39 views
Ignoring root element using JAXB
I am using Spring and it's REST template to bind XML from a webservice to a domain object using JAXB. The XML returned from the web service is as follows:
<response>
<user>
...
1
vote
2answers
21 views
XML wrapped list to JSON array via Jettison and JAXB
I'm using JAXB to marshal an annotated object to XML in the form:
<channels>
<channel>Test A</channel>
<channel>Test B</channel>
</channels>
I want ...
1
vote
1answer
11 views
Parsing XML with redundant namespace
I am currently faced with an XML where I don't quite understand the syntax.
The syntax is something like this:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root ...
2
votes
1answer
36 views
JAXB how to generate element which may have with nested elements?
How can I generate the following structure using JAXB? In my case I have a dynamic properties list which may have 3 types: integer, string or list. However, list properties have nested elements. How ...
1
vote
1answer
21 views
Compilation Failure when compiling class generated by jaxb
I have these error when compiling classes generated by JAXB with annotation:
annotations are not supported in -source 1.3 (use -source 5 or higher
to enable annotations) ...
-1
votes
0answers
26 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
0answers
13 views
JAXB and schema
My schema is like the following
<xs:element name="transactions">
<xs:complexType>
<xs:sequence>
<xs:element ref="abc"/>
<xs:element ref="def"/>
</xs:sequence>
...
1
vote
1answer
15 views
Partial objects with JAXB?
I'm working to create some services with JAX-RS, and am relatively new to JAXB (actually XML in general) so please don't assume I know the pre-requisites that I probably should know! Here's the ...
2
votes
1answer
26 views
Remove ns2 as default namespace prefix
I have a file that is printed with a default namespace. The elements are printed with a prefix of ns2, I need this to be removed, how it is with my code:
<ns2:foo xmlns:ns2="http://namespace" ...
1
vote
0answers
20 views
jax ws custom object recieved in request is null
I've used jaxws before but have not passed custom object as a parameter before. I'm glassfish3.1, netbeans7.3 and created services through netbeans jaxws wizard.
My problem is when custom ...
1
vote
1answer
31 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 ...
0
votes
0answers
12 views
wsimport error duplicate class generation error
I tried to generate classes from wsdl using wsimport command of below from commandline. But, getting the errors.
**C:\Users\Miky\Desktop>wsimport -keep -s generator Awsdl.wsdl ...
1
vote
1answer
31 views
JAXB/Jersey - How To Specify “schemaLocation”
I am using Jersey to create a restful web-service marshals XML.
How would I set the xsi:schemaLocation?
This answer show how to set the Marshaller.JAXB_SCHEMA_LOCATION directly on the Marshaller.
...
1
vote
2answers
29 views
Strange “missing an @XmlRootElement annotation” error, only with Maven, works in Eclipse
I wrote code that marshals xml data. Before marshaling the data to output i validate the data the way Blaise Doughan suggests here
Running a simple test in eclipse (marshaling data an validating it) ...
1
vote
2answers
10 views
TomEE Resteasy JAX-B -> Can not get Nested Object
i'm working on a RestWebService using Resteasy. The basic implementation works fine. Know I tried to return a Complexer- Object through rest...
Actually its pretty easy..I thought...;-) I'm getting a ...
2
votes
1answer
46 views
JaxB cannot be cast to java.lang.Integer
I have an abstract class:
@MappedSuperclass
public abstract class BaseEntity<K>
{
@Temporal(value = TemporalType.TIMESTAMP)
private Date cadastrado;
@Temporal(value = TemporalType.TIMESTAMP)
...
2
votes
1answer
48 views
Getting started with JAXB
Schema Root
<xs:schema jxb:version="1.0"
xmlns:jxb="http://java.sun.com/xml/ns/jaxb"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
1answer
22 views
Best way to add functionality to JAXB classes in NetBeans [closed]
what is the best way to implement some additional methods on JAXB generated class in NetBeans?
Actually, I copy generated classes into another package and modify it. But what if my xml schema will ...
0
votes
0answers
29 views
Does Jaxb support plugins/extensions?
I'm facing a case where Jaxb doesn't support unmarshaling a piece of XML (that was poorly designed, see: Using JAXB to unmarshal xml with map-like structure to object). I'm trying to find a flexible ...
1
vote
1answer
30 views
JAXB XmlJavaTypeAdapter unmarshal method not being called
I am trying to marshal/unmarshal a Color to XML. The JAXB project had example code for doing this exact thing via a XmlJavaTypeAdapter ...
1
vote
1answer
23 views
Exception converting object to XML using jaxb
I am trying to build an XML from object using JAXB.
But I am missing something because I get an exception:
javax.xml.bind.MarshalException
- with linked exception: ...
1
vote
1answer
22 views
Append binary data to serialized xml header
I need to append binary data to file but before this data is an xml header. Whole file wont be proper xml file but it must proper xml header like following:
<EncryptedFileHeader>
...
0
votes
0answers
23 views
JAXB: XML to java object converstion
XML Structure:
<res>
<resp1 m="w" n="x">
<A x=".7" y=".5">
some text here
</A>
</resp1>
</res>
How to create java pojo to parse this xml using JAXB. bcoz it ...
0
votes
0answers
29 views
JAXB Two classes have the same XML type name
I have an XSD schema:
<element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType" />
<complexType name="CanonicalizationMethodType" mixed="true">
<sequence>
...
0
votes
1answer
17 views
JAXB update the XML file
I'm using JAXB to generate XML file on the server. After the first time I deployed the server. I want to change some tag names of the XML file. Then I changed the some class variables. I recompiled ...
1
vote
1answer
34 views
Jaxb Marshalling for newbies
All I'm trying to achieve is simply to marshal to a xml file
Contacto.java
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public ...
3
votes
2answers
56 views
Using JAXB to unmarshal xml with map-like structure to object
I'm trying to unmarshal poorly designed XML into an object. The XML was built using a generic type element which can have any number of items with any name. Depending on the value of type in Something ...
1
vote
1answer
16 views
Marshalling a pojo using jaxb results in junk charecters being displayed
i am marshalling a pojo using jaxb.
The pojo class contains a variable of type string and the value being set contains the currency symbol in it depending on the java.util.LOCALE being passed.
My ...
1
vote
0answers
19 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
1answer
32 views
Jaxb - Overriding the XMLElement name attribute
I have a parent class ClassA, that I cannot modify. It has a field "field1" which does not have a XmlElement annotation on it.
@XmlRootElement
public class ClassA {
protected String field1;
}
...
1
vote
0answers
22 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
1answer
31 views
Cannot import EclipseLink MOXy
I downloaded the latest EclipseLink (2.4) and put the eclipselink.jar in my folder. However, I do not see the @XmlInverseReference annotation anywhere and I cannot import ...
2
votes
2answers
60 views
How to tell JAXB which fields to serialize at run time?
I want to selectively serialize fields based on the request and the user.
For example, an admin user would be served an XML with some additional fields. Whereas a normal user would get an XML without ...
0
votes
0answers
35 views
Unable to expose Web Service Impl class through JAX-WS annotations
I am developing a web service provider using JAX-WS. The below steps are followed.
Generated stub classes including SOAPBindingImpl class and stub classes and packed as a JAR file and included the ...
1
vote
1answer
20 views
Serialize HashMap like a Collection Property
Here I got two classes "Student" and "Course":
@XmlRootElement
class Student {
private String name;
private HashMap<String, Course> courses;
public Student() {}
public ...
1
vote
1answer
68 views
How do I specify the name of a JAXB element using Java generics?
I have a situation in which a Java object contains a generic Payload<T> that needs to be marshalled into xml. So given the following classes:
AbstractBox
@XmlTransient
public abstract class ...
0
votes
1answer
17 views
How to Avoid CXF Generating Separate class rather than use exiting XMLRootElement Class(JAXB Class)
I'm newbie to CXF and JAXB. I'm trying to generate WSDL from Java class(Bottom up Approach) using eclipse on CXF.
Created the Interface as fellows.
@WebService(name = "EBMData", targetNamespace = ...
1
vote
1answer
16 views
jaxb XmlAdapter unmarshall an object from the same xml
take a look at this code :
@XmlRootElement
class Course {
private int id;
private String name;
public Course() {}
public Course(int id, String name) {
super();
...
1
vote
2answers
27 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 ...
1
vote
0answers
15 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 ...
0
votes
0answers
15 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 :
...
1
vote
1answer
32 views
JAXB & HttpEntity
I am writing a REST client for my REST webservice using apache httpclient (4.x). I am using JAXB (JSON) for the request/response. In one of my webservice, I have a PUT request in which I have send the ...
1
vote
1answer
22 views
jaxb annotations to suppress xmlns in soap response
Initially i have all the fields without annotations in my POJO, those are showing great in Soap Response as
<fieldName>value</fieldName>
Now i have a requirement to show the field ...
0
votes
1answer
31 views
Jaxb XML Attribute
I am doing marshalling of java object to XML using JAXB . I had requirement to create some thing like
<link rel="self" href="test" />
How this can be done? what annotations should i use.
...
