2.1 Unicast

This topic provides information on Unicast.

Unicast is the default routing used in OBDX for communication when using Coherence.For enabling unicast routing for Coherence on OBDX, following changes needs to be done.

  • Add comma separated master servers’ Ip and ports in system properties (server start params in managed server in case of WebLogic)

    -Dwka.list=<IP1:PORT1>,<IP2:PORT2>

  • Run below query in database
    INSERT INTO DIGX_CFG_CONFIG_ALL_B (PROP_ID, PROFILE, PROP_VALUE, EN-TITY_SPECIFIC, EDITABLE, MANDATORY_OVERRIDE, PROPERTY_GROUP, CRE-ATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATED_DATE, OB-JECT_VERSION_NUMBER, MODULE, SEQUENCE, VALIDATION, IS_ENUMERATED) VALUES ('DayOneConfig.COHERENCE_CACHE_ADDRS', 'DEV', <IP1:PORT1>,<IP2:PORT2>, 'N', 'Y', 'N', 'Day One', 'SYSTEM', sysdate, 'SYS', sysdate, 1, 'infra', '-1', '.*', 'N');

    Please replace IP and PORT with respective values. Please note that all PORT values by default will be 9099. Default port value can be changed using system property -Dcoherence.localport . Example : -Dcoherence.localport=9098