I am using Spring framework and before the response is rendered, I am performing a response.reset() to reset all the buffers and cache inside the response. But, cache-control:no-cache and pragma :no-cache are automatically added in the RESPONSE by OAS server.
Is there any way that I can remove these? I will appreciate any help that any one can provide me..
I have tried to set my response headers explicitly by calling reseponse.setHeader for pragma and no-cache but instead of setting those headers...OAS just seems to append them so that the final response look like
cache-control:no-cache, cache pragma:no-cache, cache
Appreciate any help anyone can provide please. This is quite urgent!!!!
Thanks,