A lightweight implementation of the ActiveResource pattern for Java that lets you manipulate RESTful resources as Java objects.
Note: Currently uses Apache the HttpClient Jar. You can get the JarsHere:
Usage:
for a more detailed look see the HighriseWalkthrough...
### Quick usage example... ###
request:
http://www.example.com/projects/2782118.xml
response:
2782118Zipwire Rest
create an interface(s) to manipulate the resource
interface Project { String getId(); String getName();}
create a RestConnection object *
The XmlNamingRule handles method(CamelCase) to xml (separate-word) translation.
RestConnection connection = new ApacheRestConnection( host, usern