If you create RestClient once and call Execute with one RestRequest that have Cookie header for example 'key=123' and then call execute with same RestClient and another RestRequest with Cookie 'key=321' client will not use new cookie value. Reason is in oldCookie newCookie filtering when create HttpMessageHandler in DefaultHttpClientFactory.
If you create RestClient once and call Execute with one RestRequest that have Cookie header for example 'key=123' and then call execute with same RestClient and another RestRequest with Cookie 'key=321' client will not use new cookie value. Reason is in oldCookie newCookie filtering when create HttpMessageHandler in DefaultHttpClientFactory.