Skip to Content
0
Former Member
Dec 07, 2006 at 07:35 PM

Calling DynPage via ISchedulerTask

19 Views

I need to create a scheduled task that will go through the km docs in a repository. I have only been able to accomplish this via a DynPage and I would like to know if that is the correct way to go.

here is my start :

public class expEmail implements ISchedulerTask{

public void run( String id, Properties propertiesx ){

ThisDynPage tdp = new ThisDynPage();

tdp.doInitialization();

}

}