Thank you for your links, What I couldnt find is a sanple client, imagine
that I have
@Path("/helloworld")
public class HelloWorldResource {
// The Java method will process HTTP GET requests
@GET
// The Java method will produce content identified by the MIME Media
// type "text/plain"
@Produces("text/plain")
public String getClichedMessage() {
// Return some cliched textual content
return "Hello World";
}
}
In my server, how does a client code for invoking this service looks like?
thanks
On Sun, Jan 11, 2009 at 5:08 PM, Felipe Gaścho <fgaucho_at_gmail.com> wrote:
> you may find useful info here:
>
> https://jersey.dev.java.net/
> http://java.sun.com/reference/blueprints/
>
> Btw, I am working in a rest web-services module in one of my open
> source projects.. anyone interested in joinning this learning effort,
> please register at footprint.dev.java.net
>
>
>
> On Sun, Jan 11, 2009 at 2:07 PM, Sarah kho <sarah.kho_at_gmail.com> wrote:
> > Hi
> >
> > I am looking to find some samples or tutorial which shows how I can
> develop
> > JAX-RS web services (restful web services) and restful web services
> clients.
> >
> > please let me know if you know any sample.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_glassfish.dev.java.net
> For additional commands, e-mail: users-help_at_glassfish.dev.java.net
>
>