Hi
I know this question was asked before but the solution provided for some reason did not work for me.
My issue is with the cache when I call a REST service using Msxml2.XMLHTTP.6.0. I am Using PB 2017 R3.
I use GET,POST and PUT requests. The GET Userid and password are different to POST and PUT (POST and PUT have the same).
The first time I do a GET, with the Userid and password it works. Now I have to do a POST
or a PUT, the userid and password changes here and the request fails because it takes the userid and password from GET. After closing the Application, the other way around if I do a PUT first it works and then doing a GET fails for the same reason.
I tried all these Header options but to no avail.
oleHTTP.setRequestHeader("Cache-Control", "no-cache, no-store, private, max-age=0")
oleHTTP.setRequestHeader("Pragma", "no-cache");
oleHTTP.setRequestHeader("Expires", "Tue, 01 Jan 1900 1:00:00 GMT")
oleHTTP.setRequestHeader("If-None-Match", "??Dummy??" + string(li_random2) );
Thank you
With the issues I am having with the SSO server logout using xml2.XMLHTTP.6.0.( PB 2017 R3.), Can using a RESTClient to call REST API's. enable to log of from a SSO server and login with a new credentials?. I was asked to check with the vendor and report back if it's possible. A change to RESTClient will be a major change for me but it would be good to know if this is possible.
Thank you