0
votes
1answer
31 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
1answer
19 views

demo jax-rs resource not bound where expected on jboss

im trying to whip up a small jax-rs demo. i have this resource class: @Path("/cart") public class ShoppingCartResource { @EJB private ShoppingCartService shoppingCartService; @GET ...
0
votes
0answers
43 views

Can you do traditional Servlet Filtering with JAX-RS/Jersey?

Imagine you have a filter that starts a database transaction, processes the request, and then then attempts to commit the transaction. doFilter(...) { ... transaction.begin(); ...
2
votes
1answer
70 views

Why @PostConstruct called twice on @Singleton

I am running a simple .war file under Glassfish 4.0-b87 that was created in Eclipse Kepler M6 using M2E as a simple project with Dynamic Web Module facet added, using Oracle Java 7 JDK/JVM. There is ...
0
votes
1answer
26 views

Can Java EE Application Make HTTP Calls?

Can a Java EE Application -- a Servlet or a Session Bean -- make HTTP calls and still conform to portability standards? (assuming that the caller gracefully handles communication failure or ...
0
votes
0answers
20 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 ...
0
votes
2answers
54 views

Show error in jquery ajax call for jax-rs(resteasy)

I have two class one UserInformation and other is UserAddress, i have added UserAdress class in UserInformation class created setter and getter for that. And create a web service using ...
2
votes
1answer
73 views

Mapping extra parameters with JAX-RS and Jackson

I'm working on a project that uses JAX-RS, Jackson, and JPA. The JAX-RS resources map incoming JSON directly to the POJO (JPA) that is to ultimately be persisted. @POST ...
0
votes
1answer
40 views

JBoss 7.1, BlazeDS 4 and RestEasy integration

I have a simple web app running BlazeDS 4 running on JBoss AS 7.1. I'm trying to add resteasy but there seems to be issues connecting when creating a rest call. I think that BlazeDS is somehow ...
0
votes
1answer
67 views

javax.ws.rs.core.Response$Status.getReasonPhrase() Issue on JAXB, Rest service Implementation using Apache Jersey

I am facing below issue while trying to access the below REST service... I am using Apache Jersey implementation for developing rest service. I am facing below issue only when i am trying JAXB, ...
0
votes
1answer
40 views

HTML form validation based on bean validation in a JAX-RS 2.0 application

We know JAX-RS made it easy to map form input values directly to server bean properties or method parameters. Now JAX-RS 2.0 provides a way to validate the server side values using bean validation, ...
0
votes
1answer
72 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 ...
0
votes
0answers
62 views

RESTFul resource URL custamization in Java EE

I am using Jersey (V 1.17) in my Java EE project. I map the relevant Jersey Servlet to the URL pattern as follows: <url-pattern>/resources/*</url-pattern> Now the resource URLs of my ...
0
votes
0answers
31 views

unknown entity type error

I'm having a trouble concerning deleting a resource via HTTP DELETE. in the server side i have a resource like this : @Stateless @Path("books") @Produces({"application/xml","application/json"}) ...
1
vote
2answers
95 views

Is there a 'standard' way to use Dependency Injection with Java - specifically with JAXRS Jersey

I have some services that I would like to change from using a factory to using a dependency injection framework. With Java 6+ is there a 'standard' way that this can be achieved without using third ...
2
votes
4answers
168 views

Java EE 6 App different login methods

I´m currently developing a "basic" Java EE 6 application with JSF (frontend) and JPA, EJB, and CDI (backend). Everything works well so far. For the login part I've chosen form-based authentication ...
2
votes
2answers
199 views

Unable to inject @ApplicationScoped bean in JAX-RS service

I've created JAX-RS service in which I want to inject an application scoped bean. The problem is that the bean is not injected. How is this caused and how can I solve it? JAX-RS service: ...
0
votes
1answer
187 views

Null pointer exception with Jax RS

I have written a simple piece of code to have JAX RS talk to JPA to retrieve a list of customers from the database. I keep getting a null pointer exception. Please could someone take a look at the log ...
-1
votes
2answers
147 views

JAX-RS and JSF. Are they compatible or competing technologies [closed]

I am unsure if JSF2.0 is compatible with JAX-RS. I have been following some JBoss quickstart tutorials. One in particular is the greeter tutorial where they use JSF and expression language to send ...
1
vote
0answers
196 views

Exception while using ArrayList in resteasy services

I am getting an Exception while trying to receive the response of a resteasy webservice in client side. My response class include an another Jaxb class that consists of an ArrayList in it. ...
0
votes
1answer
60 views

When to initialize properties in Java EE webapp?

We are having a JAX-RS based webapp & it would be requiring to read some configuration from the properties file. I have written a ConfigurationProvider helper class which loads these properties. ...
1
vote
1answer
176 views

How to add JAX-RS to an existing project

I am using Java EE, Java 1.7, glassfish 3 and Eclipse Indigo. I have an existing web project that I built from this tutorial: ...
2
votes
1answer
239 views

how to write unit tests for REST web services developed using apache-cxf with spring without using Maven

I have developed a REST web application using apache cxf library. I am able to access them using a browser and test. I want to write unit tests for the services. I tried testing it using embedded ...
0
votes
2answers
173 views

Jersey REST Server: instantiating resource classes

A tutorial on the Jersey REST server [1] says of the Jersey servlet: This servlet analyzes the incoming HTTP request and selects the correct class and method to respond to this request. This ...
1
vote
2answers
72 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() { ...
1
vote
0answers
95 views

Jersey: How to share ExceptionMapper among several web modules?

My exception mapper classes work perfectly when it's located inside the .war package. The problem is that I have several .war packages which share the same exception hierarchy. I'm thinking to put my ...
3
votes
1answer
272 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
467 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 ...
0
votes
2answers
44 views

JSF restful output non-english characters

I have a restful class to send JSON string to POST request. Data are store in DB with UTF-8 format. But the non-english characters always display as '??????', it all works fine if I get records form ...
0
votes
0answers
78 views

Can't change REST path specified in @javax.ws.rs.ApplicationPath(“webresources”)

I'm using Netbeans and I have a REST service - @javax.ws.rs.ApplicationPath("webresources") public class ApplicationConfig extends javax.ws.rs.core.Application { } If I change the "webresources" ...
0
votes
1answer
46 views

What does <version>${jersey-version}</version> mean in pom.xml

I downloaded sample atmosphere jax-rs source code here - http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.atmosphere.samples%22%20AND%20a%3A%22atmosphere-jaxrs2-chat%22 I downloaded the war and ...
1
vote
1answer
139 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: ...
0
votes
1answer
199 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
46 views

error 503 using jax-rs service

This is unusual behavior , I am trying simple jax-rs implementation and it fails . 17215 [29943420@qtp-14485739-7] WARN org.mortbay.log - Committed before 404 null 17215 [29943420@qtp-14485739-7] ...
3
votes
0answers
166 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 ...
0
votes
1answer
74 views

JaxRs @cosume to accept both Jason and URL param?

Just a quick question .. I have jaxrs GET method without any @consume annotation .. I can hit this over the browser and get results .. I want this method to consume Jason request at the same time I ...
17
votes
4answers
2k views

Could not serialize object cause of HibernateProxy

I am getting the following error response from the server. HTTP Status 500 - type Exception report message descriptionThe server encountered an internal error () that prevented it ...
2
votes
0answers
207 views

Elegant way of unproxy Hibernate objects

I am creating a web service with Jax-RS and GSON. Now, GSON can't convert HibernateProxy objects and I have some questions. I am having an API so that I can eager load and lazy load. When I want to ...
0
votes
2answers
413 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
3answers
454 views

create a Jax-RS RESTful service that accepts both POST and GET?

I'm converting one of my existing service to become RESTful and I've got the basic things working with RestEasy. Some of my client apps should be able to execute both GET and POST requests to several ...
3
votes
1answer
173 views

Bean validations (jsr 303) with jax-rs / resteasy

The resteasy proposal to perform validations is to use a @ValidateRequest annotation in your jax-rs resource: @Path("resourcePath") @ValidateRequest public interface Resource { @POST ...
3
votes
1answer
126 views

Resource paths in a RESTful webservice

I am building a web service following the REST architechture style. I am using JAX-RS to make it easier. This question is however not concerned about a technology, but instead correct use of paths to ...
2
votes
1answer
99 views

RESTful web service, how to lay down the paths

I am creating a web service following the REST style so I am using JAX-RS. However, the question is in the more general form so the technology shouldn't matter. Let say you have three resources in ...
0
votes
0answers
449 views

Why doesn't my RESTEasy MessageBodyReaderInterceptor run in Tomcat?

I have a simple RESTEasy application, with methods like this: @POST @Path("/stuff") @Produces({"application/json", "application/xml"}) public MyObject doStuff(MultivaluedMap<String, String> ...
1
vote
1answer
68 views

Creating a webservice with proper layering in JavaEE

I am using Java EE for running my backend system and I have a question regarding how to layer it appropriately in terms of creating a web service. I am pretty much organizing my application after the ...
0
votes
1answer
129 views

how to deploy netbeans .war on jetty out of netbeans

I created a webservice successfully tested on glassfish within netbeans , which uses POST and give back results as follows: @Path("caas") public class Cribservice { @Context private UriInfo ...
0
votes
2answers
162 views

How to access service annotaions of jax-rs deployed on jetty

I successfully created a web app with post services and its deployed on jetty . @Path("caas") public class Cribservice { @POST @Path("/post") @Consumes(MediaType.TEXT_PLAIN) ...
0
votes
1answer
268 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
366 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
128 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 ...

1 2 3