The Signalware TCAP stack implementation for CGIN consists of two parts:

  • a Java "frontend" library, deployed on each Rhino node as part of the CGIN RA; and

  • a C++ "backend" executable, run within the Signalware platform environment, that is linked against the Signalware TCAP library.

cgin signalware

Frontend - backend processes

It works like this:

  1. Each frontend establishes TCP/IP connections to all configured backends.

  2. The Signalware platform receives incoming TCAP traffic from the network,
    ... and directs that traffic to the appropriate backend process.

  3. The backend performs basic TCAP processing, using the Signalware TCAP library,
    ... and passes the results to a frontend deployed in a Rhino node.

  4. The frontend library then passes this data to the CGIN Unified RA.

  5. The CGIN Unified RA performs protocol-specific decoding to produce SLEE events,
    ... and fires those events to Rhino.

  6. In Rhino, SLEE services process those events,
    ... and send outgoing TCAP traffic to the CGIN Unified RA.

  7. The CGIN Unified RA performs protocol-specific encoding,
    ... and passes TCAP data to the frontend.

  8. The frontend passes that data to the appropriate backend process for the dialog.

  9. The backend passes the TCAP data to the Signalware TCAP library.

  10. The Signalware TCAP library then passes the resulting encoded data to the Signalware platform.

  11. And the Signalware platform sends that data to the network.

Note
Frontends and backends for each resource adaptor entity

For a single resource adaptor entity configured in Rhino, there will be one or more frontends (one per Rhino node), and one or more backends (as configured in the Signalware deployment).

All the backends associated with a particular resource adaptor entity have an identical configuration — multiple backends in this case are only needed for performance and redundancy reasons; they are otherwise equivalent.

Previous page Next page