Jump to: navigation, search

Introducing the Platform SDK

The Platform SDK exposes the protocols of Genesys servers as an API. This means you can write .NET and Java applications that communicate with these servers in their native protocols.

You can use the Platform SDK to do two main things:

  • Establish and maintain a connection to each Genesys server used by your application
  • Send and receive messages to and from each of these Genesys servers

In addition to enabling these two basic functions, the Platform SDK ships with application blocks, which have been built on top of the Platform SDK in order to provide simple yet high-performance ways to do things like configuring warm standby settings for your connections and working with configuration objects.

The following image shows the relationship between the Platform SDK protocol objects and the servers each of them connects with.

Platform SDK Overview

Each protocol object subclasses ClientChannel, which in turn subclasses DuplexChannel and implements the Protocol interface. This means they all share a common interface to the Genesys servers. The protocol objects communicate with the corresponding Genesys servers over a TCP connection, with each one using the native protocol of the server it connects with. For example, the TServerProtocol object communicates over TCP with a T-Server, using the TLIB protocol that is native to the T-Server.

As mentioned above, the Platform SDK also includes reusable production-quality application blocks that can be dropped into your code to provide simple yet high-performance ways to carry out important functions that are commonly needed by applications that communicate with Genesys servers.

As shown below, there are two main types of application blocks.

Platform SDK Overview with Application Blocks

The generic Warm Standby Application Block can be used to great effect either in conjunction with Hot Standby or on its own. Generic Protocol Manager and Message Broker application blocks have been marked as legacy items in the 8.1.1 release of Platform SDK. Documentation for legacy application blocks is still included to support backwards compatibility, but improvements to the Platform SDK code mean they are no longer recommended for use in new development.

The Configuration Object Model Application Block provides more specific functionality, and will only be beneficial for specific types of applications. This application block makes it easy to work with objects in the Genesys Configuration Layer, and is not required unless you are writing an application that requires this functionality.

Finally, the Platform SDK includes additional components designed to make development of custom applications easier. These components offer support for useful features such as customized logging or switch abstraction.

The Protocols

The Platform SDK is divided into separate “protocols.” Each component works with one or more of Genesys servers.

The following table shows the servers each of the Platform SDK protocols connects with, and gives the names of the native protocols that are used to communicate with each server.

Platform SDK Protocol Name Genesys Servers Native Protocols
Configuration Platform SDK Configuration Server CFGLIB
Contacts Platform SDK Universal Contact Server UCS Protocol
Management Platform SDK
  • Message Server
  • Solution Control Server
  • Local Control Agent
  • GMESSAGELIB
  • SCSLIB
  • LCALIB
Open Media Platform SDK Interaction Server ITX, ESP
Outbound Contact Platform SDK Outbound Contact Server
  • CMLIB
  • OCS-Desktop Protocol
Routing Platform SDK
  • Universal Routing Server
  • Custom Server
  • URS Protocol
  • Custom Server Protocol
Statistics Platform SDK Stat Server STATLIB
Voice Platform SDK T-Servers
  • TLIB
  • Preview Interaction Protocol
Web Media Platform SDK
  • Chat Server
  • E-Mail Server Java
  • Callback Server
  • MCR Chat Lib
  • MCR E-Mail Lib
  • MCR Callback Lib
  • ESP E-Mail Lib

Configuration Platform SDK

The Configuration Platform SDK enables you to build applications that use the services of the Genesys Configuration Server. This allows these applications to either query on objects in the Configuration Layer of your Genesys environment or to add, modify, and delete information about those objects, while taking advantage of an environment in which Configuration Server carries out several important administrative functions.

Contacts Platform SDK

The Contacts Platform SDK allows you to build applications that view, or interact with, the contact information for your contact center. This SDK accesses information directly from Universal Contact Server, allowing you to design applications that access contact information when dealing with multimedia interactions such as chat or e-mail, for example.

Management Platform SDK

The Management Platform SDK enables you to write applications that interact with Message Server, Solution Control Server, and Local Control Agents.

Open Media Platform SDK

With the Open Media Platform SDK, you can build client applications that feed open media interactions into your Genesys environment, or applications that act as custom media servers to perform external service processing (ESP) on interactions that have already entered it.

Outbound Contact Platform SDK

The Outbound Contact Platform SDK can be used to build applications that allow you to manage outbound campaigns.

Routing Platform SDK

The Routing Platform SDK allows you to write Java applications that combine logic from your custom application with the router-based logic of URS, in order to solve many common interaction-related tasks.

Statistics Platform SDK

With the Statistics Platform SDK, you can build applications that use the services of Stat Server in order to solicit and monitor statistics from your Genesys environment.

Stat Server tracks information about customer interaction networks (contact center, enterprise-wide, or multi-enterprise telephony and computer networks). It also converts the data accumulated for directory numbers (DNs), agents, agent groups, and non-telephony–specific object types, such as e-mail and chat sessions, into statistically useful information.

Voice Platform SDK

The Voice Platform SDK enables you to design applications that monitor and handle voice interactions from a traditional or IP-based telephony device.

Web Media Platform SDK

The Web Media Platform SDK can be used to build applications that interact with Chat Server, E-Mail Server Java, and Callback Server through a web server interface.

The Application Blocks

Genesys application blocks are reusable production-quality components that provide specific functionality needed by a broad range of Genesys customers. They have been designed using industry best practices and provided with source code so they can be used “as is”, extended, or tailored if you need to. Please see the License Agreement for details.

Tip
If you have questions or suggestions about the application blocks, please contact us in the Genesys Forums.

Configuration Object Model Application Block

The Configuration Object Model (COM) Application Block provides a consistent and intuitive object model for applications that need to work with Configuration Server objects. Use the COM Application Block when you need to create, update, or delete Configuration Layer Objects.

Warm Standby Application Block

You can use the Warm Standby Application Block to switch to a backup server in case your primary server fails, in cases where you do not need to guarantee the integrity of existing interactions.

Message Broker Application Block (deprecated)

The Message Broker Application Block makes it easy for your applications to handle events in an efficient way.

Important
This application block is considered a legacy product starting with release 8.1.1. Documentation is provided for backwards compatibility, but new development should consider using the improved method of message handling.

Protocol Manager Application Block (deprecated)

The Protocol Manager Application Block allows for simplified communication with more than one server. It takes care of opening and closing connections to many different servers, as well as handling the reconfiguration of high availability connections.

Important
This application block is considered a legacy product starting with release 8.1.1. Documentation is provided for backwards compatibility, but new development should consider using the improved method of connecting to servers.

The Components

Additional components are included to provide useful functionality for creating custom applications with the Platform SDK, even if that doesn't necessarily involve communicating with Genesys servers.

Platform SDK Switch Policy Library

The Platform SDK Switch Policy Library can be used in applications that need to perform agent-related switch activity with a variety of T-Servers, without knowing beforehand what kinds of T-Servers will be used.

Platform SDK Log Library

The Platform SDK Log Library for .NET presents an easy-to-use API for logging messages in custom-built applications.

This page was last edited on January 28, 2020, at 18:45.
Comments or questions about this documentation? Contact us for support!