0
votes
0answers
30 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
2answers
51 views

How do I load and store global variables in Jersey/Glassfish

I am creating a RESTful Web Service that wraps an antiquated vendor API. Some external configuration will be required and will be stored on the server either in a file or rdbms. I'm using Jersey ...
2
votes
1answer
77 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
44 views

How do I inject a JMS resource in a JAX-RS REST Web Service?

Using GlassFish 3.1.2.1, I have configured a JMS connection factory and a queue, which can be injected in JavaServer Faces managed beans using the @Resource annotation. However when I try to use ...
1
vote
0answers
21 views

content-type; charset missing a space

Using JAX-RS and Glassfish 3.1.2 I am trying to get the charset added to the content-type. I've tried a few of the answers on SO, but I have one issue: @Produces( { MediaType.APPLICATION_JSON + ...
0
votes
1answer
44 views

glassfish3.1.2.2: com.sun.jersey.oauth.signature.UnsupportedSignatureMethodException: anymethod

I tried to implement jersey-oauth with the following environment: glassfish 3.1.2.2 with Netbeans 7.3 as IDE jersey 1.17 which I manually upgraded jersey jars on glassfish/modules jersey-oauth 1.17 ...
0
votes
1answer
102 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
80 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
1answer
68 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
0answers
50 views

How to authenticate users in JAX-RS using remote CouchDB credentials

I'm building a restful application using JAX-RS on top of glassfish, using Jersey. This application closely relies upon and often access to a remote CouchDB server. I wish now to implement ...
2
votes
2answers
73 views

How to get the HTTP method of a REST request

In case of an exception in my Java REST application I would like to log various information on causing HTTP request. I can obtain the URI of the request and the HTTP headers via context injection ...
2
votes
2answers
382 views

Angular Frontend with JAX-RS backend

I have a RESTful Java backend which I made using Jersey, a JAX-RS implementation. This backend is running on a glassfish server on port 8084. I've also made some HTML5/JS/AJAX pages which display the ...
0
votes
0answers
51 views

JAX-RS cannot find web service path

I am a novice at JAX-RS and facing a problem deploying a RESTful web service on a glassfish server. I created a resource using "RESTful service from pattern" and wrote a hello world method inside it. ...
0
votes
2answers
402 views

POST-method not working in JAX-RS JERSEY

I have the following method: package com.restfully.shop.services; import java.io.*; import java.net.URI; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import ...
1
vote
2answers
323 views

deploying and testing rest-webservice with eclipse

I have used eclipse + glassfish to deploy my first web-service from eclipse. I have the following class: package com.restfully.shop.services; import javax.ws.rs.core.*; import java.util.*; public ...
0
votes
2answers
193 views

Inject @Context fields using Guice's @Inject (into subresources)

I am currently developing a REST webservice using Jersey and Guice as a DI-container. For handling the requests I am relying on a GuiceServletContextListener which is configured similar to the ...
0
votes
2answers
161 views

JAX-RS @Path Embedded Variables

I'm using the latest Jax-RS + Glassfish versions and I've been trying to version my API. For some reason, if I include embedded variables in my @Path Root Resource Class it doesn't even take the ...
0
votes
0answers
170 views

Protecting Jersey web service with SSL

I have pretty simple web-service, which runs on the Embedded Glassfish server: @Stateless @Path("/id") @Produces(MediaType.TEXT_HTML) public class SimpleFacadeBean { @GET public String ...
1
vote
0answers
273 views

Jersey Grizzly REST service not visible outside localhost

I'm trying to write a REST service in java using Jersey and Glassfish Grizzly. I have a very simple case working internally, but can't seem to call on the server from an external address. I've tried ...
1
vote
1answer
159 views

JAX-RS with EJB not working in EAR while good in WAR

I have a java web project containing JAX-RS resource classes like this: @Stateless @Path("user") public class UserResource { @EJB BooksResource booksResource; ... @GET public ...
1
vote
0answers
138 views

Consistent JSON representations with JAXB and JAX-RS?

I am writing a Java EE app to be run within either Glassfish or JBoss, and I've been asked to provide JSON support for our JAX-RS clients. Of course, simply enabling the JSON media type is simple ...
0
votes
0answers
174 views

Removing duplicate http header in a Glassfish hosted Web Service

I have a REST WebService written in java using JAX-RS (Jersey implementation). I am using JAX-RS annotations to state Method (GET/PUT/..) The problem is that when I build my own Response and return ...
0
votes
1answer
518 views

How to determine remote IP address from JAX-RS resource?

I have the following JAX-RS resource running in Grizzly HTTP server: @Path("/board") public class BoardResource { @POST @Consumes("application/x-www-form-urlencoded") public void ...
0
votes
0answers
297 views

How to inject an EJB in a Jax-RS in WebLogic

Good day, I am porting an application from glassfish3.x to weblogic10.3.x. One of the things that I had to do was downgrade from EJB 3.1 to EJB 3 because EJB 3.1 is not yet supported in ...
2
votes
2answers
756 views

JAX-RS custom pathparam validator

I'm currently experimenting with some RESTful JAX and I want to validate a custom input. Normally regex would be fine but I need to do a more extensive check (~10 different regex patterns). I found ...
0
votes
0answers
256 views

Call RESTful web service running on glassfish

A newbie question: I am following the tutorial here http://netbeans.org/kb/docs/websvc/rest.html and have code like this: @GET @Path("{id}") @Produces( { "application/xml", ...
3
votes
4answers
1k views

Where do @Context objects come from

I've been searching everywhere, but can't seem to find a clear answer... What is the mechanism whereby a server (glassfish for my problem) injects actual objets that are annotated with @Context? More ...
3
votes
1answer
865 views

EJB injection into JAX-RS not working

When i try to run JAX-RS i got error message, how i can get it working? PlayerManagementLocal is @Local of ejb PlayerManagement is working fine. error message ...
4
votes
2answers
2k views

GlassFish JAX-RS Jackson custom JSON serialization

I have a JAX-RS resource and I'd like to use a custom JSON serializer for java.util.Calendar attribute using the @JsonSerialize(using=MySerializer.class). import java.util.Calendar; import ...
2
votes
1answer
2k views

jax-rs rest webservice authentication and authorization

I have a web application that needs to allow users using different webclients (browser, native mobile app, etc) to register. After signing in they can access restricted content or their own content ...
0
votes
1answer
845 views

Unable to setup basic authentication with jdbc realm and Glassfish

I'm fighting with a Glassfish v3 and a very simple JAX-RS service (taken athttp://www.vogella.de/articles/REST/article.html What I want to achieve is setup basic http authentication for all the ...
0
votes
1answer
512 views

How do I keep Glassfish from creating a new session for each request?

Glassfish 3.1.1 Jersey 1.8 I have the following stateless session bean exposed as a JAX-RS resource. VehicleResource is contained in a WAR, with the other EJBs in an EJB-JAR. The entire app is ...
2
votes
3answers
831 views

How do I deal with Glassfish included libs crashing with application supplied libs?

A CXF JAX-RS application I have uses jackson to marshal POJOs to JSON. This works for the most part, but the other day it failed with a NPE when marshalling a deeply nested object. After some ...
3
votes
2answers
412 views

How to avoid network call when REST client and server are on the same server

I have a web application in which two of the major components are the website (implemented in Groovy and Grails) and a backend RESTful web service (implemented using JAX-RS (Jersey) and Spring). Both ...
1
vote
1answer
415 views

GlassFish 3.1, Jersey/JAX-RS logging

is there a way to log incoming JAX-RS requests? Or is this pretty much logging HTTP requests?
4
votes
1answer
242 views

Throwing Informative error messages out of Jersy RESTful Webservices

I've got a RESTful webservice that does some IO&database activity in order to return a result. There are some Exceptions that I would like to see, ie exception thrown because an expected variable ...
0
votes
1answer
2k views

Why my Ajax call refresh page? (i.e. calling servlet again)

I'm studying RESTful web service using Java. My environment is using Netbean with GlassFish v3. I have a page URL /inventoryList which is URL mapped to InventoryApp.java servlet in web.xml web.xml ...
2
votes
2answers
3k views

Jersey JAX-RS on Glassfish 3.0.1: Can I have an empty webapp element in my web.xml? [duplicate]

My understanding is that glassfish 3 is JEE6 compliant and jax-rs-aware, and that consequently I do not have to include the jersey servlet container and mapping in my web.xml file. Here's what I was ...