What Jersey doesn't like in my Stateless Session Bean?
This is my SLSB: @Stateless(name = "FinderEJB") @Path("/") public class Finder implements FinderLocal { @Path("/simple") @GET public String simple() { return "works"; } } The interface is: @Local public interface FinderLocal { public String simple(); } This is what I'm getting in Glassfish server log when I'm trying t...