Hi folks, I am trying to build my own REST service to enhance some of the features of the activiti-rest api. I have a maven spring project that has a custom Rest controller (below), ============================================= <java> package org.activiti.rest.service.api.dsw;
<display-name>Activiti REST</display-name> <!– All the Servlets and Filters are configured by this ServletContextListener : –> <listener> <listener-class>org.activiti.rest.servlet.WebConfigurer</listener-class> </listener> </web-app> </blockcode>