Hello guys,I am using activiti 5.14.. I designed some process with activiti designer. I tested them with JUnit. There was not problem.. But when I tried to start theese process from web content, I got a error like this..java.lang.NoSuchMetodError org.joda.DateTime… The reason of this problem is my app. server: WebLogic 10.3… Activiti has a dependency the joda library for date and time parsing process.. But there is joda library in weblogic libraries.. So If you want to fix this problem you must add these lines to your weblogic-application.xml
<wls:prefer-application-packages>
<wls:package-name>org.joda.*</wls:package-name>
</wls:prefer-application-packages>
have nice days..