On 05/13/2011 01:34 PM, Bill Burke wrote:
>
> On 5/13/11 6:34 AM, Marek Potociar wrote:
>>
>>
>> On 05/12/2011 07:43 PM, Markus KARG wrote:
>>> Agreed, but in a standalone client application the application's http transport provider is provided by the JAX RS
>>> Implementation, isn't it? How should an application enable caching then?
>>
>> Through a proprietary client provider API.
>>
>
> Or through proprietary properties.
>
> i.e.
>
> import javax.ws.rs.client.Client;
>
> Client c = new Client();
> c.setProperty("resteasy.client.cache", true);
>
>
> Bill
>
Yes, that was one of the options I had in mind.
Marek