REST with JAX-RS and silverlight clients

REST with JAX-RS and silverlight clients

I am Working on a RESTful  service using Jersey (not my first choice, but a reasonable compromise). It is hosted inside FuseESBand all is well. Here’s an overly simplified version of the resource that reports status: 1 2 3 4 5 6 7 8 9 10 11 @Path("/stat") public class StatusResource { @GET @Produces(MediaType.TEXT_PLAIN) public String...

Read More