I'd make Restlet 1.1 available in my Tomcat application and use the Restlet client API to talk to the Restlet server, but that's just me :-)
In fact we do this fairly often -- to be minimal about it, you need org.restlet.jar, com.noelios.restlet.jar, and I'd recommend com.noelios.restlet.ext.httpclient_3.1.jar and your Apache httpclient-3.1.jar. These can just go in your WEB-INF/lib in the Tomcat Web application that acts as the client. There's nothing wrong with using Java's facilities or Apache HTTPClient directly -- I just find it nice to use the same RESTful programming model on both sides if I can. - R On 1/18/08, dev dev <[EMAIL PROTECTED]> wrote: > > We have a web application (running on Tomcat) that will be interfacing > with our restlet 1.1 server (which we are working on). We were just > wondering if there are any available toolkits out there for us to use for > best interfacing with the restlet 1.1 server (I presume we can just use > any HTTPURLConnection or Apache HTTPClient package). >

