Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PDF Download issue in WS7

Status
Not open for further replies.

kalana87

Technical User
Oct 18, 2014
1
SA
Hi,
We are running our own application in WS7.
After enabling servlet cache in WS, our application pdf file download function stopped working.
We have the same setup we use as UAT and it works without any issue so we suspect there is an issue with either the environment or some configuration.
Any help enlightening us regarding the issue is much appreciated.

Thanks! :)
 
Did you try including some headers like these

Code:
 response.setHeader("Expires", "0");
 response.setHeader("Cache-Control","must-revalidate, post-check=0, pre-check=0");
?

Cheers,
Dian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top