• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

JBoss4 to JBoss6 - quartz.jar missing QuartzService class

 
Ranch Hand
Posts: 100
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I had been working on migrating an application from JBoss4 to 6 and has ran into an issue with the quartz scheduler library.
Our application depends on the quartz.jar shipped by default on JBoss.
With JBoss4(with quartz of version 1.5), the scheduling in our application was working fine. The quartz-service.xml had reference to the mbean class QuartzService.
However, in the later versions of quartz, i see that the jars are named as quartz-all.jar, quartz-jboss.jar and quartz.jar. Where quartz-all.jar seems to include the contents of quartz.jar+quartz-jboss.jar.
And JBoss6 seems to ship just quartz.jar(version 1.8) which does not include the QuartzService classes which are now part of quartz-jboss.jar. The service.xml referring to the QuartzService class does not find it and hence my application is failing to use scheduling.
I have already read in forums regarding the suggestions and steps to not rely on the third party libs shipped with jboss and to ship the quartz downloaded with our application.
However I still want to know, if in case I want to work with just the quartz.jar shipped with jboss6, is it possible to do so? What classes should I be using in my quartz-service.xml then instead of QuartzService class. Or is there any alternative configuration possible?
Please let me know. Thanks in advance.
 
lokesh sree
Ranch Hand
Posts: 100
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Posted it at
http://forums.terracotta.org/forums/posts/list/0/6435.page#32539
http://community.jboss.org/thread/176299
as well hoping for some response.
reply
    Bookmark Topic Watch Topic
  • New Topic