0
votes
0answers
41 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
72 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 ...
1
vote
1answer
17 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
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
0answers
34 views

Formating XML output from JAXB from a specific architecture

I'm trying to use JAXB and I'm having difficulties : at first I had to send through a jersey webservice an HashMap a little but complex (Map>) so I gave up and I found another way to format my data ...
1
vote
1answer
275 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 ...
2
votes
1answer
58 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() { ...
2
votes
0answers
80 views

simple way to assign default value with xmlelement defaultvalue annotation

I have a simple pojo annotated class via JAXB like that : public class MyPojo implements Serializable { private final static long serialVersionUID = 1234L; @XmlElement(name = ...
1
vote
1answer
65 views

jaxb @XmlIDREF @XmlID work amazingly

jaxb @XmlIDREF @XmlID work amazingly my xml input is <dept> <courses> <course id="1" units="4" level="UNDERGRAD" name="Fundamentals of Programming"/> <course ...
2
votes
1answer
101 views

javassist not injecting annotation at existing field

I'm trying to inject JAXB annotation at runtime using Javassist. I have written following code: public class AssistAnnotationInjector { public static void addAnnotationRunTime(String className, ...
0
votes
1answer
59 views

RuntimeAnnoatationReader to read custom annotations

How RuntimeAnnotationReader can be used for JAXB annotations to read Custom Annotations and control class fields at runtime.While searching on google i found this link ...
0
votes
1answer
510 views

RESTeasy, JSON and null fields

When RESTeasy marshals a POJO into XML, it will skip null values by default. However, when marshaling to JSON, null properties are included. Is there any way to force the JSON output to match the XML ...
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
1answer
1k views

parameter JAXBElement String

I' have simple question about JAXB. Here is the sample code: //setter that has input JAXBElement b.setBIC(JAXBElement<String> value); How can I initialize the input element, that uses ...
2
votes
0answers
104 views

How do you specify a XmlAccessorType to be used for JAXB xjc-generated classes

I'm using XML schemas and generating java files with xjc to be used with JAXB. The java files that are generated have the default @XmlAccessorType(XmlAccessType.FIELD) specified. I would like to ...
1
vote
0answers
249 views

how to annotate namespace on Element jaxb xjc ann

I need to create xml document with payments information. There are a few namespaces and it is nessecery to add prefix to each tag. That is my set up: xsd: <xs:complexType name="Document"> ...
0
votes
1answer
87 views

How can i do certain things in JAXB such as ignore the order of xml elements?

More specific Questions: How do I overcome the following limitations in JAXB (if possible): 1) validation of an xml file requires creating a schema file somewhere on the HD. I should not have to ...
1
vote
1answer
38 views

How do I change JAXB implementations?

How can I change out the default JAXB implementation for another one? I'm running Java 1.7.
0
votes
0answers
69 views

Can I overcome JAXB's limitations by changing the implementation? [closed]

I recently tried out JAXB default implementation (JDK 1.7) and I really love it's power and simplicity with annotations. However I quickly discovered a few very serious (to me) limitations. I would ...
1
vote
1answer
38 views

How do limit xml from being displayed using JAXB

Using Spring, I'm building a RESTful web service and have an object that is being marshalled (Jaxb2Marshaller), this is tied to MYSQL database that has @OneToMany and @ManyToOne annotations. How do I ...
1
vote
2answers
337 views

Using POJO with nested classes with JAXB and Solr annotations

I would like to have as few classes as possible, so I would like to construct a JAXB and Solr annotated POJO, as you might guess, to consume XML, marshall it to a Company object and index it. I have ...
1
vote
1answer
134 views

wsgen fails to ignore JAXB annotations

I've been using Metro and have come across a problem whereby wsgen seems to ignore any JAXB annotation that I put on web method response classes. I'm trying to return a set of entity classes that I ...
1
vote
1answer
164 views

including xs:restriction(s) as annotation(s) in moxy generated java classes

I have some new xsd schema version updates for which I need to generate corresponding java classes. In the past, I understand that the classes where always generated using EclipseLink's Moxy JAXB ...
2
votes
1answer
206 views

JAXBException occurred : class javax.jdo.identity.LongIdentity nor any of its super class is known to this context

The client code looks like: String urlGetRequestsByCustomer = baseUrl + "getRequestsByCustomer?customerID="; byte[] getRequestsByCustomerResponse = customerAgent ...
0
votes
2answers
203 views

Creating abstract generic jaxb class

I have the following simple jaxB class that takes generic type E @XmlAccessorType(XmlAccessType.FIELD) @XmlTransient @XmlRootElement(name = "searchResponseBase") public abstract class ...
1
vote
1answer
373 views

JAXB : How to add attributes to an inner element

I have the below XML that I want to read. Using JAXB on java 1.6, how do I annotate for the attribute regex ? Can I have the field to be of type boolean ? <?xml version="1.0" encoding="utf-8"?> ...
1
vote
0answers
167 views

@XmlJavaTypeAdapter unmarshaled Object is null

My question is: how does jax-ws generate the unmarshal code associated with the @XmlJavaTypeAdapter? I don't see the adapter class(es) in the client code (instead they are broken out into their ...
1
vote
3answers
674 views

JAXB, Custom bindings, Adapter1.class and Joda-time

I have a problem with the way JAXB is generating the bound classes for an XML schema (which, for sake of precision, I cannot modify). I want to map a xsd:date type to a Joda-time LocalDate object and, ...
1
vote
1answer
330 views

declare proporder over extended class

Lets say i have class @XmlType(propOrder = { "one", "two" }) @XmlRootElement(name = "search") public class Search { protected One one; protected Two two; ...
0
votes
3answers
1k views

Two CLasses have same XML type name

Im having this error where it says that i have two classes of same XML type name so the problem is between InfoSource -> NameSearchFilters -> SearchRequest error Caused by: ...
0
votes
0answers
166 views

can you use a @XmlElementWrapper annotation inside a @WebFault

I have a List within an Exception.... like: @XmlAccessorType(XmlAccessType.NONE) @XmlType(name="ValidationException") @WebFault(name="ValidationException") public class ValidationException extends ...
1
vote
1answer
136 views

JAXB annotations for enums

I have the following enum definition: public enum MyEnumeration{ ENUM_ONE("1","foo"), ENUM_TWO("2","bar"); private String code; private String description; public String getDescription() ...
0
votes
1answer
69 views

What is equivalent of @XmlElements in Simple?

What to replace JAXB annotation @XmlElements in Simple XML framework with? @XmlElements({ @XmlElement(name = "distance", type = DistanceCheck.class), @XmlElement(name = "pattern", type = ...
1
vote
1answer
186 views

How do I annotate a List of Lists of Strings using JAXB?

Say I have the following: @XmlRootElement(name = "foo1") public class Foo1 { @XmlElementWrapper( name="answerList" ) @XmlElement( name="answer" ) private List<String> answerList; } ...
0
votes
0answers
184 views

@XmlElementWrapper JAXB configuration without annotations

I'd like to force JAXB to treat all collection properties as if they were annotated with @XmlElementWrapper, meaning I want sub-elements for all collections. Is this at all possible without annotating ...
0
votes
1answer
136 views

JaxB unable to marshall, says missing RootElement but has one

I have seen posts that exist around this issue, but as I am new to jaxB I am having a bit of trouble I have a Root element set up and declaring my XML elements aswell. what am I doing wrong here? I ...
3
votes
1answer
666 views

How to set custom JAXBContext

i would like to ask a question about @UsesJAXBContext annotation in jax-ws. I try to make it work on client side but I'm probably missing something. Here is my case: I've got webservice with ...
2
votes
1answer
246 views

jaxb, can I use @XmlJavaTypeAdapter with @XmlElements?

Given the following annotations @XmlElements({ @XmlElement(name = "first", type = First.class), @XmlElement(name = "second", type = Second.class), @XmlElement(name = "third", type = Third.class), ...
1
vote
2answers
152 views

Inverse from @XmlTransient

@XmlTransient prevents the mapping of a JavaBeans property to an XML representation. Is there something inverse from this, meaning that a method will be mapped even that not used by the WebService? If ...
0
votes
0answers
149 views

Annotation Overload

I've been learning JSON and JAXB for use in serializing simple classes. (I always used XStream before). The "in" trend for the past several years is to use Annotations for, well, most everything. ...
1
vote
1answer
129 views

How do I customize the java annotation generated by JAXB?

JAXB generates @XmlAttribute annotations for every attribute. For example, the attribute <xsd:attribute name="agent_id" use="required" type="xsd:unsignedInt"> ...
1
vote
0answers
587 views

Using JAXB annotations with RestEasy

I'm trying to use JAXB annotations with RestEasy in order to choose names and elements order in my JSON output. Somehow, it isn't working, even if the RestEasy doc says it's possible. Here some ...
0
votes
1answer
215 views

JAXB annotations with Spring MVC

I'm trying to retrieve an XML which has this format: <roles> <role>manager</role> <role>driver</role> </roles> I use this classes and annotations: public ...
0
votes
1answer
457 views

returning json serialized MAP<String,String> from jersey RESTFUL Service

I want to return a json answer that looks like this: { "key": "value", "Key2": "value2", "params": {"paramKey1":"ParamValue1", "paramKey2":"ParamValue2", ...
0
votes
1answer
130 views

Create Element with atom as prefix using JAXB annotations

I'm trying to create an xml element which i want to have as prefix the atom. I know that i can't do this: @XmlElement(prefix="atom") And create <XmlAttribute> <atom:link ...> ...
1
vote
1answer
1k views

Mapping an XML sub-child with jaxb annotations

I am trying to Unmarshal the following xml: <datas xmlns="http://www..." xmlns:atom="http://www.w3.org/2005/atom"> <data> <atom:link rel="data" type="application/xml" ...
2
votes
2answers
2k views

XML binding with the use of JAXB and Spring-MVC

the following xml is in a repository on a server: <author xmlns="http://www..." xmlns:atom="http://www.w3.org/2005/atom"> <name>S. Crocker</name> ...
2
votes
2answers
836 views

Using JAXB with an XML file with many of the same elements

I am working on creating a Java class to map an XML file that has multiple same elements. The following XML is an example of what the file looks like: <TrackBroadcast> <DateTime>some ...
0
votes
0answers
887 views

Using JAXB to marshal/unmarshal lists of named key-value pairs

I'm trying to use JAXB to unmarshal some XML produced by another system into a Java bean-style object. Here's an example of the XML I'm processing. <document> <someList> ...
1
vote
1answer
263 views

JAXB reuse annotation from parent class and access preset field

There is a class called Parent which in generated from a xsd file and holds a fully JABX annotated List. This class can't be changed. Furthermore there is a Child extends Parent class that would like ...

1 2