Hello,
I'm trying to get Quartz cluster-aware scheduling (v. 1.6.6) on my installation of Weblogic.
I have added the quartz.properties file to my application's EAR file. When I try and deploy the application, I get the following:
Code:
NoSuchDelegateException: Couldn't load delegate class: org.quartz.impl.jdbcjobstore.oracle.OracleDelegate
The properties file includes this line - taken from the example in the documentation upon this site - as I am connecting to an Oracle database to access the tables that Quartz uses:
Code:
org.quartz.jobStore.driverDelegateClass=org.quartz.impl.jdbcjobstore.oracle.OracleDelegate
I have checked the Quartz 1.6.6 jar and the OracleDelegate class does not exist in org.quartz.impl.jdbcjobstore - in fact, the oracle package does not exist at all.
Does anyone have any suggestions as to how I fix this problem? Can I use any alternative classes I could utilise instead? Thanks in advance for any assistance.