I am securing an application and I have just run into a problem I do not find a straight solution.
The problem occurs when a secured bean is invoked from a ... |
|
Hi All, I have an issue in Jboss-4.2.3.GA class loader with Quartz 1.6.5. The default value of UseJBossWebLoader attribute in \server\default\deploy\jboss-web.deployer\META-INF\jboss-service.xml is: false With this setting, JBoss is not able to find Quartz Job classes and conf files from my application ear. If I set the above property to true, then Quartz service is able to find Quartz Job classes ... |
I am trying to create a biweekly job using DateIntervalTrigger. I am using quartz 1.7.3 jar and also I tried with latest 1.8.0 jar. When I create a job by place java application it is working fine. And it is also taking care of DST changes. But when I run it in JBOSS the trigger is scheduled 1 hour later in ... |
Hello, I want to integrate Quartz1.8 with JBoss 5.1. I followed http://www.len.ro/2008/10/another-way-to-use-quartz-in-jboss/, removed old jars, copied 1.8 jars to jboss but now I am stuck with quartz-service.xml: It says 'Change the 'QuartzDS' to your datasource name. Important!==> this is NOT the JNDI name of the datasource' jboss.jca:service=DataSourceBinding,name=QuartzDS What am i supposed to type here? I guess it is used for JDBC ... |
We are in the process of architecting our scheduler. We have a cluster of JBoss servers, working on a home brewed scheduler at this point. My thoughts are leaning towards having a separate bunch of Quartz standalone clusters, with each node in the JBoss cluster talking to an array of Quartz servers at its disposal. However others are leaning towards having ... |
Hey Please help me out for following issue,(Its hard to explain .... let me try my best) So I have JBOSS 5.1 and Quartz 1.8.3 Two applications which uses quartz 1. Say Application MyProduct 2. A quartz UI to monitor scheduled jobs (Its uses the classes from application one - We exposed the jars) Currently there is no clustering and Jobs ... |
|
We have split our applications into multiple projects within a single EAR. The Quartz 1.7.2 jar's live in project one and are trying to reference classes in project two. Project two is in the build path of one (we are using eclipse to build with and it doesn't show any build errors). We don't have any trouble referencing classes in two ... |
Has anyone else had issues with JBoss 6? We opt for a plain deployment instead of the JBoss-specific one, and we've been unable to get our quartz.properties file nor our quartz-jobs.xml to be loaded (or even found) by JBoss. In JBoss 5, we placed our properties and job files in the %JBOSS_HOME%/bin directory, and no issues. It's worked just fine. But ... |
Hi, I've got a Spring 3.0.5 application that will be deployed in a JBoss 6 cluster. My app has a requirement for scheduled tasks. I know that JBoss has a Quartz-based scheduler but do not know much about it. What is the best way to go ahead to integrate my application with Jboss/Quartz? Is it better for me to package my ... |
package stirq.lds.struts.servlet; import java.io.IOException; import javax.servlet.GenericServlet; import javax.servlet.ServletConfig; import javax.servlet.ServletException; import javax.servlet.ServletRequest; import javax.servlet.ServletResponse; import org.quartz.CronTrigger; import org.quartz.JobDetail; import org.quartz.Scheduler; import org.quartz.impl.StdSchedulerFactory; import org.quartz.jobs.ee.ejb.EJBInvokerJob; public class QuartzServlet extends GenericServlet { private static final long serialVersionUID = 7849201804147238822L; public void init(ServletConfig config) throws ServletException { super.init(config); System.out.println("Scheduling Job .."); JobDetail jd = new JobDetail("Test Quartz", "My Test Job", EJBInvokerJob.class); jd.getJobDataMap().put("ejb", stirq.lds.ejb.session.interfaces.SortieFacadeLocalHome.JNDI_NAME); jd.getJobDataMap().put("method", ... |
|
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 ... |
depends on what you are planning to do, there is also a schedular in postgres that runs as a service its called pgAgent it could be helpful. regarding the best one there is no best one just decide what you want to do and then choose the first schedular that fits your needs ;). |