Create the In-Process client app project
- Last Updated: September 19, 2025
- 1 minute read
- Corticon
- Version 7.2
- Version 7.1
- Documentation
The client is a separate project.
- Switch to Corticon Studio Java perspective.
- Choose File > New > Java Project.
- Name the project myClient_712, and then click Finish.
- Choose Don't Create on the Create module-info.java dialog.
Add Libraries to the project and the Java Build Path
The JARs in the Corticon Server installation will enable the in-process server’s rule processing engine. While you could reference the required JARs, adding them into the project will make it clear that the in-process server is standing on its own. :
- In the Server installation, navigate to
Deploy > Tomcat > 9. - Unpack the
axis.warfile. - Navigate to
WEB-INF\lib. - Copy all the JAR files, and then paste them into the root of myClient_712 project.
- Remove
CcDrivers.jaras it adds a level of complexity not addressed in this tutorial. - From
[CORTICON_SERVER_WORK_7.1]/license/Server, copyCcLicense.jar(Must be a current, valid, and unexpired Server license.), and then paste it into the root of myClient_712 project. - Copy Cargo.jar, and then paste it into the root of the myClient_712 project.
- Right-click on myClient_712, choose Properties, and then click Java Build Path.
- Select the Libraries tab, and then click Add JARs.
- Add all the JARs in myClient_712 to the Java classpath.
- Click OK. The JARs are listed:

- Click Apply and Close.