| Author |
Message |
|
|
Yes, you can use Web Session in the open-source version freely.
|
 |
|
|
You are welcomed. Let me know if you experience any trouble with the Quartz panel itself. It's relatively new.
|
 |
|
|
|
Be sure to set org.quartz.scheduler.jmx.export = true in your quartz.properties.
|
 |
|
|
|
Could you post a screenshot of the MBean attributes as show in JConsole?
|
 |
|
|
|
Which version of Quartz are you using?
|
 |
|
|
I don't know the answer but I do have a question. Why do you not place auditservices.jar in the lib area? Isn't that the standard?
|
 |
|
|
A custom (or DSO) installation is required for identity mode. This is covered in sections 1.0.1 and 2.1.1 of the documentation: http://www.terracotta.org/documentation
|
 |
|
|
Do you happen to get that usage from a sample or example somewhere that needs to be fixed?
|
 |
|
|
I've create a JIRA ticket to beef up the documentation on this subject.
|
 |
|
|
I see the problem:
<key>org.quartz.jobs.NativeJob.PROP_COMMAND</key>
This is XML-land so that should be:
<key>command</key>
|
 |
|
|
Your node has already connected to the cluster by the time you add the listener. You can check if your node is already connected with:
Code:
cluster.addTopologyListener(cacheListener);
if(cluster.isClusterOnline()) {
cacheListener.clusterOnline(cluster.getCurrentNode());
}
|
 |
|
|
It's a bug that I've just recently tracked down and will be adding a fix for in trunk. If you'd like, I can inform you when it's in and you can help validate the fix.
|
 |
|
|
Turn on logging so we can see the command array. One of the elements is apparently null. The examples have log4j.xml files you can use.
|
 |
|
|
That's NativeJob with a capital N.
|
 |
|
|
Add the following to your ThreadPool section:
Code:
org.quartz.threadPool.threadsInheritContextClassLoaderOfInitializingThread = true
|
 |
|
|