[jboss-user] [JBoss jBPM] - Re: JBPM Timer Problem
mputz
do-not-reply at jboss.com
Thu May 3 06:39:26 EDT 2007
If you don't deploy the standard jBPM which configures the JobExecutorServlet, I'd suggest to add the configuration of this servlet to your own applications web.xml. As indicated in the javadocs of JobExecutorServlet, add the following configuration
<web-app>
| ...
| <servlet >
| <servlet-name>JobExecutorServlet</servlet-name>
| <servlet-class>org.jbpm.job.executor.JobExecutorServlet</servlet-class>
| <load-on-startup>1</load-on-startup>
| </servlet>
| <servlet-mapping >
| <servlet-name>JobExecutorServlet</servlet-name>
| <url-pattern>/jobexecutor</url-pattern>
| </servlet-mapping>
| ...
| </web-app>
Best regards, Martin
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4042778#4042778
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4042778
More information about the jboss-user
mailing list