I am sorry the code wasn't displayed correctly. So, again, posting it:

  | <server>
  | <mbean code="scheduler.service.QuartzService"
  |    name="user:service=myQuartzService,name=myQuartzService">
  |  <attribute name="JndiName">nuQuartzService</attribute>
  | 
  | <attribute name="SubscriptionList">      
  |         <subscription-list>
  |           <mbean name="jboss.system:type=Server">
  |              <notification type="org.jboss.system.server.started"/>
  |              </mbean>
  |         </subscription-list>
  | </attribute> 
  | 
  | <attribute name="Properties">
  | 
  | #====Configure Scheduler=====================#
  | org.quartz.scheduler.instanceName = MyQuartzScheduler
  | org.quartz.scheduler.instanceId = AUTO
  | org.quartz.scheduler.rmi.export = false
  | org.quartz.scheduler.rmi.proxy = false
  | org.quartz.scheduler.xaTransacted = false;
  | org.quartz.scheduler.dbFailureRetryInterval = 5000
  | 
  | #====Configure Thread Pool===================#
  | org.quartz.threadPool.class = org.quartz.simpl.SimpleThreadPool
  | org.quartz.threadPool.threadCount = 15 
  | org.quartz.threadPool.threadPriority = 5
  | org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread 
= true 
  | 
  | #====Configure Job Store=====================#
  | org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX 
  | org.quartz.jobStore.misfireThreshold = 60000
  | org.quartz.jobStore.driverDelegateClass = 
org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
  | org.quartz.jobStore.dataSource = nuDS
  | org.quartz.jobStore.dontSetAutoCommitFalse = DONT_TURN_OFF_AUTO_COMMIT 
  | org.quartz.jobStore.tablePrefix = qrtz_
  | 
  | #====Configure Data Source++++++=============#
  | org.quartz.dataSource.nuDS.driver = 
  | org.quartz.dataSource.nuDS.URL = 
  | org.quartz.dataSource.nuDS.user = 
  | org.quartz.dataSource.nuDS.password = 
  | org.quartz.dataSource.nuDS.maxConnections = 3
  | 
  | #====Configure Scheduler Plugins=============#
  | org.quartz.plugin.jobInitializer.class = 
org.quartz.plugins.xml.JobInitializationPlugin
  | org.quartz.plugin.jobInitializer.fileName = data/jobs.xml
  | org.quartz.plugin.jobInitializer.overWriteExistingJobs = true 
  | org.quartz.plugin.jobInitializer.failOnFileNotFound = true
  | 
  | </attribute>
  | 
  | </mbean>
  | 
  | <mbean code="scheduler.service.SchedulerProvider"
  |            name="user:service=SchedulerProvider" >
  |   
  |       <depends>jboss:service=Naming</depends>
  | </mbean>
  | 
  | <mbean code="scheduler.service.SchedulerAdmin"
  |            name="user:service=SchedulerAdmin" >
  |   
  |       <depends>jboss:service=Naming</depends>
  | </mbean>
  | </server>

View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3857868#3857868

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3857868


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to