On 5/3/07, Sean Landis <[EMAIL PROTECTED]> wrote:
John D. Mitchell <jdmitchell <at> gmail.com> writes:
[...]
> I'm still a bit confused by your description. Are you talking about
> passing them in the communication between the clients and the
> (restlet) based server or inside the restlet-based server?
>
> If it's the former then the easiest thing to do is to add them as URL
> query parameters.
Thanks John,
It is the former. What other options are available than adding to the URL
query params?
I'd like to reserve params for other uses. I also want a way to enforce
programmatically the passing of the information.
If you have access to the lower-level http you can add headers
(including cookies).
Or, to be a bit more radical, you can also wrap the target url with
your own (a so-called "trampoline").
Hope this helps,
John