cancel
Showing results for 
Search instead for 
Did you mean: 

Possible bug at activiti 5.16.4

yahekia
Champ in-the-making
Champ in-the-making
Hello Team,

I think I have found a bug in the last version:

Class : ProcessEngines
Method: initProcessEngineFromSpringResource

      Class< ? > springConfigurationHelperClass = ReflectUtil.loadClass("org.activiti.spring.SpringConfigurationHelper");
      Method method = springConfigurationHelperClass.getMethod("buildProcessEngine", new Class<?>[]{URL.class});
      ProcessEngine processEngine = (ProcessEngine) method.invoke(null, new Object[]{resource});


And if you take a look at that class:


  private static ProcessEngine buildProcessEngine(URL resource);


The signature of the methods is not the same an it is rising a NoSuchMethodExeption. Should I open a jira?? Is it not a bug?

Regards,
Javi
2 REPLIES 2

yahekia
Champ in-the-making
Champ in-the-making
Sorry for my previous post, it was late and I did not realized that it they have same signature.

I figured that my  problem should be with the version of some jars. I am running activiti rest inside JBoss. I am going to take a closer look and if I found something I will let you know.

Javi.

duslompo
Champ in-the-making
Champ in-the-making
Have you solved this, Javi? I'm facing exactly the same issue.