Author: thilinamb Date: Tue Feb 15 12:53:55 2011 New Revision: 1070872 URL: http://svn.apache.org/viewvc?rev=1070872&view=rev Log: Updating the RampartConfig documentation to cover the disable caching option.
Modified: axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/rampartconfig-guide.xml Modified: axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/rampartconfig-guide.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/rampartconfig-guide.xml?rev=1070872&r1=1070871&r2=1070872&view=diff ============================================================================== --- axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/rampartconfig-guide.xml (original) +++ axis/axis2/java/rampart/trunk/modules/documentation/src/site/xdoc/rampartconfig-guide.xml Tue Feb 15 12:53:55 2011 @@ -125,6 +125,20 @@ configuration properties used by the imp </ramp:encryptionCypto> </ramp:RampartConfig> </pre> + <p>Crypto caching is enabled by default when Merlin is used as the crypto provider. So Rampart will cache the crypto objects + with an infinite cache refresh interval. This crypto refresh interval can be overridden by setting the cacheRefreshInterval parameter + as described above. If it is required to disable crypto caching when Merlin is used, set the 'enableCryptoCaching' parameter + value to 'false'. Please refer to the following example. + </p> + <pre xmlns="http://www.w3.org/1999/xhtml" xml:space="preserve"> + <ramp:signatureCrypto> + <ramp:crypto provider="org.apache.ws.security.components.crypto.Merlin" enableCryptoCaching="false"> + <ramp:property name="org.apache.ws.security.crypto.merlin.keystore.type">JKS</ramp:property> + <ramp:property name="org.apache.ws.security.crypto.merlin.file">service.jks</ramp:property> + <ramp:property name="org.apache.ws.security.crypto.merlin.keystore.password">servicePW</ramp:property> + </ramp:crypto> + </ramp:signatureCrypto> + </pre> <br></br> <h3>References</h3>1. <a href="http://ws.apache.org/wss4j">Apache WSS4J -Home</a>