JAX-RS: Java API for RESTful Web Services.
I'm writing a REST web app (NetBeans 6.9, JAX-RS, TopLink Essentials) and trying to return JSON and HTTP status code. I …
java rest jax-rs http-status-codesI am not asking the question that is already asked here: What is the difference between @PathParam and @QueryParam This …
java rest jax-rsI'm looking for a way to enable token-based authentication in Jersey. I am trying not to use any particular framework. …
java rest authentication jax-rs jersey-2.0My POST method looks like this: @POST @Consumes({"application/json"}) @Path("create/") public void create(String param1, String param2){ System.…
java web-services rest jersey jax-rsWhat response code should be passed to client in case of following scenarios? Invalid data passed while user registration like …
http rest jax-rsI'm learning JAX-RS (aka, JSR-311) using Jersey. I've successfuly created a Root Resource and am playing around with parameters: @Path("/…
java rest error-handling jersey jax-rsI am using the Jersey implementation of JAX-RS. I would like to POST a JSON object to this service but …
json jersey jax-rs