Start the Change Data Capture Process

Topics:

Use the following REST call to start the CDC process with an optional interval.

GET: /server/api/v1/server/cdc/start?interval=<seconds>

Topics:

Start the CDC process.

Example:

GET https://localhost:9514/server/api/v1/server/cdc/start?interval=5

-- response --

200 OK
Server:  Apache-Coyote/1.1
X-Application-Context:  application:9500
Content-Type:  application/xml;charset=UTF-8
Transfer-Encoding:  chunked
Date:  Tue, 08 May 2018 13:39:53 GMT

<RestResponse>
  <status>0</status>
  <statusText/>
<responseType>
  com.ibi.omnigen.controller.cdc.NotificationServiceStatus
  </responseType>
  <response>
    <NotificationServiceStatus>
      <status>Running</status>
      <configurationValid>true</configurationValid>
      <serviceName>cdc</serviceName>
      <lastRun/>
      <pollInterval>5</pollInterval>
    </NotificationServiceStatus>
  </response>
</RestResponse>