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

0
votes
0answers
39 views

Extensible XML schema with immutable set of Java classes bound to it

I'm trying to develope extensible XML schema that could be extended without change of Java code bound to it by JAXB. Here is the schema: <schema xmlns="http://www.w3.org/2001/XMLSchema" ...
0
votes
1answer
36 views

XML parser using jaxb

How do I get the object of a nested xml using jaxb. I have the following XML - <?xml version="1.0" ?> <file> <markups> <markup> ...
1
vote
1answer
53 views

Error on unmarshaling with generated code (moxy): “A descriptor with default root element … was not found in the project”

I generated code using moxy for different xsd-Files: http://www.forum-datenaustausch.ch/generalinvoiceresponse_400.xsd and ...
0
votes
0answers
53 views

How to define simpleType globally in JaxB

I have a simpleType defined in one namespace. I will use this simpleType in another namespace. So far ok. But JaxB generate the simpleType in every package with use it. I expected and need only one ...
1
vote
1answer
19 views

Shared refrences with json

is it possible to make use of the concept of shared references with JSON as output mode? I read this article http://blog.bdoughan.com/2010/10/jaxb-and-shared-references-xmlid-and.html), but changing ...
1
vote
1answer
22 views

Xml List to Jaxb

What way JAXB give to convert this type of XML conversion <options> <option name="name">https://abc.com/</option> <option name="name2">https://abc.com/</option> ...
0
votes
0answers
18 views

How to obtain content in SOAPBody

I am able to obtain the SOAPBody out of SOAPMessage. Is there any chance that I can get the content inside SOAPBody as an XML string. Please let me know your suggestions. Thanks in Advance
1
vote
1answer
33 views

Serializing multidimensional arrays to JSON with JAXB and MOXy

I'm serializing next two-dimensional string array with JAXB/MOXy: @XmlElement(name = "row") @XmlElementWrapper(name = "rows") private String[][] rows; and I want it to be serialized to next JSON: ...
0
votes
1answer
26 views

How to retrieve the values from the service which is returning List<Object> using jax-ws

I have a service which returns the List, this object varies depends on different scenario. Can somebody suggest me does jax-ws support this behaviour or do we have any alternative option.
0
votes
1answer
51 views

Is it still not recommded to use implementation of java collection and map in web services [closed]

I'm deciding on whether to use implementation of java collection and map or stick to arrays in webservices. Postings on Google all seem to suggest sticking to array but those postings were all from ...
0
votes
0answers
35 views

Eclipse - Include JAXB Project in Java EE Project for JAXBContext CDI

My issue seems to be some sort of build path/export issue. I have a simple JAXB Project that contains a number of JAXB classes generated from an XSD schema. These classes are in a ...
0
votes
0answers
21 views

How to access imported xsds

Hi I have a complex schema, the schema is internally calling multiple schemas. I am facing following problems I can't customize the classes <bindings ...
1
vote
1answer
78 views

JAXB Marshal setProperty com.sun.xml.bind.characterEscapeHandler

I am trying to override the escape of special characters in JAXB encoding. For this I am using an interface that implements: CharacterEscapeHandler. Here is the interface: package project1; import ...
1
vote
1answer
58 views

Which xml parse impl to parse only a part of the XML and store it in DB

I've been searching the web but I didn't find anything that meet my requirements and am not sure what to do. I know this has been asked several times but not exactly the same as this. We have some ...
1
vote
1answer
23 views

facing issue dealing with collecitons in jaxb moxy unmarshalling due to getter method getting invoked twice

I am using jaxb moxy unmarshalling, and my java object has some logic in getter methods to set values in Array. so facing issue in unmarshalling, as the getter method is invoked twice by jaxb ...
1
vote
0answers
37 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
49 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
47 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
34 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 ...
2
votes
1answer
90 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
66 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
28 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
77 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
69 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
13 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
50 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
25 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
32 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
17 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
25 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
64 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
2answers
64 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
131 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
56 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
56 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
44 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
33 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
67 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
58 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
36 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
32 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
57 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
40 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
30 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
27 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
1answer
20 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
59 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
90 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
25 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
33 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 2 3 4 5 81