Configuring the Server for Live with Load Balancing

To ensure that Live works properly on a server architecture using load balancing, you need to configure the application server (TomEE).

On premises only: This only applies to the On Premises version.

  1. Connect to MQL with the following syntax:

    MQL>set context user creator password ${creatorPass};

  2. Create a DEL3DL_WS_EndPoint object with the following syntax:

    MQL>add bus DEL3DL_WS_EndPoint VM_${InstanceNumber} - policy DEL3DL_Policy vault vplm V_DEL3DL_WS_Protocol ws V_DEL3DL_WS_IP ${IP} V_DEL3DL_WS_Port ${Port} V_DEL3DL_WS_URI ${URI}; where:

    Parameter Name Examples of values Description

    InstanceNumber

    0,1,...

    Any number representing the server node in the load balancer.

    IP

    127.0.0.1

    The IP used to directly contact the application server (TomEE).

    Port

    8080, 14090,...

    The port used by the application server (TomEE).

    URI

    3DSpace, 3dspace, enovia,...

    The URI of the 3DSpace web application deployed in the application server (TomEE).

    1. If the object already exists, retrieve then delete it with the following syntax:

      • To retrieve the object: MQL>temp query bus DEL3DL_WS_EndPoint VM_${InstanceNumber} - select name dump;
      • To delete the object: MQL>del bus DEL3DL_WS_EndPoint VM_${InstanceNumber} - ;