From: vaidya nathan <vaidyaatdst_at_gmail.com>
Date: Thu, 9 Jul 2009 17:19:10 -0500
I read through the documentation in
http://wikis.sun.com/display/Jersey/WADLfor generating the wadl and
tried it out but for some reason it didnt work.
i am using jersey 1.0.3 and curl to make http requests(Tried with the
browser too). So i have a simple HelloWorldResource
@Path("/HelloWorld")
public class HellowWorldResource {
@GET
@Produces("text/plain")
@Path("ping")
public String ping() {
System.out.println("Ping pong is fun");
return "pong";
}