Subcomponent Information

Voice Platform SDK for .NET

7.6.x

Genesys Telecommunications Laboratories, Inc. © 2008–2013

Contents

Introduction

Subcomponent Version AIX HP-UX Linux Solaris Tru64 UNIX Windows
7.6.201.13 [04/18/13] – Hot Fix           X
7.6.201.12 [06/08/12] – Hot Fix           X
7.6.201.11 [11/05/10] – Hot Fix           X
7.6.201.10 [05/28/10] – Hot Fix           X
7.6.201.09 [11/13/09] – Hot Fix           X
7.6.201.08 [10/02/09] – Hot Fix           X
7.6.201.07 [07/31/09] – Hot Fix           X
7.6.201.06 [02/20/09] – General           X
7.6.200.10 [12/17/08] – General           X
7.6.000.11 [07/11/08] – Hot Fix           X
7.6.000.09 [04/15/08] – Hot Fix           X
7.6.000.08 [02/29/08] – General           X

Known Issues and Recommendations


Introduction

This document applies to all 7.6 releases of the Voice Platform SDK for .NET subcomponent that are specified in the Contents (above). For a list of other .NET Platform SDK subcomponents, or to read about the .NET Platform SDK in general, see the Platform SDK & Application Blocks for .NET Release Note.

Note: Genesys follows applicable third-party redistribution policies to the extent that Genesys solutions utilize functionality of commercial or non-commercial third parties.


Release Number 7.6.201.13 [04/18/13] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.201.12 [06/08/12] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.201.11 [11/05/10] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.201.10 [05/28/10] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

This release includes the following corrections and modifications:


The RequestRouteCall request now includes a hidden AttributeClientId property. (ER# 252116979)


Top of Page


Release Number 7.6.201.09 [11/13/09] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

This release includes the following corrections and modifications:


The Voice Platform SDK for .NET now provides improved reliability after a new connection is opened. Previously, rare cases would generate an error after a BeginOpen request was made using the Protocol Manager Application Block, and the application would terminate. (ER#s 233795481, 234025271)


Top of Page


Release Number 7.6.201.08 [10/02/09] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.201.07 [07/31/09] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.201.06 [02/20/09] – General

New in This Release
Corrections and Modifications

New in This Release

There are no restrictions for this release. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.200.10 [12/17/08] – General

New in This Release
Corrections and Modifications

New in This Release

There are no restrictions for this release. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

This release also includes the following corrections and modifications:


The Dispose() method has been updated in the PropertyConfiguration class. Previously, using the Dispose() method would generate an error. (ER# 173939033)


In High Availability scenarios with a Hot Standby T-Server, applications that use the Voice Platform SDK now register the backup T-Server correctly, even if it was not running when the application started. (ER# 210866911)


Top of Page


Release Number 7.6.000.11 [07/11/08] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This section describes new features that were introduced in this release of the Voice Platform SDK for .NET.

Corrections and Modifications

There are no corrections or modifications in this release.

Top of Page


Release Number 7.6.000.09 [04/15/08] – Hot Fix

New in This Release
Corrections and Modifications

New in This Release

This is a hot fix for this product. This release does not contain new features or functionality.

Corrections and Modifications

This release also includes the following corrections and modifications:


The Voice Platform SDK for .NET can now consistently reconnect to a backup HA T-Server. Previously, customer applications were not always able to reconnect to the backup T-Server in an HA pair after that backup server had been restarted. (ER# 167249577)


Applications written with the Voice Platform SDK for .NET no longer receive telephony errors after a T-Server failover. (ER# 182289178)


Top of Page


Release Number 7.6.000.08 [02/29/08] – General

New in This Release
Corrections and Modifications

New in This Release

There are no restrictions for this release. This section describes new features that were introduced in the initial 7.6 release of the Voice Platform SDK for .NET.

Corrections and Modifications

This release includes the following correction or modification that was made between Release 7.5 or earlier releases and the initial 7.6 release:


The TKVType page in the Voice Platform SDK 7.6 API Reference now displays correctly when the link is clicked in the TKVListType HTML page. (ER# 112919416)


Top of Page


Known Issues and Recommendations

This section provides the latest information on known issues and recommendations associated with this product.


If you use a PropertyConfiguration object to configure your TServerProtocol, as shown in the example below, the Dispose() method will generate an error.


TServerProtocol tsProtocol = new TServerProtocol(
		new Endpoint("name", tserverUri));
tsProtocol.ClientName = this.name;
tsProtocol.EnableLogging(new ConsoleLogger());
PropertyConfiguration propConf = new PropertyConfiguration();
propConf.SetOption("protocol", "addp");
propConf.SetOption(AddpInterceptor.TimeoutKey, "10");
tsProtocol.Configure(propConf);
tsProtocol.Open();
tsProtocol.Close();
tsProtocol.Dispose(); // error occurs here

(ER# 173939033)

Found In: 7.6.000.08 Fixed In: 7.6.200.10

Top of Page