Ideally, I am looking for something like JAX-RS (using annotations to describe the services I want to call), but allowing to call REST services implemented using other technologies (not JAX-RS). Any suggestion?
Ideally, I am looking for something like JAX-RS (using annotations to describe the services
Share
You wrote in a comment that you were “hoping for something more high level” than HttpClient. It sounds like Restlet would be perfect. It provides a high-level API for implementing and using RESTful web applications, with plug-and-play adapters for the lower-level implementations.
For example, to POST a webform to a resource using Restlet 1.1:
If you need to set more options on the request, you can use a Request object:
HTH!