Parvathy
Parvathy

Reputation: 2455

Accessing REST web service without servlet

I have a REST web service. Is there any way to create a Rest web service proxy to access the REST web service without using servlet?

Upvotes: 1

Views: 1640

Answers (3)

R H
R H

Reputation: 397

Most popular JAX-RS implementation in Java. Jersey (reference implementation from Oracle) Apache CXF RESTeasy Restlet

Upvotes: 2

SANN3
SANN3

Reputation: 10069

Here you can see the detailed example for Rest without Servlet.

http://maxrohde.com/2011/09/02/restlet-quickstart/

Upvotes: 2

Related Questions