Hi, I'm using jersey 1.8 from the jersey bundle and running on glassfish 3.1. I'm writing a REST web service and all has been peachy, until I need to send a specific response code. Every time I try to get a ResponseBuilder object I get a very generic jersey exception. Here's my code: 1. @GET 2. @Path("/json/cid/{cid}/lang/{lang}") 3. @Produces(MediaType.APPLICATION_JSON) 4. public ...