I have a restful web service method like this one:
@GET
@Path("/generateInfo")
@Produces(MediaType.APPLICATION_JSON)
public String generateInfo(
@QueryParam("a") String a,
@QueryParam("b") String b,
@QueryParam("date") Date date) {
// ...business code...
return "hello world";
}
How can I invoke that method from a WebBrowser?, the problem is the Date
param that when i try is giving me 404
not found or 500
internal server error.