Hello all,
1. I am working in enhancement project. Our project extensively used XSLT transformation. The XSLT is stored in oracle database & then using it. TO avoid querying DB everything, we implemented Cache mechanism. When the server starts up, a
thread will keep on fetching the XSLT from database and converting them into Templates then added in the HashMap defined in Singleton class. Whenever we require, we will take the Template from hashmap and convert one XML to another....
2. Now, we have one more enhancement that we need to give the XSLT as
String object to one URL. As already we implemented caching machanism, we would like to use the same template converting back to String object(contains text of XSLT). Will it possible to get the XSLT from the Template object?
Thanks,
Senthil