Product Support Notice

Size: px
Start display at page:

Download "Product Support Notice"

Transcription

1 PSN # PSN002343u Product Support Notice 2009 Avaya Inc. All Rights Reserved. Original publication date: 28-Jul-09. This is Issue #01, published date: 28- Severity/risk level Medium Urgency When convenient Jul-09. Name of problem Notes for TAS applications using MRCP with Nuance R9. Products affected Interactive Response (IR) 3.0/4.0. Problem description No documentation is available for using Request/Reply commands for TAS applications using MRCP with Nuance R9. Resolution The following document Request/Reply commands are sent before or after a recognition job, but not during the actual recognition of audio. There are two general categories of commands, grammar management and ASR parameter setup. Request/Reply Following are special request/reply commands sent by the Avaya IR to connected ASR engines. Request commands are case sensitive. Grammar names are limited to 64 characters and may not contain any whitespace characters. All request commands and reply results are expect to be in UTF-8 Unicode. 1. Results The reply returned after processing any of these requests with the exception of GET_RESULT_MEAN should be one of the following strings. The quote marks are not returned, only the quoted content. 2. Success A successful operation returns: "[status: success]" 3. Error An error return should be composed of the following string with the "%d" replaced by the error code. "[error: %d]" 4. Unknown If the request is not supported or is an unknown command then return: "[error: unknown request]" Following are the different return codes and there meaning for speech proxy: 6000 : PROXY_ASR_START 6001 : PROXY_ASR_PROMPTEND 6002 : PROXY_ASR_STOP 6003 : PROXY_ASR_ABORT 6004 : PROXY_ASR_TALKOFF 6008 : PROXY_ALLOC 6009 : PROXY_RELEASE 6010 : PROXY_ASR_COMP 6011 : PROXY_ASR_TIMEOUT 6012 : PROXY_ASR_ERROR 6013 : PROXY_ASR_DATA 6014 : PROXY_ASR_ENDPOINT 6015 : PROXY_BINARY_REPLY 6016 : SB_PROXY_REQUEST 6017 : VW_PROXY_REQUEST 6018 : PROXY_REPLY 6019 : PROXY_ALLOC_STAT 6020 : PROXY_BINARY_REQUEST 6021 : PROXY_DCFILEPATH_REQUEST 6022 : PROXY_DCREMOVE_REQUEST 6023 : PROXY_DATA_COLLECT 6024 : CALL_STATUS

2 Grammar Load Load the specified text as a grammar. The specified grammar name is generated by the VXML Interpreter and will be used for future activate, deactivate, and unload commands. <grammar name> Unique name for this grammar <grammar text> Complete text of the grammar to load GRAM_LOAD_TXT <grammar name> <grammar text> Grammar Load URI Load the specified URI as a grammar. The specified grammar name is generated by the VXML Interpreter and will be used for future activate, deactivate, and unload commands. <grammar name> Unique name for this grammar <grammar URI> URI pointing to the grammar to load GRAM_LOAD_URI <grammar name> <grammar uri> Grammar Activate Activate the specified grammar. This grammar should be added to the list of active grammars for all the following recognitions. The grammar remains active until deactivated or unloaded. The weight parameter is optional. <grammar name> Previously loaded grammar to activate <weight> Floating point weight of this grammar, weight is > 0.0 GRAM_ACT <grammar name> <weight> Grammar Deactivate Deactivate the specified grammar. This grammar should be removed from the list of active grammars for all the following recognitions. <grammar name> Previously loaded, activated grammar to deactivate GRAM_DEACT <grammar name> Grammar Unload Unload the specified grammar. The grammar should be deactivated and removed from the internal list of valid grammars. The grammar name is no longer valid after this call. <grammar name> Previously loaded grammar to unload. GRAM_UNLOAD <grammar name> Result Grammar Name Return the name of the grammar that produced the most recent recognition result. GET_RESULT_GRAM 2009 Avaya Inc. All Rights Reserved. Page 2

3 Result Meaning Return the meaning of the Nth recognition result of n-best recognition results. N-best index is 1 based. When the Nth n-best index is more than what the speech recognition has to return, then there is no semantic meaning for that request, and [status: reject] will be returned. If there is no Nth n-best index in the request, the proxy will return the semantic meaning of the first result of the N-Best Result. The return string has the following format: <meaning string>;[utts]= <value> :<score> There are two form of <meaning string>. The first form is the semantic meaning. For example, if the recognition result was "one thousand" the semantic meaning for built-in number would be "1000". If there is no associated semantic meaning then the meaning string is empty. The second form of grammar meaning supports key/value pair evaluation. This allows ASR engines to communicate VXML key/value results. To pass back a key value result uses the following format:?<key1>= <value1> :<score1>;<key2>= <value2> :<score2>; [UTTS]= <value> :<score> provides the utterance and its confidence level for the Nth best recognition result. <value> is the utterance for Nth best recognition result, while <score> is the confidence level for that utterance. GET_RESULT_MEAN < Nth n-best index > Set VXI Parameter Set the specified parameter to the specified value. Following is the list of valid parameters: confidencelevel sensitivity speedvsaccuracy completetimeout incompletetimeout maxspeechtimeout maxnbest savewaveform recognitionmode <parameter name> Name of the ASR parameter to set. <parameter value> Value of the parameter. VXI_SET_PARAM <parameter name> <parameter value> The timeout values for completetimeout, incompletetimeout, and maxspeechtimeout are measured in milliseconds. The valid range for confidencelevel, sensitivity, and speedvsaccuracy is from 0 to 1.0. If the parameter value is set to -1, then this value is not set on the speech server. However, the default value available on the speech server comes into effect. You can either use a MrcpSetParam (Available for IR 4.0 with IVRD 6.1 only) external function once or the LreqPROXY external function nine times for each of the MRCP parameters. For IR 4.0 Avaya recommends you to use MrcpSetParam external function as using LreqPROXY external function nine times can be a time-consuming task Avaya Inc. All Rights Reserved. Page 3

4 CAUTION: Do not use the MrcpSetParam external function and the RequestPROXY external function in the same application. The application does not compile correctly and generates the multiple define error message. Set ASR language Set the speech language parameter "SET_SPEECH_LANGUAGE" to the ASR speech language name such as "en-us" code for US English language. This command can be used before every "GRAM_LOAD_TXT" and "GRAM_LOAD_URI" commands. <language_name> ASR language to be used for example en-us code for US English language. SET_SPEECH_LANGUAGE <language_name> The following example shows how to use Nuance R9 s Open Speech in IVRD application: Start: 1. Answer Phone 2. Set Field Value Field: Engine = "OPSR4" Field: ActD1 = "GRAM_ACT D1" Field: SetLang1 = "SET_SPEECH_LANGUAGE en-us" 3. External Function Function Name: concat Use Arguments: LoadD1 "GRAM_LOAD_URI D1 builtin:" "grammar/digits?length=1" 0 4. External Function Function Name: allocproxy Use Arguments: Engine 5. Announce Speak With Interrupt Text: "Welcome to TTS and ASR test for Speech Works " 6. Announce Speak With Interrupt Text: "Choose one of the following options " Text: "Say one for option one " Text: "Say two for option two " 7. External Function Function Name: requestproxy Use Arguments: Engine SetLang1 8. External Function Function Name: requestproxy Use Arguments: Engine LoadD1 9. External Function Function Name: requestproxy Use Arguments: Engine ActD1 10. Prompt & Collect Input Max Number Of Digits: 01 RECOG: SR SWASR Checklist Case: "Input Ok" Continue Case: "Initial Timeout" Reprompt Case: "Too Few Digits" Reprompt Case: "No More Tries" Quit 2009 Avaya Inc. All Rights Reserved. Page 4

5 End Prompt & Collect 11. Announce Speak With Interrupt Text: "Thank you for choosing an option" 12. External Function Function Name: deallocproxy Use Arguments: Engine 13. Quit The following are some notes about this example program: The value of the argument to requestproxyfor the engine should always be "OPSR4" (The variable name Engine is defined by the application writer) The LoadD1, ActD1 and SetLang1 field names are only examples actual field names may vary. The grammar must be allocated see allocproxy (Step 4). The ASR speech language must be set see first requestproxy (Step 7). The grammar must be loaded see second requestproxy (Step 8). The LoadD1 argument (Set in step 3) must start with GRAM_LOAD_URI <grammar_name> <grammar_uri> <grammar_name> in this case can be anything but must be consistent with <grammar_name> used in later grammar activate step (Step 8) <grammar_uri> should be as described in Nuance documentation what is in this example is one of many possibilities The grammar must be activated see third requestproxy (Step 9). The ActD1 argument (set in step 2) must start with GRAM_ACT <grammar_name> The SetLang1 argument (set in step 2) must start with SET_SPEECH_LANGUAGE <language_name> In the prompt&collect the grammar_name (SWASR in step 10) must match a stub grammar that was created as described in the stub grammar section earlier in this document. Here are the few things you will have to consider: 1. The grammars might need to be ported to SRGS (.grxml) from the old.gsl ones that might have been used until now. Grxml files will need to be used as a URL, not inline. 2. If you intend to set "vxi parameters" like confidencelevel / sensitivity / etc, you will have to set a new one called "recognitionmode" IN THE END and set its value as "speech". 3. Before loading each grammar, you will need to load the language for that grammar, if it is different from the default (That is "en-us" in vs/sproxy/cfg/mrcp.cfg). 4. If you have been setting vendor, specific properties through TAS until now, you will have to map them to those that can be used in MRCP. Workaround or alternative remediation Remarks Patch Notes The information in this section concerns the patch, if any, recommended in the Resolution above. Backup before applying the patch Download Patch install instructions Verification Failure Service-interrupting? No 2009 Avaya Inc. All Rights Reserved. Page 5

6 Patch uninstall instructions Security Notes The information in this section concerns the security risk, if any, represented by the topic of this PSN. Security risks Avaya Security Vulnerability Classification Not Susceptible Mitigation For additional support, contact your Authorized Service Provider. Depending on your coverage entitlements, additional support may incur charges. Support is provided per your warranty or service contract terms unless otherwise specified. Avaya Support Contact Telephone U.S. Remote Technical Services Enterprise U.S. Remote Technical Services Small Medium Enterprise U.S. Remote Technical Services BusinessPartners for Enterprise Product BusinessPartners for Small Medium Product Please contact your distributor. Canada Caribbean and Latin America Europe, Middle East, and Africa Asia Pacific Disclaimer: ALL INFORMATION IS BELIEVED TO BE CORRECT AT THE TIME OF PUBLICATION AND IS PROVIDED AS IS. AVAYA INC., ON BEHALF OF ITSELF AND ITS SUBSIDIARIES AND AFFILIATES (HEREINAFTER COLLECTIVELY REFERRED TO AS AVAYA ), DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE AND FURTHERMORE, AVAYA MAKES NO REPRESENTATIONS OR WARRANTIES THAT THE STEPS RECOMMENDED WILL ELIMINATE SECURITY OR VIRUS THREATS TO CUSTOMERS SYSTEMS. IN NO EVENT SHALL AVAYA BE LIABLE FOR ANY DAMAGES WHATSOEVER ARISING OUT OF OR IN CONNECTION WITH THE INFORMATION OR RECOMMENDED ACTIONS PROVIDED HEREIN, INCLUDING DIRECT, INDIRECT, CONSEQUENTIAL DAMAGES, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF AVAYA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. THE INFORMATION PROVIDED HERE DOES NOT AFFECT THE SUPPORT AGREEMENTS IN PLACE FOR AVAYA PRODUCTS. SUPPORT FOR AVAYA PRODUCTS CONTINUES TO BE EXECUTED AS PER EXISTING AGREEMENTS WITH AVAYA. All trademarks identified by or TM are registered trademarks or trademarks, respectively, of Avaya Inc. All other trademarks are the property of their respective owners Avaya Inc. All Rights Reserved. Page 6

Product Support Notice

Product Support Notice PSN # PSN003169u Product Support Notice 2011 Avaya Inc. All Rights Reserved. Original publication date: 4-Feb-11. This is Issue #02, published date: 17- Nov-11. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN003614u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 12-Apr-12. This is Issue #05, published date: 8- Severity/risk level High Urgency Immediately Feb-13.

More information

Product Support Notice

Product Support Notice PSN # PSN004088u Product Support Notice 2013 Avaya Inc. All Rights Reserved. iginal publication date: 18-Oct-13. This is issue #01, published date: 18-Oct-13. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN002704u Product Support Notice 2009 Avaya Inc. All Rights Reserved. Original publication date: 30-Nov-09. This is Issue #01, published date: 30-Nov-09. Severity/risk level Medium Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN020232u Product Support Notice 2016 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 18-Dec-15.

More information

Product Support Notice

Product Support Notice PSN # PSN027012u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 11-Feb-15.

More information

Product Support Notice

Product Support Notice PSN # PSN003109u Product Support Notice 2010 Avaya Inc. All Rights Reserved. Original publication date: 13-Dec-10. This is Issue # 1, published date: 13-Dec-10. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN003178u Product Support Notice 2011 Avaya Inc. All Rights Reserved. Original publication date: 15-Feb-11. This is Issue # 1, published date: 15- Severity/risk level High Urgency Immediately Feb-11.

More information

Product Support Notice

Product Support Notice PSN # PSN003993u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 17-Jun-13. This is Issue #01, published date: 17-Jun-13. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN003716u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 05-June-12. This is Issue #07, published date: 22-April-13. Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN027005u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 08-Oct-14.

More information

Product Support Notice

Product Support Notice PSN # PSN003851u Product Support Notice 2012 Avaya Inc. All Rights Reserved. Original publication date: 14-Dec-12. This is Issue #01, published date: 14-Dec-12. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN003171 Product Support Notice 2011 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 07-Mar-2011.

More information

Product Support Notice

Product Support Notice PSN # PSN004170u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 07-May-14. This is Issue #01, published date: 07-May-14. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN003205u Product Support Notice 2012 Avaya Inc. All Rights Reserved. Original publication date: 08-Mar-11. This is Issue #2, published date: 17- Severity/risk level Medium Urgency Immediately Apr-12.

More information

Product Support Notice

Product Support Notice Product Support Notice 2009 Avaya Inc. All Rights Reserved. PSN # PSN002354u Original publication date: 29-Apr-09. This is Issue # 01, published date: Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice Product Support Notice 2009 Avaya Inc. All Rights Reserved. PSN # PSN002461u Original publication date: 6-Jul-09. This is Issue # 01, published date: 6- Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice PSN # PSN003940u Product Support Notice 2013 Avaya Inc. All Rights Reserved. Original publication date: 03-Apr-13. This is Issue #01, published date: 03-Apr-13. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN020351u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 07-May-18.

More information

Product Support Notice

Product Support Notice Product Support Notice 2016 Avaya Inc. All Rights Reserved. PSN # PSN004991u Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 02-Dec-16.

More information

Product Support Notice

Product Support Notice PSN# PSN002369u Product Support Notice 2009 Avaya Inc. All Rights Reserved. Original publication date: 11-May-09. This is Issue #1, published 11-May- Severity/risk level High Urgency When convenient 09.

More information

Product Support Notice

Product Support Notice PSN # PSN004053u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 30-Aug-13. This is Issue #03, published date: 24-Jan-14. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN# PSN003312u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Original publication date: 09May11. This is Issue #59, published date: Severity High Urgency Immediately 13September2018 /risk

More information

Product Support Notice

Product Support Notice PSN # PSN020381u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 10-Dec-18.

More information

Product Support Notice

Product Support Notice PSN # PSN004730u Product Support Notice Original publication date: 19-May-16. This is Issue #01, published date: 20-May-16. Severity/ risk level Name of problem Avaya Aura Application Enablement (AE) Services

More information

Product Support Notice

Product Support Notice PSN # PSN027020u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 21-May-15.

More information

Product Support Notice

Product Support Notice PSN # PSN027026u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 18-Dec-15.

More information

Product Support Notice

Product Support Notice PSN # PSN004275u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 17-Sep-2014. This is Issue #01, published date: Severity/risk level Medium Urgency When convenient

More information

Product Support Notice

Product Support Notice PSN # PSN020361u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Avaya Proprietary Use pursuant to the terms of your signed agreement or company policy. Original publication date: 11-Oct-18.

More information

Product Support Notice

Product Support Notice PSN # PSN005110u Product Support Notice 2017 Avaya Inc. All Rights Reserved. Original publication date: 8 Dec. 2017. This is Issue #03, published date: 22 Dec. 2017 Severity/risk level High Urgency Immediately

More information

Product Support Notice

Product Support Notice PSN # PSN005154u Product Support Notice 2018 Avaya Inc. All Rights Reserved. Original publication date: 23 March 2018. This is Issue #02, published date: 13 April 2018. Severity/risk level High Urgency

More information

Windows Security Updates for August (MS MS06-051)

Windows Security Updates for August (MS MS06-051) Windows Security Updates for August 2006 - (MS06-040 - MS06-051) Original Release Date: August 8, 2006 Last Revised: November 22, 2006 Number: ASA-2006-154 Risk Level: High Advisory Version: 3.0 Advisory

More information

Service Pack Release Notes

Service Pack Release Notes SP # 4.1.2 Service Pack Release Notes Original publication date: 01-December-2008. This is Issue #1, published date: 01-December-2008. Target Products Converged Network Analyzer, version 4.0 and above

More information

Product Support Notice

Product Support Notice PSN # PSN004084u Product Support Notice 2014 Avaya Inc. All Rights Reserved. Original publication date: 06-Nov-13. This is Issue #03, published date: 10-Oct-14. Severity/risk level Medium Urgency When

More information

Product Support Notice

Product Support Notice PSN # PSN004435u Product Support Notice 2015 Avaya Inc. All Rights Reserved. Original publication date: 04-Mar-15. This is Issue #01, published date: 04-Mar-15. Severity/risk level Medium Urgency Immediately

More information

Product Correction Notice (PCN) Issue Date: December 19, 2008 Archive Date: NA Supplement 6 Date: June 7, 2010 PCN Number: 1655P

Product Correction Notice (PCN) Issue Date: December 19, 2008 Archive Date: NA Supplement 6 Date: June 7, 2010 PCN Number: 1655P Product Correction Notice (PCN) Issue Date: December 19, 2008 Archive Date: NA Supplement 6 Date: June 7, 2010 PCN Number: 1655P SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products

More information

Product Correction Notice (PCN) Issue Date: August 9, 2010 Archive Date: Not Applicable Supplement 3 Date: March 22, 2011 PCN Number: 1738P

Product Correction Notice (PCN) Issue Date: August 9, 2010 Archive Date: Not Applicable Supplement 3 Date: March 22, 2011 PCN Number: 1738P (PCN) Issue Date: August 9, 2010 Archive Date: Supplement 3 Date: March 22, 2011 PCN Number: 1738P SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: Avaya S8510

More information

Product Correction Notice (PCN) Issue Date: June 1, 2009 Archive Date: NA Supplement 5 date: February 1, 2010 PCN Number: 1685P

Product Correction Notice (PCN) Issue Date: June 1, 2009 Archive Date: NA Supplement 5 date: February 1, 2010 PCN Number: 1685P This PCN address issues with the following products and systems: Product Correction Notice (PCN) Issue Date: June 1, 2009 Archive Date: NA Supplement 5 date: February 1, 2010 PCN Number: 1685P SECTION

More information

Product Correction Notice (PCN)

Product Correction Notice (PCN) Product Correction Notice (PCN) Issue Date: April 13, 2009 Archive Date: April 30, 2011 PCN Number: 1678B SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: 1608

More information

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition

Nokia Intellisync Mobile Suite Client Guide. S60 Platform, 3rd Edition Nokia Intellisync Mobile Suite Client Guide S60 Platform, 3rd Edition Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync,

More information

Converged Network Analyzer Command Reference Guide Addendum

Converged Network Analyzer Command Reference Guide Addendum Converged Network Analyzer Command Reference Guide Addendum for the Converged Network Analyzer (CNA), Adaptive Path Controller-Enterprise (APC-E), Adaptive Path Controller-Internet (APC-I), and the CNA

More information

Product Support Notice

Product Support Notice Product Support Notice 2007 Avaya Inc. All Rights Reserved. PSN# PSN001471u Original publication date: 10-Aug-2007. This is Issue #2, published 14- Severity/risk level High Urgency Optional Nov-2007. Name

More information

Product Correction Notice (PCN)

Product Correction Notice (PCN) Product (PCN) Issue Date: February 06, 2009 Archive Date: February 28, 2010 PCN Number: 1675B SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: Proactive Contact

More information

Intellisync Mobile Suite Client Guide. S60 3rd Edition Platform

Intellisync Mobile Suite Client Guide. S60 3rd Edition Platform Intellisync Mobile Suite Client Guide S60 3rd Edition Platform Published July 2007 COPYRIGHT 2007 Nokia. All rights reserved. Rights reserved under the copyright laws of the United States. RESTRICTED RIGHTS

More information

Product Support Notice

Product Support Notice PSN # PSN004561u Product Support Notice 2017 Avaya Inc. All Rights Reserved. Original publication date: 25-Aug-15. This is Issue #07, published date: 14-Dec-17. Severity/risk level High Urgency Immediately

More information

Symantec Backup Exec System Recovery Granular Restore Option User's Guide

Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide Symantec Backup Exec System Recovery Granular Restore Option User's Guide The software described in this book is furnished under

More information

Product Correction Notice (PCN) Issue Date: February 1, 2008 Archive Date: NA PCN Number: 1632P

Product Correction Notice (PCN) Issue Date: February 1, 2008 Archive Date: NA PCN Number: 1632P Product Correction Notice (PCN) Issue Date: February 1, 2008 Archive Date: NA PCN Number: 1632P SECTION 1 - CUSTOMER NOTICE This PCN address issues with the following products and systems: MultiVantage

More information

Product Support Notice

Product Support Notice PSN # PSN004766u Product Support Notice Original publication date: 05-Jul-16. This is Issue #01, published date: 05-Jul-16. Name of problem Solaris Critical Patch Update R41 - April 2016 Products affected

More information

Avaya Groupware Edition for IBM Lotus Help

Avaya Groupware Edition for IBM Lotus Help Avaya Groupware Edition for IBM Lotus Help Table of Contents Welcome to Groupware Edition for IBM Lotus Help...4 Overview...5 What is Groupware Edition for IBM Lotus?...5 Where is Groupware Edition located

More information

Altiris Client Management Suite 7.1 from Symantec User Guide

Altiris Client Management Suite 7.1 from Symantec User Guide Altiris Client Management Suite 7.1 from Symantec User Guide Altiris Client Management Suite 7.1 from Symantec User Guide The software described in this book is furnished under a license agreement and

More information

Symantec Endpoint Protection Integration Component User's Guide. Version 7.0

Symantec Endpoint Protection Integration Component User's Guide. Version 7.0 Symantec Endpoint Protection Integration Component User's Guide Version 7.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms

More information

Application Notes for Nuance OpenSpeech Attendant with Avaya Voice Portal Issue 1.0

Application Notes for Nuance OpenSpeech Attendant with Avaya Voice Portal Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Nuance OpenSpeech Attendant with Avaya Voice Portal Issue 1.0 Abstract These Application Notes describe the configuration steps required

More information

Form. Settings, page 2 Element Data, page 7 Exit States, page 8 Audio Groups, page 9 Folder and Class Information, page 9 Events, page 10

Form. Settings, page 2 Element Data, page 7 Exit States, page 8 Audio Groups, page 9 Folder and Class Information, page 9 Events, page 10 The voice element is used to capture any input from the caller, based on application designer-specified grammars. The valid caller inputs can be specified either directly in the voice element settings

More information

Hardware and System Software Specification for Cisco Unified Customer Voice Portal 10.5(1)

Hardware and System Software Specification for Cisco Unified Customer Voice Portal 10.5(1) Hardware and System Software Specification for Cisco Unified Customer Voice Portal 10.5(1) First Published: 2014-06-18 Last Modified: 2016-04-07 Americas Headquarters Cisco Systems, Inc. 170 West Tasman

More information

Nokia Intrusion Prevention with Sourcefire. Appliance Quick Setup Guide

Nokia Intrusion Prevention with Sourcefire. Appliance Quick Setup Guide Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Part Number N450000567 Rev 001 Published September 2007 COPYRIGHT 2007 Nokia. All rights reserved. Rights reserved under the copyright

More information

Nokia Horizon Manager Release Notes. Version1.4 SP1

Nokia Horizon Manager Release Notes. Version1.4 SP1 Nokia Horizon Manager Release Notes Version1.4 SP1 Part No. N450000005 Rev 001 November 2005 Nokia Contact Information Corporate Headquarters Web Site Telephone http://www.nokia.com 1-888-477-4566 or 1-650-625-2000

More information

Symantec Enterprise Vault Technical Note

Symantec Enterprise Vault Technical Note Symantec Enterprise Vault Technical Note FSA Reporting deployment guidelines 8.0 Symantec Information Foundation Symantec Enterprise Vault: FSA Reporting deployment guidelines The software described in

More information

Symantec NetBackup Vault Operator's Guide

Symantec NetBackup Vault Operator's Guide Symantec NetBackup Vault Operator's Guide UNIX, Windows, and Linux Release 7.6 Symantec NetBackup Vault Operator's Guide The software described in this book is furnished under a license agreement and may

More information

Product Correction Notice (PCN) Original Issue Date: September 10, 2006 Archive Date: N/A Supplement 5 Issue Date: May 4, 2009 PCN Number: 1567P

Product Correction Notice (PCN) Original Issue Date: September 10, 2006 Archive Date: N/A Supplement 5 Issue Date: May 4, 2009 PCN Number: 1567P Product Correction Notice (PCN) Original Issue Date: September 10, 2006 Archive Date: N/A Supplement 5 Issue Date: May 4, 2009 PCN Number: 1567P SECTION 1 - CUSTOMER NOTICE This PCN address issues with

More information

Product Support Notice

Product Support Notice PSN # PSN004621u Product Support Notice 2016 Avaya Inc. All Rights Reserved. Original publication date: 22-Dec-2015. This is Issue #03, published date: Severity/risk level Medium Urgency When convenient

More information

Avaya VPN Client Software Release 10.05_100

Avaya VPN Client Software Release 10.05_100 Avaya VPN Client Software Release 10.05_100 1. Release Summary Release Date: September 1 st, 2011 Purpose: Software maintenance release to address customer requests and software issues. 2. Important Notes

More information

One Identity Quick Connect Express

One Identity Quick Connect Express One Identity Quick Connect Express for Active Directory 5.6.0 October 2017 These release notes provide information about the One Identity Quick Connect Express for Active Directory release. About New features

More information

Nokia Intellisync Mobile Suite Client Guide. Palm OS Platform

Nokia Intellisync Mobile Suite Client Guide. Palm OS Platform Nokia Intellisync Mobile Suite Client Guide Palm OS Platform Published May 2008 COPYRIGHT Copyright 1997-2008 Nokia Corporation. All rights reserved. Nokia, Nokia Connecting People, Intellisync, and Intellisync

More information

Product Correction Notice. Product Correction Notice (PCN)

Product Correction Notice. Product Correction Notice (PCN) (PCN) Issue Date: June 30 th, 2005 Archive Date: PCN Number: 1492P SECTION 1 - CUSTOMER NOTICE Impacted: DEFINITY ONE, IP600, and S8100 Media Servers. Description of PCN: This notice specifies embedded

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for LumenVox Automated Speech Recognizer, LumenVox Text-to-Speech Server and Call Progress Analysis with Avaya Aura Experience Portal Issue

More information

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8

Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide. Sourcefire Sensor on Nokia v4.8 Nokia Intrusion Prevention with Sourcefire Appliance Quick Setup Guide Sourcefire Sensor on Nokia v4.8 Part No. N450000774 Rev 001 Published September 2008 COPYRIGHT 2008 Nokia. All rights reserved. Rights

More information

Release Notes. BlackBerry Enterprise Identity

Release Notes. BlackBerry Enterprise Identity Release Notes BlackBerry Enterprise Identity Published: 2018-03-13 SWD-20180606100327990 Contents New in this release...4 Fixed issues...5 Known issues... 6 Legal notice...8 New in this release New in

More information

Symantec ServiceDesk 7.1 SP1 Implementation Guide

Symantec ServiceDesk 7.1 SP1 Implementation Guide Symantec ServiceDesk 7.1 SP1 Implementation Guide Symantec ServiceDesk 7.1 SP1 Implementation Guide The software described in this book is furnished under a license agreement and may be used only in accordance

More information

FX RFID READER SERIES Embedded SDK Sample Application

FX RFID READER SERIES Embedded SDK Sample Application FX RFID READER SERIES Embedded SDK Sample Application User Guide MN000539A01 FX RFID READER SERIES EMBEDDED SDK SAMPLE APPLICATIONS USER GUIDE MN000539A01 Revision A December 2017 Copyright 2017 ZIH Corp.

More information

Security Content Update Release Notes. Versions: CCS 11.1 and CCS 11.5

Security Content Update Release Notes. Versions: CCS 11.1 and CCS 11.5 Security Content Update 2016-1 Release Notes Versions: CCS 11.1 and CCS 11.5 SCU 2016-1 Release Notes for CCS 11.1 and CCS 11.5 Legal Notice Copyright 2016 Symantec Corporation. All rights reserved. Symantec,

More information

Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide

Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide 2 Symantec Enterprise Security Manager JRE Vulnerability Fix Update Guide The software described in this book is furnished under

More information

Configuring Symantec. device

Configuring Symantec. device Configuring Symantec AntiVirus for Hitachi File OS device Configuring Symantec AntiVirus for Hitachi File OS device The software described in this book is furnished under a license agreement and may be

More information

VClarity Voice Platform

VClarity Voice Platform VClarity Voice Platform VClarity L.L.C. Voice Platform Snap-in Functional Overview White Paper Technical Pre-release Version 2.0 for VClarity Voice Platform Updated February 12, 2007 Table of Contents

More information

SonicWall Mobile Connect for Chrome OS

SonicWall Mobile Connect for Chrome OS SonicWall Mobile Connect 5.0.1 for Chrome OS November 2017 These release notes provide information about the SonicWall release. Topics: About Supported Platforms New Features Resolved Issues Known Issues

More information

Configuring Symantec Protection Engine for Network Attached Storage for Hitachi Unified and NAS Platforms

Configuring Symantec Protection Engine for Network Attached Storage for Hitachi Unified and NAS Platforms Configuring Symantec Protection Engine for Network Attached Storage 7.0.1 for Hitachi Unified and NAS Platforms Configuring Symantec Protection Engine for Network Attached Storage 7.0.1 for Hitachi Unified

More information

Release Notes. BlackBerry UEM Client for Android Version

Release Notes. BlackBerry UEM Client for Android Version Release Notes BlackBerry UEM Client for Android Version 12.27.0.153083 Published: 2017-01-13 SWD-20170113121937594 Contents What's new...4 Fixed issues...5 Known issues... 6 Legal notice...7 What's new

More information

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint Server

Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint Server Veritas Storage Foundation and High Availability Solutions HA and Disaster Recovery Solutions Guide for Microsoft SharePoint Server Windows Server 2003, Windows Server 2008 5.1 Service Pack 1 Veritas Storage

More information

Symantec ApplicationHA Release Notes

Symantec ApplicationHA Release Notes Symantec ApplicationHA Release Notes Linux on KVM 6.0 December 2011 Symantec ApplicationHA Release Notes The software described in this book is furnished under a license agreement and may be used only

More information

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes

BlackBerry Enterprise Server for Microsoft Office 365. Version: 1.0 Maintenance Release: 1. Release Notes BlackBerry Enterprise Server for Microsoft Office 365 Version: 1.0 Maintenance Release: 1 Release Notes Published: 2013-07-18 SWD-20130718144837059 Contents 1 New in this release...4 2 Fixed issues...5

More information

Symantec Encryption Desktop Version 10.2 for Mac OS X Release Notes. About Symantec Encryption Desktop

Symantec Encryption Desktop Version 10.2 for Mac OS X Release Notes. About Symantec Encryption Desktop Symantec Encryption Desktop Version 10.2 for Mac OS X Release Notes Thank you for using this Symantec Corporation product. These Release Notes contain important information regarding this release of Encryption

More information

MySonicWall Secure Upgrade Plus

MySonicWall Secure Upgrade Plus June 2017 This guide describes how to upgrade a SonicWall or competitor appliance in MySonicWall using the Secure Upgrade Plus feature. Topics: About Secure Upgrade Plus Using Secure Upgrade Plus About

More information

NEXT GENERATION FIREWALL. Tested Products. Environment. SonicWall Security Value Map (SVM) JULY 11, 2017 Author Thomas Skybakmoen

NEXT GENERATION FIREWALL. Tested Products. Environment. SonicWall Security Value Map (SVM) JULY 11, 2017 Author Thomas Skybakmoen NEXT GENERATION FIREWALL SonicWall Security Value Map (SVM) JULY 11, 2017 Author Thomas Skybakmoen Tested Products NGFW Group Test: SonicWall NSA 6600 SonicOS Enhanced 6.2.5.10-70n Dynamic signature database

More information

PGP Viewer for ios. Administrator s Guide 1.0

PGP Viewer for ios. Administrator s Guide 1.0 PGP Viewer for ios Administrator s Guide 1.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Version 1.0.2.

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.3 Product release date: March 2018 Document edition: Second Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This document

More information

Daniel MeterLink Software v1.40

Daniel MeterLink Software v1.40 Quick Start Manual P/N 3-9000-763, Rev K June 2017 Daniel MeterLink Software v1.40 for Daniel Gas and Liquid Ultrasonic Flow Meters Software License Agreement PLEASE READ THIS SOFTWARE LICENSE AGREEMENT

More information

Sentinel EMS 4.1. Release Notes

Sentinel EMS 4.1. Release Notes Sentinel EMS 4.1 Release Notes Document Revision History Document Number: 007-013357-001 (Revision B), August 2016 Disclaimer and Copyrights All information herein is either public information or is the

More information

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. For Red Hat Enterprise Linux 5

Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark. For Red Hat Enterprise Linux 5 Symantec Enterprise Security Manager Baseline Policy Manual for CIS Benchmark For Red Hat Enterprise Linux 5 Symantec ESM Baseline Policy Manual for CIS Benchmark for Red Hat Enterprise Linux 5 The software

More information

One Identity Active Roles Diagnostic Tools 1.2.0

One Identity Active Roles Diagnostic Tools 1.2.0 1 One Identity Active Roles Diagnostic Tools 1.2.0 Release Notes October 2017 These release notes provide information about the One Identity Active Roles Diagnostic Tools release. About One Identity Active

More information

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018

Compatibility Matrix. Good Control and Good Proxy. June 4, 2018 Compatibility Matrix Good Control and Good Proxy June 4, 2018 Published: 2018-06-04 SWD-20180604161707961 Contents Introduction... 4 Legend... 4 Good Control server... 5 Operating system...5 Database server...5

More information

Product Correction Notice (PCN)

Product Correction Notice (PCN) Product Correction Notice (PCN) Issue Date: April 15, 2005 Archive Date: July 31, 2009 Supplement 2 Release Date: June 7, 2007 PCN Number: 1499P SECTION 1 - CUSTOMER NOTICE Product Impacted: S8300B MEDIA

More information

Security Content Update Release Notes for CCS 12.x

Security Content Update Release Notes for CCS 12.x Security Content Update 2018-1 Release Notes for CCS 12.x SCU 2018-1 Release Notes for CCS 12.0 Documentation version: 1.0 Legal Notice Copyright 2018 Symantec Corporation. All rights reserved. Symantec,

More information

About One Identity Quick Connect for Base Systems 2.4.0

About One Identity Quick Connect for Base Systems 2.4.0 One Identity Quick Connect for Base Systems 2.4.0 October 2018 These release notes provide information about the One Identity Quick Connect for Base Systems release. About New features Resolved issues

More information

A Sample Configuration for Nuance OpenSpeech Recognizer and Nuance Speechify Text-to-Speech Using Avaya Interactive Response - Issue 1.

A Sample Configuration for Nuance OpenSpeech Recognizer and Nuance Speechify Text-to-Speech Using Avaya Interactive Response - Issue 1. Avaya Solution & Interoperability Test Lab A Sample Configuration for Nuance OpenSpeech Recognizer and Nuance Speechify Text-to-Speech Using Avaya Interactive Response - Issue 1.0 Abstract These Application

More information

Veritas CommandCentral Enterprise Reporter Release Notes

Veritas CommandCentral Enterprise Reporter Release Notes Veritas CommandCentral Enterprise Reporter Release Notes for Microsoft Windows and Solaris 5.2 RU3 February 2012 CommandCentral Enterprise Reporter Release Notes The software described in this book is

More information

MDVR for the Blackberry

MDVR for the Blackberry MDVR for the Blackberry Instructions www.openeye.net OpenEye BlackBerry MDVR Software Manual (Ver1.09) Manual Edition 30156AC SEPTEMBER 2011 2000-2011, OPENEYE All Rights Reserved. No part of this documentation

More information

SAML SSO Okta Identity Provider 2

SAML SSO Okta Identity Provider 2 SAML SSO Okta Identity Provider SAML SSO Okta Identity Provider 2 Introduction 2 Configure Okta as Identity Provider 2 Enable SAML SSO on Unified Communications Applications 4 Test SSO on Okta 4 Revised:

More information

PGP Viewer for ios. User s Guide 1.0

PGP Viewer for ios. User s Guide 1.0 PGP Viewer for ios User s Guide 1.0 The software described in this book is furnished under a license agreement and may be used only in accordance with the terms of the agreement. Version 1.0.2. Last updated:

More information

Cisco Jabber for Android 10.5 Quick Start Guide

Cisco Jabber for Android 10.5 Quick Start Guide Cisco Jabber for Android 10.5 Quick Start Guide Revised: August 21, 2014, Cisco Jabber Welcome to Cisco Jabber. Use this guide to set up the app and use some key features. After setup, learn more by viewing

More information

Proficy* Historian OSI PI C OLLECTOR G UIDE. Version 6.0 June 2015

Proficy* Historian OSI PI C OLLECTOR G UIDE. Version 6.0 June 2015 Proficy* Historian OSI PI C OLLECTOR G UIDE Version 6.0 June 2015 Disclaimer of Warranties and Liability The information contained in this manual is believed to be accurate and reliable. However, GE Intelligent

More information