Here's the usual incantation I use for proxying:
root.attach("/redirectme/", new Redirector(getContext(),
"http://targethost/targetpath/{rr}",
Redirector.MODE_DISPATCHER));
Here's the pointer to the Javadoc for predefined route variables:
http://www.restlet.org/documentation/1.1/api/org/restlet/util/Resolver.html#createResolver(org.restlet.data.Request,%20org.restlet.data.Response)
Unsolicited: Careful of using the HttpClient connector if you're
proxying, it can lock up in some situations due to its behavior with
entities that don't get fully consumed. At the very least, you may
need to increase the maximum connections allowed per host. The more
simpleminded Net connector usually works better for me to do HTTP
request proxying.
> I appreciate any pointers...
>
> -jeff