PDF Generating Tool Support Forum

HOME   Login   Register    Search




  Subject: Disable the CSS and Images cache.
   PostPosted: 23 Jun 2009, 23:58 
I need disable the CSS and Images cache.

Can it be done?


  Subject: Re: Disable the CSS and Images cache.
   PostPosted: 02 Jul 2009, 10:24 
There is a couple of approaches to disable caching.

1. Set an environment variable (add the following to JVM command line):
-Dpd4ml.cache.enable=false

( the same from Java/JSP code if JVM security policy allows: System.setProperty("pd4ml.cache.enable","false") )

or via PD4ML API call:

HashMap map = new HashMap();
map.put("pd4ml.cache.enable","false") ;
pd4ml.setDynamicParams(map);


2. Another method is to add a random suffix to CSS URL:

(JSP sample)

<%
String suffix = "";
if ( debug ) {
    suffix = "?dummy=" + generateRandom();
}
 
%>
<link rel="stylesheet" type="text/css" href="xstyle.css<%=suffix%>" />



[Reply]     [ 2 posts ] 

cron
Copyright ©2004-10 zefer|org. All rights reserved. Bookmark and Share