Tagged Questions
1
vote
1answer
30 views
Unmarshal a single element list fails
I'm running a sample (which i can't find anymore) from Blaise Doughans blog on Glassfish 3 using EclipseLink 2.5 MOXy for JAXB service.
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public ...
1
vote
1answer
24 views
Change name of Resteasy generated <collection> element to something else?
<collection>
<Car>
<Car>
<Car>
</collection>
I would like to change the name of the tag to
I have no idea what I'm using--it's just Jboss 7.1.1 and a standard ...
2
votes
2answers
96 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
47 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 ...
0
votes
0answers
25 views
Does JAX-RS have a way to bind JAXB Annotations to APPLICATION_FORM_URLENCODED
So while using JAX-RS, you can automagically have your JAXB annotations output JSON or XML depending on the media type you set for your endpoint.
I'm surprised to see that when I set the mediatype to ...
1
vote
1answer
70 views
JAXB - Unexpected elements in XML output
I have a class called Building.
It has a list of BuildingBenchAssociation records (List<BuildingBenchAssociation> benches)
BuildingBenchAssociation has a composite id made up of buildingId and ...
1
vote
1answer
71 views
Returning XML object through jax-rs
I have a JAX-RS web service which looks like so:
@Path("/status")
@Produces("application/xml")
@GET
public PrecisionStatus getPrecisionValue(){
PrecisionStatus status = ...
return status;
}
...
0
votes
1answer
132 views
JAX-RS - JSON without root node on Glassfish 3.2
Exactly the same question has been asked here:
JAX-RS - JSON without root node
But the solution doesn't work for me because my server doesn't have any other interfaces besides REST, thus file ...
0
votes
0answers
36 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
124 views
Serializing POJOs to/from JSON using jersey: weird nesting of elements
I got the following structure of my classes:
@XmlRootElement(name="rootClass")
@XmlAccessorType(XmlAccessType.FIELD)
public class rootClass {
@XmlElementWrapper(name="children")
...
0
votes
1answer
75 views
Jersey JSON upload failure
I have an entity class looks like this.
@XmlRootElement
public class ImageSuffix {
@XmlAttribute
private boolean canRead;
@XmlAttribute
private boolean canWrite;
@XmlValue;
...
0
votes
2answers
363 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 ...
1
vote
1answer
234 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 = ...
0
votes
1answer
28 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( ...
0
votes
0answers
172 views
Generated WADL for a List of Resources
I am struggling for a couple of days now with the following problem. I searched quite a lot for an answer, here in SO, in jersey mailing lists and the net in general, but weren't able to find answer ...
2
votes
1answer
173 views
How to Modify XML element using JAXB?
I have an XML that is generated by JAXB. See the XML file below
<config>
<instance>
<hostName>192.168.2.98</hostName>
<port>444</port>
...
1
vote
1answer
125 views
JAX-RS and JAXB entity causes bad request with space before xml preamble
I'm testing my JAX-RS service using the RESTClient FireFox extension. Sometimes I mistakenly paste in a space before the xml preamble. This causes a 400 Bad Request when I do my PUT. Is there anyway ...
0
votes
0answers
173 views
REST API Response
I am creating restful web services. I need to get the Response of GET method as List of all Categories whose site Id is 1. when I run the following code it will not give the error
@GET
...
0
votes
2answers
82 views
jax-rs response entity is not the xmlroot but is an element
I have a jax-rs response method which
@Produces('application/xml','application/json')
i also have a jaxb entity which produces this
<person>
<name>joe</name>
...
2
votes
0answers
146 views
JAXB generic list serialisation using Map
I've got a class that wraps a generic list. When I put a Map in that generic wrapped list, the JAXB output is not what I expect. Items are shown, but their contents isn't.
To elaborate:
A simplified ...
1
vote
2answers
76 views
No Wrapper Element when returning List
I'm using JAX-RS / JAXB and JPA to create an REST Webservice.
@GET
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
public List<MyObject> getList() {
...
3
votes
1answer
317 views
404 Error at REST-Webservice example with Jersey and Jackson
I am trying to build a simple java-based REST web-service using JSON. I am also using Maven for dependency management.
Since I am new to this, I have been thoroughly following a nice 5-step-tutorial ...
1
vote
3answers
695 views
json with Jersey: NoClassDefFoundError
I am trying to build a JSON RESTful Webservice with JAX-RS (Jersey). I'm also using Maven to build the App.
My first approach was
@Path("/Person")
public class PersonService {
@GET
public ...
1
vote
2answers
73 views
How to mark a field as not to be expanded by JAXB in JAXRS
I have 2 classes as follows:
@XmlRootElement
@PersistenceCapable(detachable="true")
public class User {
@Persistent(primaryKey="true", valueStrategy=IdGeneratorStrategy.IDENTITY)
private ...
1
vote
2answers
520 views
how to handle Json body in post request in jax-rs
I have a project (homework) about JAX-RS. I'm working with NetBeans, Jersey and Tomcat.
This is my "User" class for main object in the system.
import javax.xml.bind.annotation.XmlElement;
import ...
1
vote
1answer
142 views
Bean changes not reflect on CXF Restful webservice
I have implemented a CXF restful webservice. There is some object which does not have default constructor are throwing Error while calling webservice.
Error:
WARNING: ...
3
votes
1answer
175 views
Jersey JAXRS filter that provides unmarshalled entity before hitting resource (web service)
Is there an elegant way (filters, hooks) to intercept an unmarshalled entity (and its annotations) in Jersey before it hits the web service resource methods - those annotated with @POST, @PUT.
I ...
3
votes
1answer
589 views
integrating Swagger with JAX-RS and JAXB help needed
I'm working on REST Api using JAX-RS and JAXB. I also would like to use Swagger to generate docs for the api. I followed the example here https://github.com/wordnik/swagger-core/wiki/java-jax-rs . So ...
2
votes
1answer
69 views
Google App Engine (GAE) - How to control the depth of the object graph loaded by JPA and exposed through JAX-RS?
I am tempted to use the GAE SQL cloud through JPA, but should this go wrong I will fall back to using the datastore with JPA.
I can foresee that if my domain objects are annotated such that Entity A ...
1
vote
0answers
205 views
jaxb with Jersey inside OSGI java.lang.NullPointerException
I'm running Jersey and JaxB as a cq5 osgi bundle. Jersey works find but the problem occures when Jaxb tries to convert java object into xml. Here is my code
Jersey Class (reachable)
@GET
...
1
vote
1answer
290 views
Create JAXBElement<Book> from String
I have a class Book defined and I want to create a JAXBElement object that will contain the information corresponding to the XML from the String object.
For example, I can have something like:
...
1
vote
3answers
169 views
Check if JAXBElement parameter is null
I have the following method, that receives XML and creates a new book in the database:
@PUT
@Path("/{isbn}")
@Consumes(MediaType.APPLICATION_XML)
@Produces(MediaType.APPLICATION_XML)
public ...
2
votes
5answers
238 views
Serialize a java.util.list in JAX-RS
I have the class book:
@Entity
@Table(name = "books")
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType
public class Book {
@Id
@XmlAttribute
private String isbn;
...
1
vote
1answer
460 views
Google App Engine -
I'm struggling to get JAX-RS configured within Eclipse Juno for deployment to the Google App Engine, in fact, I haven't got as far as getting a local deployment to work (Jetty).
Here's the stack ...
1
vote
0answers
116 views
Jaxrs like marshalling and unmarshalling
I'm working on an light-weight framework for marshalling and unmarshalling data sent to and received from a jaxrs service. I'm using the jaxb marshaller and unmarshaller.
When using the service I ...
4
votes
1answer
119 views
NPE when using extension of a generic class in JAXB / Resteasy
I am using RestEasy 2.3.4. I am encountering NPE. I have a generic base class ValueContainer, which I plan to extend as StringValue, IntegerValue, BooleanValue, etc, by substituting the generic param ...
9
votes
1answer
633 views
REST services : how to specify annotatedMethod without using annotations
We are trying to take out all the annotations from our classes and configure it in a spring-config.xml.
spring-config.xml looks like
<jaxrs:server id="restServer" address="/rest/">
...
0
votes
2answers
450 views
How to create custom JSON/XML responses in my web service
I am creating a web service with JAX-RS. I know you can annotate the domain model with JAXB annotations and lean back and watch the whole class being transformed to XML/JSON. However, this is not ...
0
votes
0answers
130 views
JAXB + Hibernate + RESTEasy results in “Could not find MessageBodyWriter” exception
I am attempting to return from my JAX-RS service an object (annotated with @XmlRootElement, @Entity, and @Table mapping to a Hibernate connection to a MySQL database) of type "application/json" (via ...
0
votes
1answer
151 views
JSON response with JAX-RS
I have a simple POJO that i convert to a JSON Object.
@XmlRootElement
public class Data {
public Data(){}
private int roll;
private String name;
public int getRoll() {
return ...
2
votes
1answer
793 views
Is it possible using Jersey/JAX-RS annotations to skip a class member when marshalling to XML/JSON?
Pretty straightforward question. I am using Jersey to build a REST system. If I have a class with a value that I need to use during processing but don't want sent as part of the XML or JSON output ...
1
vote
1answer
320 views
Marshalling List<String> with JAX-RS
I'm used to working with jax-ws where a wsdl file is generated, and a client can then be generated based on this wsdl file and its xsd(s) using a maven plugin. Using this client is no hassle at at, ...
0
votes
1answer
185 views
Jax-rs client marshal list of entities using jax-b
I need to marshal a list of entities using jax-b in a jax-rs client, without creating a wrapper class for each entity needed (there are manny entities!). I notice the service is able to marshal a list ...
0
votes
1answer
164 views
How to create simple Jersey app without using Maven
I wanted to make simple Jersey based REST app without using Maven in NetBeans. I followed few steps and now I am stuck:
create simple web app using NetBeans or any other development id.
Added JAX-RS ...
0
votes
2answers
266 views
Problems in retrieving UTF-8 body from put request using a JAX-RS
I am trying to send the following utf-8 encoded XML to a rest api that is implemented using JAX-RS in Java.
The XML data:
<?xml version="1.0" encoding="UTF-8"?>
...
6
votes
2answers
1k views
JAXB annotated POJO for JSON serialization in Jersey returns String for every field type
I am using Jersey to create a web service for a server component. Unfortunately I have a problem with the formatting of my JSON response, because the data is always formatted as string.
I have a ...
1
vote
1answer
399 views
Passing multiple xml objects to jax-rs service
I'm using JAX-RS Jersey and JAXB on my server code to implement services, which I consume from an Android app. I already have the services returning my custom objects in xml format and I can unmarshal ...
3
votes
1answer
82 views
JAXB - PascalCase Wrapper for Class Collection
I am writing a JAX-RS using JAXB for marshaling my objects. I have a simple object, NameValuePair that I want to send across in PascalCase. Everything works, except it is wrapped in a camelCase ...
1
vote
0answers
339 views
JAX-RS: Request validation using XSD, JAXB
Tech Stack: Java 1.6, JAXB, Spring 3, JAX-RS (RESTEasy)
I've written a web service (REST) and now I want to validate the request using a schema.
I've a working code as seen here for validation.
My ...
0
votes
2answers
156 views
How to implement JaxB in between html page & Restful WebResource Method?
Iam new in Jax-rs.I have doubt to passing a data from html page into webresource method.In the html page contains fruitid & fruitname.How to convert these two attributes into Java object ...
