Gateway Components

The gateway components form one of the primary tables for it holds the component credentials, IP and port information for each gateway component present in the system. In the event of a trade, this table is pre-mapped with the component type table that defines the type of component through which the flow of information occurs.

The fields for the Gateway component table are:

Table Name: GatewayComponents

Column Name

Data Type

Valid Values

Allow Nulls

Description

PK_ComponentID

int identity

No

The component ID is assigned corresponding to each gateway component.

Name

varchar

Yes

The name of the component is listed here.

Login

varchar

Yes

The field has login information for each component.

Password

varchar

Yes

The field contains password corresponding to the Login ID.

Active

bit

Yes

The field lists the current activity of the component whether it is active or inactive.

LastUpdatedtime

datetime

(getutcdate())

Yes

The time when the last update took place.

Port

int

Yes

The information of the port with which the connection needs to be established.

IP

varchar

Yes

The information of the IP with which the connection needs to be established.

FK_ComponentType

int

Yes

This field contains the component type ID and is linked with the Component Type table.

Last updated

Was this helpful?