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 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
