I encountered the error: "cannot create a quartz scheduler, a scheduler with the name 'cocoon' already exists" This happened because my Hibernate configuration file was not correct/not found (that is the hbm.xml file that defines your mappings between objects and your db). When I started Tomcat/Cocoon, something did go wrong during initialization of Hibernate. Then, when I tried to actually load a Cocoon page, I got this error. So it probably has nothing to do with a quartz problem. There is something wrong with your Hibernate configuration. In the Tomcat console, Hibernate should tell you it has found your hbm.xml file. And then it should list the mappings between your objects and your tables. If it does not display these mappings, something is wrong (no access to database, hbm.xml file not found or not OK, some jar's missing, check for hibernate2, c3p0, and cglib-2.0)
Hugo Burm > -----Original Message----- > From: Joel McConaughy [mailto:[EMAIL PROTECTED] > Sent: Saturday, April 24, 2004 8:21 PM > To: [EMAIL PROTECTED] > Subject: cannot create a quartz scheduler > > > I'm trying to port my version of Hugo's Woody-Hibernate sample to > cfoms. When I add the following to cocoon.xconf: > > <component role="com.displayware.hiblib.PersistentFactory" > class="com.displayware.hiblib.Hibernate"/> > > I get the following error message: > > "cannot create a quartz scheduler" > > Has anyone encountered this before? Thanks. > > Joel > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
