0
votes
2answers
28 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 ...
1
vote
0answers
25 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
20 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
10 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
35 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
19 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
25 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 ...
2
votes
1answer
25 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
1answer
27 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 ...
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) ...
2
votes
1answer
47 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
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
22 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
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
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
0answers
26 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 { private String field1; } ...
2
votes
2answers
59 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 ...
1
vote
1answer
23 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
1answer
26 views

JAXB, how to validate nillable and required field when unmarshalling

I have a small problem with JAXB, but unfortunately I was not able to find answer. I have a class Customer, with 2 fields name and city, the mapping is done using annotations and both fields are ...
2
votes
1answer
35 views

xsd -xml regex validation not working for me using JAXB

I have written a simple XSD where I have written following XSD pattern <xsd:element name="xx"> <xsd:simpleType > <xsd:restriction base="xsd:string"> <xsd:pattern ...
1
vote
2answers
51 views

Byte array java xml serialization

I have problem with xml serialization in java. Actually I have to make a xml header to my cryptography program which should look like this: <EncryptedFileHeader> <Algorithm>algorithm ...
2
votes
1answer
27 views

JAXB XML Custom name Space

I want to give custom name space for my xml attributes while "marshaling". I know there are two ways to achieve this. One is overriding the method of "NameSpacePrefixMapper" class which is no more ...
7
votes
3answers
123 views

How to configure Spring Controller and/or JAXB to help prevent SQL / XSS injection

I have a Controller in Spring with a method like the following @RequestMapping(value = "/v1/something", method = RequestMethod.POST, headers = "content-type=application/xml") @Valid public void ...
2
votes
2answers
47 views

JaxB automatic parsing from XML to Java classes

I am new about jaxb. My question is the following: using jaxb, is it possible to do automatic mapping from an xml file to a java object? Starting from xml file, is there something generate the Java ...
0
votes
0answers
23 views

how to validate xml via xsd in java depending on value of an xml element

I am using Jaxb2Marshaller and using ValidationEventHandler-handleEvent(). i am storing any error message occurred in the process in a map. I am using xsd to validate mandatory/optional tags. So the ...
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
1answer
46 views

@XmlIDREF not seeing hierarchy when marshalling to XML

I'm very new at XML and I'm having a problem I'm not able to solve and after looking around for hours I've decided to post my problem. I'm using @XmlIDREF to just have the XmlID of some java classes ...
1
vote
1answer
40 views

xmlElements with same name and different types

) I have an xmlelement which can be from different Types. Independent of the type it has the same name. It can be an object or just a reference via URI to an existing object. I thought xmlElements ...
1
vote
1answer
65 views

How to marshal/unmarshal linked Java objects using JAXB

I've already asked a question about JAXB very recently which can be found at: How to marshal/unmarshal Java objects with private fields using JAXB. My current problem is that I am trying to marshal a ...
0
votes
1answer
47 views

Imported schema & namespaces

What is the difference between (focus on prefixes h:, c:, a: and default): <?xml version="1.0" encoding="UTF-8"?> <xmlBoo xmlns="http://www.example.org/boo" ...
1
vote
2answers
37 views

I want to insert subelement to a subelement in xml tree using Java

@XmlRootElement public class Dekkey { String keyVal; String kek1; public String getKek1() { return kek1; } @XmlElement public void setKek1(String kek1) { ...
1
vote
2answers
113 views

How to marshal/unmarshal Java objects with private fields using JAXB

I know the basics of the JAXB API, but I am stuck with something I am trying to do, and I am not sure whether it is actually possible. Details are as follows: I have a class called Book with 2 public ...
1
vote
1answer
31 views

Preprocessing data before transforming it into XML?

I am using JAXB to save my objects to XML. I have one problem with this though: One of my classes has a String myclass.getFilePath() // returns an absolute file path which represents an absolute ...
0
votes
0answers
22 views

Sample XML AutoGeneration using JAXB

I am developing a testing tool, which needs to autogenerate all possible XMLs out of a given xml schema(XSD). I am using JAXB to generate JAVA objects for the xsd. And then using java combinations ...
1
vote
1answer
40 views

XmlElementWrapper For Unwrapped Collections

The docs state the the @XmlElementWrapper annotation can be used for 'unwrapped' or 'wrapped' collections. http://docs.oracle.com/javaee/5/api/javax/xml/bind/annotation/XmlElementWrapper.html How do ...
1
vote
1answer
27 views

Generate list tag and object tag in jaxb

I want to generate list tag and object tag in jaxb. I have two classes. @XmlRootElement(name = "firstclass") class Firstclass{ List<secondclass> secondclassList = new ...
0
votes
1answer
20 views

Can we merge two xml files using stax

I have a requirement of merging two xml files.I am trying to investigate using stax parser. I am just concerned with only few particular elements as remaining elements are same in both the xml ...
2
votes
0answers
47 views

JAXB not recognise type just puts xs:anyType in schema

How to force JAXB to recognise real type in following example as it creates xs:anyType when generates xml schema implementation class @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = ...
1
vote
1answer
46 views

Expose JAXB-annotated objects through org.w3c.dom API

I have some domain objects that are annotated using JAXB annotations. This can be used to serialise the object tree to an XML document. Now, I would like to expose the same backing object tree ...
0
votes
0answers
46 views

Setting CharacterEscapeHandler variable on a Marshaller doesnt't work as expected in CXF

I'm using Apache CXF to implement some WebServices at server side. I have to implement a WebService that returns a string (Holder) with some values separated by tab character. Apache CXF encodes ...
0
votes
0answers
66 views

Store tag name into unmarshalled object with JAXB

I'm unmarshalling two XML files using JAXB and I'd like to check that there aren't contradictions between them, which involves checking the tags of the elements. In particular, I need to make sure ...
0
votes
1answer
35 views

java.lang.NoSuchMethodError with XML

I have the following XML @XmlRootElement @XmlType(propOrder = { "name", "transforms", "qualitycontrols"}) @XmlAccessorType(XmlAccessType.NONE) public class Process { @XmlElement private String name; ...
0
votes
0answers
131 views

Cannot resolve the name 'activity:verb' to a(n) 'element declaration' component

I am trying to create Java classes using xsd which I created from an XML using trang.jar. I am trying to create these Java classes in Eclipse IDE using JAXB tool. Below is my xsd and errors that i get ...
1
vote
2answers
73 views

XML IDREF in JAXB returns the wrong class?

I am new to both XSD design and JAXB. I managed to create my XSD as below: <xsd:element name="policy" > <xsd:complexType> <xsd:sequence> <xsd:element name="actor-def" ...
1
vote
1answer
26 views

How to declare an element that can contain another element or just text

Newbie question. I did search before asking! I would like to model some Java classes such that the JAXB marshalled output is as follows (essentially HTML table data - XML): <td> ...
0
votes
0answers
31 views

Exception When creating jaxb classes from xsd

I am getting this exception when generating jaxb classes from xsd. I have included all the necessary jars. But unable to find solution for this exception. I am using java 1.5. Exception in thread ...
0
votes
0answers
75 views

Add namespace to child element using JAXB

I need to create the below XML from Java Object <report> <parameters> <nname>Demo Report</name> <parameterValues> <entry> ...
0
votes
0answers
19 views

jaxB Exception using java 1.5

Exception in thread "main" java.lang.IllegalArgumentException: Expected class javax.xml.bind.annotation.XmlAccessType but found class javax.xml.bind.annotation.AccessType. I had found few articles ...
3
votes
2answers
55 views

JAXB: Get Tag as String

This question may have been answered before in some dark recess of the Interwebs, but I couldn't even figure out how to form a meaningful Google query to search for it. So: Suppose I have a ...

1 2 3 4 5 22