I have imported camunda webapp source code from github into my eclipse . Since the built path was not configured i cannot take references of method in java class . Then i had converted the project to project facet and configured as java project also i have tried to convert project into maven. For both cases i got a bunch of errors.
the way I see it this is an eclipse question and should be asked in eclipse community. I can assist you with building camunda-webapp from the command line. You can then edit source files using any editor of your choice. Personally I can recommend you trying to use IDE which is less intrusive in project structure of maven projects in general, such as IntelliJ for instance, but this is my personal preference.
If i use text editor and built from command line i may not able to identify which class is depending on other. It will be very much difficult. I think you know that. Also am not familiar with Intellij IDE am using eclipse. So hoping some one can help me to resolve
org.camunda.bpm.cockpit.impl.plugin.resources.BaseRootResource is a class that performs a setup of JAX-RS resources in a web application, among others it sets up org.camunda.bpm.cockpit.impl.plugin.resources.ProcessInstanceRestService, which handles this request. Would you mind describing the problem that you are trying to solve, may be I would be able to guide you in a proper direction faster.
What am trying is that to list all completed and running instance in cockpit(Better in tasklist if possible) . So i need to understand the code structure of camunda. First thing am trying to understand how this requesting is passing to the server…
From the path anotation i guess that some thing is happening on BaseRootResource class. But couldn’t got much idea on what is happening there. If it possible can you explain what it is calling after that to getting response.
Also i have see one processinstance.xml where some queries are written in it and not aware of it also …
Hi may be am not looking into the one you refered. Iam using embeded forms. I want to show exactly the same rendered form in task list after completing the process instance along the data .