Where do I deploy the custom (package) class files for the Custom Process Step created using Eclipse.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2014 04:02 AM
Where do I deploy the custom (package) class files, which were called from within the Overridden execute method.
In the example below I am referring to package com.MyCustomPackage.
Where do I deploy the class or Jar file of com.MyCustomPackage, so that activiti can pick it up while executing the process?
Thanks,
M
In the example below I am referring to package com.MyCustomPackage.
Where do I deploy the class or Jar file of com.MyCustomPackage, so that activiti can pick it up while executing the process?
import com.MyCustomPackage;public void execute(DelegateExecution pipeline) throws Exception { com.MyCustomPackage.MyClass objClass = new com.MyCustomPackage.MyClass(); objClass.SomeMethod();}
Thanks,
M
Labels:
- Labels:
-
Archive
4 REPLIES 4
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-25-2014 04:07 AM
Just to add, I am getting the error -> "Could not instantiate Class com.MyCustomPackage.MyClass"
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2015 05:25 AM
Hi,
put it to the jvm (on which activiti is running) class path.
regards
Martin
put it to the jvm (on which activiti is running) class path.
regards
Martin

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2015 02:24 AM
Error while parsing: [validation set: 'activiti-executable-process'|Problem:'activiti-servicetask-result-var-name-with-delegate']:'resultvariableName' not supported for service tasks using 'class' or 'delegateExpression-[Extra info: processDefinitionId=RestProcess|ProcessDefinitionName=My Process||id=SyncWebCall||activitiName=Sync Web Call|](line:4, column:157)
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2015 05:27 AM
'resultvariableName' not supported for service tasks using 'class' or 'delegateExpression
