Tagged Questions
0
votes
0answers
8 views
JSONProvider transform elements to attributes (cxf)
We are building a REST service with CXF where we send and receive data in both JSON and XML
In the JSON version we dont want to bother our clients with using the '@' notation for attributes and using ...
0
votes
1answer
27 views
java.lang.UnsupportedOperationException: Attempted to serialize java.lang.Class: org.hibernate.proxy.HibernateProxy
I'm using a Restful web service (Jersy implementation) with a JSF application and used Json to get the data as follows:
carObjectDao = new GenericDAO<carObject>(carObject.class);
...
0
votes
0answers
14 views
jax-rs 2.0 and Glassfish 4 unable to @consume JSON into Pojo
I'm trying to create a plain sample that will consume a json message and inject it in the pojo object.
I'm using the Netbeans dev build with JavaEE7 support and the latest Glassfish 4 promoted build.
...
0
votes
0answers
17 views
transfrom array to hashed object with Jsonprovider (cxf jax-rs)
I'm building a restfull webservice which is to consumed as both json and xml.
The data i'm exposing contains lists of variable 'properties'.
(The output is created by from Jaxb java objects)
in xml ...
0
votes
1answer
34 views
JAX-RS / Jersey “.get(Integer.class)” and single JSON primitive (Integer) values?
I have a JAX-RS WebService with the following method:
@Path("/myrest")
public class MyRestResource {
...
@GET
@Path("/getInteger")
@Produces(APPLICATION_JSON)
public Integer ...
0
votes
2answers
72 views
How to extract ObjectMapper from JAX-RS Client?
I am using Jersey JAX-RS client (version 2.0). I know it is using a Jackson ObjectMapper to generate and parse JSON. I want to use that same object to generate JSON for some java classes so that I can ...
0
votes
1answer
93 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
1answer
53 views
Long string value in JSON
I'm writing a MessageBodyWriter for java.util.Properties.
@Override
public void writeTo(final Properties t, final Class<?> type,
final Type genericType, final Annotation[] ...
0
votes
1answer
67 views
Glassfish throws MessageException if I use Response.ResponseBuilder
My program used to work, but after I have updated NetBeans and Glassfish it stated to throw:
com.sun.jersey.api.MessageException: A message body writer for Java class java.util.LinkedList, and Java ...
1
vote
1answer
75 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
63 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
1answer
263 views
Java web service returning soap or json
I need to create web service in Java with method which will be returning some object in SOAP or JSON format. The format depends on how the method is invoked.
For example:
...
0
votes
1answer
75 views
Basic Query on JAXRS and tomee
My understanding regarding TomEE (or any Java EE 6 container) is all that i just need to deploy a JAX-RS based application with correct service class annotated.
@Path("/hr")
public class HelloRest {
...
0
votes
0answers
115 views
jax-rs javascript ajax json
I'm new to both ajax/javascript and web services, I have a java web service written using jersey.
Web-Service method:
@GET
@Path("/monthly/{item}/{from}/{to}")
@Produces({ ...
0
votes
1answer
88 views
Unable to catch Exception when passing null body with Content-Type:application/json
I've written an ExceptionMapper in order to catch all http exception (400,404,500,...) in my application.
@Provider
public class MyExceptionHandler implements ExceptionMapper<Exception> ...
0
votes
0answers
54 views
Using @JsonView with Apache CXF
I need a hint how to use the powerful @JsonView Notation from Jackson at a specific method of my endpoint.
The example says: ObjectWriter w = objectMapper.writerWithView(SomeClass.class);
But using ...
0
votes
1answer
110 views
Unrecognized Property in fetching data from JSONObject in Jersey web service
I need to convert a certain JSON string to a Java object. I am using Jackson for JSON handling.
Here is my Java class-
public class RequestClass {
String email_id;
String password;
public String ...
0
votes
1answer
41 views
How to use JTA to POST an array of objects using Jax-RS?
I have a jax-rs REST service that POSTs an
ArrayList<Book>
objects to the server.
On the server, I loop through each Book, convert it into a BookEntity (I'm using JPA), and then persist each ...
1
vote
1answer
131 views
JSON JAX-RS in JAVA
I'm using jersey implementation for restful ws in java. Im consuming them from PHP client. I have it working fine with JSON! as it follows:
PHP: (using httpful phar)
...
1
vote
1answer
51 views
jersey jax rs do not return xmlelement which is 0
I tried to return null for a XmlElement if the value is 0. But if i do so, i get an exception.
My intend is that i dont have this column in my generated JSON if its value is 0. So how am i able to ...
1
vote
0answers
120 views
JPA to JSON with only primary key/normalize data
I have two JPA Entities (Patient and Clinic) with OneToMany ManyToOne relationship. I would like to return the data in JSON format (currently with org.apache.cxf.jaxrs.provider.JSONProvider). Below is ...
0
votes
2answers
338 views
JAX-RS REST service returning boolean as string
I am using JAX-RS to produce a RESTful service. However when requesting JSON, boolean values are returned as a quoted string {"boolValue":"true"} rather than a boolean value {"boolValue":true}.
A ...
1
vote
1answer
87 views
Manage attributes inheritance with RESTeasy
I'm using RESTeasy to convert a json from the payload to a POJO in the web server. I encounter a problem when one of those POJO member is generic.
For example:
public class MainPOJO
{
private ...
1
vote
1answer
120 views
Using dynamic Jackson Mix-ins with Apache CXF
I am using Jackson as JSON provider with Apache CXF. I would like to use Jackson mix-ins to shape the structure of JSON returned by the REST controllers. The mix-ins would apply to domain objects ...
2
votes
1answer
257 views
Registering POJO Support or JSON Providers for JAX-RS programmatically
I am developing plugins for an application. The plugins are basically JAX-RS endpoints. They are packaged and deployed to the classpath of the application which runs a Jetty and registers them. ...
1
vote
1answer
494 views
Ajax request with JAX-RS/RESTEasy implementing CORS
I have two servers (Apache and JBoss AS7) and I need to provide access to all http methods to a client. All these request must be sent via ajax.
Example of the client code:
$.ajax({
type: ...
1
vote
2answers
68 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 ...
0
votes
2answers
210 views
Mapping of custom exception in JAX-RS via @WebFault annotation
I am developing a Client-Server app with JAX-RS / Apache CXF, JSON
I would like Apache CXF to handle my exception transparently on both ends : Which means transforming the exception into a bean, ...
1
vote
2answers
377 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 ...
0
votes
1answer
595 views
Jax-RS API POST and GET methods (RESTful Services)
I have a project (homework) about JAX-RS. I'm working with NetBeans, Jersey and Tomcat. In the post method for example:
'{"user":{"username":"accavdar", "gender":"M", "birthDate":"06.11.1982"}}'
...
2
votes
1answer
221 views
Map a complex JSON string to a POJO class
I want to map following JSON struct to a POJO class automatically:
{
"fieldClass":
{
"a": 1,
"b": "b",
"c": "c",
"d": "d",
"e": "e"
}
}
I added ...
0
votes
0answers
39 views
Return JSON Response without constructing one
Assuming I have proper POJO class, here is my post method:
@POST
@Path("/post")
@Consumes("application/json")
public Response createProductInJSON(Product product) {
String result = "Product ...
1
vote
0answers
166 views
Submitting multipart/form with JSON with Ext-JS to JAX-RS, How to set Content-Type?
I want to submit a form that has file attachment using Ext-JS to a JAX-RS service that is using Jackson to process the JSON.
The problem that i have is that the JSON data doesn't have a Content-Type ...
0
votes
2answers
107 views
jax-rs method parameters as CDI beans
I have simple JAX-RS bean like below:
@Path('/client')
class ClientResource {
@POST
public Response post(Client client) {
...
}
}
Client is being created from json response ...
4
votes
1answer
262 views
Jackson @JsonSerialize ignored in Jboss 7.1.1 if maven dependecy set to provided
I have Jax-rs endpoint deployed in WAR archive on JBoss 7.1.1.
In its JSON response I don't want my null field name to be included, so I put @JsonSerialize on it.
class MyResponse {
private Long ...
0
votes
1answer
285 views
Custom JSON Date handling in CXF
I'm using apache CXF to create a JAX-RS service that consumes multipart/form-data, one of the parts is application/json which I'm handling in a Java bean. The problem that I have is that the date ...
0
votes
1answer
198 views
to return JSON using JAX-RS
I am trying to return JSON of SOLRDocList type which is :
{numFound=0,start=0,docs=[]}{"start":0,"empty":true,"class":"class org.apache.solr.common.SolrDocumentList","numFound":0}
However since I ...
0
votes
1answer
110 views
error returning Json using simple Jersey app
Here I am trying to return JSON from one of the service, however it tends to error:
SEVERE: The registered message body writers compatible with the MIME media type are:
application/json ->
...
1
vote
1answer
237 views
Java complex validation in Dropwizard?
I'd like to accept JSON on an REST endpoint and convert it to the correct type for immediate validation.
The endpoint looks like this:
@POST
public Response createCar(@Valid Car car) {
// ...
3
votes
0answers
264 views
Serialize Date in a JSON REST web service as ISO-8601 string
I have a JAX-RS application using JBoss AS 7.1, and I POST/GET JSON and XML objects which include Dates (java.util.Date):
@XmlRootElement
@XmlAccessorType(XmlAccessField.FIELD)
public class MyObject ...
0
votes
0answers
40 views
return name for object from cxf jax-rs call
I have
Config {
int a;
....
}
and my service as
MySvc {
@Produces(JSON)
public Config getConfigData() {
return config;
}
}
I want json wrapped with object name
var ...
2
votes
0answers
120 views
Integral restful JPA over Hibernate
It seems that Eclispelink, OpenJPA and DataNucleus already provide integral restful JPA out of box.
How about Hibernate? I'm not looking for any scalfold framework that generates restful web ...
0
votes
1answer
141 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 ...
0
votes
1answer
267 views
POST Jsonobject to jax-rs gives unsupported mediatype
I am able to post JSON as string to my service but face problem when I change POST content as JSONObject type:
Code at server side:
@POST
@Path("/post")
@Consumes(MediaType.APPLICATION_JSON)
public ...
0
votes
2answers
362 views
What is the maximum length of JSON object received by JAX-RS web service using GET?
I am trying to send JSON object as parameter.
localhost:8080/HelloWorldApplication/webresources/helloworld/get/{param}
During this process I am sending a big JSON object, similar to :
...
0
votes
1answer
272 views
When trying to produce a JSON Array with Apache Wink I get WebApplicationException
i'm new to JAX-RS. I'm trying to represent a List to a JSON array:
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/getUsersResource/{userId}")
public List<AbstractResource> ...
0
votes
0answers
86 views
JAX-RS and JSON controlling bean's name [closed]
In JAX-B you can control the bean's name with @XmlType(name="LALALA") annotation over the member.
Is there a way to control the bean's name while working with JAX-RS and JSON?
I am using Jackson and ...
0
votes
1answer
131 views
How to use @PathParam?
I am following simple steps of tutorial and till now I cant figure out why it displays error.
I am trying to return simple JSON using a simple JAX-RS application.
The following is my code and web.xml ...
6
votes
2answers
947 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
256 views
How to deserialize an object field in Jersey
I am not able to deserialize an object field using Jersey with a JSON data representation. The field "data" can contain an Integer, String, List of String, ... or any other JAXB tagged object.
This ...
