Configure Runtime Services
Services Overview
The Semarchy xDI Runtime exposes multiple services:
-
An RMI Service for Java applications (Designer and Semarchy xDI Production Analytics) to communicate with the Runtime. Its default port is 42000.
-
An Internal H2 Database, which is the default destination for the sessions and schedules logs. Its default ports are 42100 for JDBC access and 42101 for HTTP access.
-
A REST/SOAP Service, exposing endpoints to start deliveries. Its default port is 42200.
-
A built-in Scheduler Service.
You may have to configure these services to accomodate network and security rules.
Configure Services
You can configure these services in the following section of the engineParameters.xml
configuration file.
<parameters>
<...>
<engineParameters>
<...>
<!-- Services startup -->
<parameter name="launchSchedulerEngine" value="true"/>
<parameter name="launchExecutionEngine" value="true"/>
<parameter name="launchReportEngine" value="true"/>
<parameter name="startInternalDb" value="true"/>
<parameter name="startSoapServer" value="true"/>
<...>
<!-- Services Ports -->
<parameter name="rmiPort" value="42000"/>
<parameter name="internalDbTcpPort" value="42100"/>
<parameter name="internalDbWebPort" value="42101"/>
<parameter name="soapServerPort" value="42200"/>
<...>
</engineParameters>
<...>
</parameters>
The following table lists the parameters available to configure these services and their listening ports.
Parameter | Default value | Description |
---|---|---|
|
|
Start the built-in scheduler. |
|
|
Start the execution engine. |
|
|
Start the reporting service. |
|
|
Start an internal H2 database. |
|
|
Internal database TCP port for JDBC access. |
|
|
Internal database port for web access. |
|
|
Start the SOAP server. |
|
|
Listening port for the SOAP server. |
|
|
Enables connecting and operations on the Runtime using the HTTP protocol. |
|
|
Listening port for the RMI. |
You can also secure the communication with these services. See Runtime Security for more details.