Authentication « jersey « Java Enterprise Q&A





1. User authentication on a Jersey REST service    stackoverflow.com

I am currently developing a REST application, which is using the Jersey framework. I would like to know a way that I can control user authentication. I have search a lot ...

2. Digest authentication with Jersey Client    stackoverflow.com

I have written a REST web service with Jersey Server (that totally rocks !). I am now developing the client part of it, with Jersey Client as well. On the server side, I ...

3. How to do Rest Authentication with JAX-RS    stackoverflow.com

I am looking for some pointers on how to secure my rest root resource

@Path("/employee")
public class EmployeeResource {

    @GET
    @Produces("text/html")
    public String ...

4. Authentication in Apache Jersey without using Http-Authentication?    stackoverflow.com

I am building a RESTful Webservice using Apache Jersey. Now I want that you need an authentication for some requests to it. Using the typical REST-approach the Authentication should be done ...

5. Jersey Client API - authentication    stackoverflow.com

I'm using the Jersey client API to submit SOAP requests to a JAX-WS webservice. By default Jersey is somehow using my Windows Nt credentials for authentication when challenged. Can anyone explain ...

6. JAX-RS: REST Client for Basic HTTP Authentication    stackoverflow.com

I need to write a REST client with Jersey implementation of JAX-RS to access my RESTful webservice that works with a secure EJB. I have a @OneToMany relationship from class A ...

7. Custom Authentication on the server    stackoverflow.com

I'm trying to implement some custom authentication using Jersey (running alongside Spring). I've gotten the authentication logic working okay and have placed it inside a ContainerRequestFilter. The issue I'm currently having is ...