Hi,
I have a requirement where we need to do some processing whenever rendition is created for document. For suppose, say we went to webtop and selected word document and Transform->PDF, so PDF will be created as rendition (Using ADTS) and we can see that renditioned PDF using view rendition. So when ever a rendition is created for any document, i want to do certain processing.
So i have overriden doAddRendition as below but the the method is not getting invoked whenever a new rendition is being created and none of SOP's are printing inside doAddRendition. Let me know whether do we need to override any other method in TBO
@Override
protected synchronized void doAddRendition(String arg0, String arg1, int arg2,
String arg3, String arg4, boolean arg5, boolean arg6, boolean arg7,
String arg8, Object[] arg9) throws DfException {
System.out.println(" before doAddRendition ");
super.doAddRendition(arg0, arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8,
arg9);
System.out.println(" After doAddRendition ");
}