Java programming and quartz
I thought I would try here and see if someone might be able to point out my misunderstanding. I am trying to use quartz in a web application. I am trying to use an example that was given online at the following address:
http://www.onjava.com/pub/a/onjava/2006/03/01/job-scheduling-in-web-application.html
My issue is that I can't find this key ( org.quartz.impl.StdSchedulerFactory.KEY) that is supposed to be listed in my context. I have printed out an enumeration of the context and don't see anything resembling that key. I was under the impression that the Servlet that is listed in web-xml is there to place items into context - is that a misunderstanding ?
(hopefully this makes some sense)
[724 byte] By [
Aknibbsa] at [2007-11-26 17:50:21]

Sorry DrClap I know better. I have to be more explicit.
When the appserver starts up and is loading context (which if I understand correctly will obtain information from web.xml) The quartyInitializerServlet is supposed to place into context the following:
QuartzInitializerServlet.QUARTZ_FACTORY_KEY
(Sorry for only putting .Key I realized how dumb that was the second you made your post. )
From what I have read the QuartzInitializerServlet is supposed to place that key into context. The part that I am not certain about is if all I have to do is place the following in web.xml:
<servlet>
<servlet-name>QuartzInitializer</servlet-name>
<display-name>Quartz Initializer Servlet</display-name>
<servlet-class>org.quartz.ee.servlet.QuartzInitializerServlet</servlet-class>
<!--
<init-param>
<param-name>config-file</param-name>
<param-value>/WEB-INF/classes/quartz.properties</param-value>
</init-param>
-->
<init-param>
<param-name>shutdown-on-unload</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>start-scheduler-on-load</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
any thoughts or suggestions you can offer would be greatly appreciated, as most places have not been able to give me the answer (even as simple as i'm sure it will turn out to be ).