The following resolved the above problem for me. I have TomCat 7.0.34 installed with 5.4.0 Final of Guvnor .
You can disable the seam transaction listener by adding the appropriate <context-param> to the web.xml , which you should find in
[tomcat-dir]\webapps\[nameOfGuvnorJar]\WEB-INF\
where [tomcat-dir] is your path to the top level directory where you installed Tomcat . and [nameOfGuvnorJar] is the name that you gave to the guvnor application that you deployed to Tomcat .
Required Rows:
<context-param> <param-name>org.jboss.seam.transaction.disableListener</param-name> <param-value>true</param-value> </context-param>
It must be added inside the <web-app> element <web-app>
You may need to restart the web server in order for the changes to be matched.
ahndi source share