Create the In-Process client app project
- Last Updated: June 3, 2026
- 2 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, 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. Actually, once the Server JARs have been added to the client project, the Server could be uninstalled:
- Copy the following JAR files from Corticon Server’s [CORTICON_HOME]/Server/lib:
ant_launcher.jarCcConfig.jarCcDrivers.jar(Could be skipped as there are no database connections in the example.)CcExtensions.jarCcI18nBundles.jarCcLicense.jar(Must be a current, valid, and unexpired license.)CcServer.jarCcThirdPartyJars.jar
- Paste them into the root of myClient project.
- Copy Cargo.jar, and then paste into the root of the myClient project.
- Right-click on myClient, choose Properties, and then click Java Build Path.
- Select the Libraries tab, and then click Add JARs.
- Add all the JARs in myClient to the Java classpath:

- Click OK.

- Click Apply and Close.