Hi All,
I have a http
servlet in which I am configuring the quartz scheduler. I am loading the servlet on start up.
The following are the few lines of code in my servlet�s init() method for configuring the scheduler. But at the below mentioned point I am getting an
applet alert on the
tomcat console and also its printing some policy properties. Could some one help me in resolving this? How can I avoid these applet alerts, I am not using any applets in my application.
SimpleThreadPool threadPool = new SimpleThreadPool(5, hread.NORM_PRIORITY);
threadPool.initialize();
RAMJobStore ramJobStore = new RAMJobStore();
ramJobStore.setMisfireThreshold(60000);
schedulerFactory = DirectSchedulerFactory.getInstance();
schedulerFactory.createScheduler("xmlScheduler","XmlQuartz",threadPool,ramJobStore);
// At this point I am getting the alert with the message
The applet is attempting to create new thread groups... with three buttons...
Allow,Disallow and Stop Applet Can anybody tell me the reason..Why an applet has come into picture?
Thanks in advance.....
Regards,
newbietojava
[ UD: added "Quartz" to the subject ]
[ June 09, 2008: Message edited by: Ulf Dittmer ]