2 Replies Latest reply on Aug 8, 2011 7:11 AM by krzysztof.kacki

    Quartz dispatcher conflict with Seam Resource Bundle

    ashok.ashok.k.vedainformatics.com

      Hi,
      We integrated Quartz Job Scheduler with the application for scheduling jobs. The steps i did,


      1. Added quartz.jar into my lib directory.


      2. In components.xml file,


      components header i added xmlns:async="http://jboss.com/products/seam/async". Inside that, 
              <async:quartz-dispatcher />
           <core:resource-loader>
                <core:bundle-names>               
                     <value>messages</value>
                </core:bundle-names>
           </core:resource-loader>



      3. In the StartUp class,


      QuartzTriggerHandle handle =
                cronJobSchedulerTest.scheduleTest(new Date(), "0 10,44 14 ? 3 WED");



      4. Quartz dispatcher is working fine, But the resource bundles are not loading.


      5. Without quartz dispatcher, resource bundles are working fine.


      6. Whats the issue on the code.


      Am using Seam 2.2.1 GA.


      Please kindly help me for this.