HI:
I don't really think that GET or POST are the culprit here. I thought that the expires and pragma would work. Are you setting these with the STPSRV_HEADER function?
Here's an example:
http://support.sas.com/rnd/itech/doc9/dev_guide/stprocess/httphead.html
If this is what you're trying (from the above example page) and it is not working, then you should open a track with Tech Support.
cynthia
Example code:
You can set any HTTP record for your stored process output by calling the STPSRV_HEADER function. The following DATA step function calls generate the previous example header records:
old = stpsrv_header("Content-type",
"text/html; encoding=utf-8");
old = stpsrv_header("Expires",
"Wed, 03 Nov 2004 00:00:00 GMT");
old = stpsrv_header("Pragma", "nocache");