Professional Services. Desktop Wallboard. Programmer Guide. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions

Size: px
Start display at page:

Download "Professional Services. Desktop Wallboard. Programmer Guide. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions"

Transcription

1 Professional Services Desktop Wallboard Programmer Guide Release Avaya Inc. Proprietary Use Pursuant to Company Instructions

2 Copyright 2016 Avaya Inc. All Rights Reserved Printed in USA Notice While reasonable efforts were made to insure that the information in this document was complete and accurate at the time of printing, Avaya Inc. can assume no liability for any errors. Changes and corrections to the information in this document may be incorporated in future releases. Trademarks Adobe, Adobe Acrobat, and the Adobe logos are registered trademarks of Adobe Systems Inc. DEFINITY and the Avaya Inc. logotype are registered trademarks of Avaya Inc. Microsoft, DOS, and Windows are registered trademarks of Microsoft. All products and company names are trademarks or registered trademarks of their respective holders. Obtaining Products To learn more about Avaya Inc. products and services, access the Avaya web site Acknowledgement This document was prepared by Avaya Inc. Professional Services 1111 Freeport Parkway Coppell, TX

3 TABLE OF CONTENTS 1.0 OVERVIEW SYSTEM ARCHITECTURE ACTIVEX CONTROL ACCESSING THE CONTROL IN THE VISUAL BASIC IDE METHODS ADJUSTSPEED() ADJUSTSPEEDEX() ALIGNDATALEFT() BRINGWINDOWTOFRONT() CONNECT() DISCONNECT() GETMARQUEEDIRECTION() GETMARQUEESPEED() ISCONNECTED() VIEWCMSDATA() VIEWMESSAGES() VIEWOADATA() WRITETOLOG() EVENTS CMSMARQUEELOADED CMSMARQUEEUNLOADED CONFIGLOADED CONNECTED CUSTOMMARQUEELOADED CUSTOMMARQUEEUNLOADED DISCONNECTED ERROR MESSAGEMARQUEELOADED MESSAGEMARQUEEUNLOADED OAMARQUEELOADED OAMARQUEEUNLOADED RESIZED PROPERTIES DOCKEDEDGE ENCODING ISALWAYSONTOP ISDOCKED ISEXITENABLED ISLOGGINGENABLED SERVERIP SERVERPORT USERNAME ENUMERATIONS & TYPES ENCODINGTYPES Avaya Professional Services Page i

4 7.2 LOGGINGCATEGORY MARQUEESTATUS MARQUEETYPE SCREENEDGE SROLLDIRECTION SCROLLSPEED APPENDIX A - TROUBLESHOOTING APPENDIX B - LIST OF ACRONYMS Avaya Professional Services Page ii

5 LIST OF FIGURES Figure 1: DW Marquee Display... 1 Figure 2: System Architecture... 2 Figure 3: VB IDE New Project Dialog... 3 Figure 4: VB IDE Components Menu Item... 4 Figure 5: VB IDE Components Dialog... 5 Figure 6: VB IDE Components Dialog (2)... 5 Figure 7: VB IDE Component Toolbox... 6 Figure 8: DW Marquee Marquee Speed Dialog... 7 Figure 9: Current CMS Items Dialog Figure 10: Current Message Display Figure 11: Current OA Item Display Avaya Professional Services Page iii

6 LIST OF TABLES Table 1: Appendix A - Troubleshooting Table 2: Appendix B - Acronyms Avaya Professional Services Page iv

7 1.0 Overview Desktop Wallboard (DW) is a reporting solution that empowers agents by keeping them informed of contact center performance levels, bulletins, and instant notifications from administrators. The DW desktop solution features multiple scrolling marquees working together (Figure 1: DW Marquee Display) to display dynamic information gathered from multiple sources including Avaya Call Management System, Avaya Operational Analyst, and the DW database. Note: CMS and OA marquees are dependant on the optional CMS and OA server-side connector components. Figure 1: DW Marquee Display The CMS marquee provides agents with a data feed from the Call Management System (CMS). Data is retrieved directly from the CMS server through three near real-time custom reports (Agent, Skill, and VDN). As the reports are run, their output is pushed from the CMS to the DW server where it is stored in memory within the CMS Real-Time Collector service. Individual CMS marquees pull data from the DW server based on the CMS item configuration for the DW group that the agent belongs too. As the data is pulled from the DW server, it is checked against any configured thresholds that may exist. If the data exceeds a configured threshold, special threshold processing takes place. The OA marquee provides agents with a data feed from Operational Analyst (OA). OA data is retrieved from the OA server through the OA Data Export API. The DE API is used to setup a series of queries that are run against the Agent State, Agent Service Class, Service Class, and Service Class Summary tables. As the queries are run, their output is retrieved by the OA Real- Time Collector service and stored in memory. Individual OA marquees pull data from the DW server based on the OA item configuration for the DW group that the agent belongs too. As the data is pulled from the DW server, it is checked against any configured thresholds that may exist. If the data exceeds a configured threshold, special threshold processing takes place. The Message marquee provides a scrolling list of bulletins sent to agents by administrators. Bulletins are created using the web-based administration application, and they are stored within the DW database. The Message service is responsible for managing bulletins and pushing them to connected recipients. Additionally, agents can be sent instant notifications. Instant notifications are brief textual messages that are created through the web-based administration application. Instant notifications are sent directly to individual agents and are displayed as pop-up windows in the foreground of the agents desktop. Instant notifications are not stored within the system. Avaya Professional Services Page 1

8 2.0 System Architecture The following diagram depicts the Desktop Wallboard system architecture. Call Management System (CMS) Operational Analyst (OA) Data Export Servlet CLINT (Agent Report - Real Time) CLINT (Skill Report - Real Time) CLINT (VDN Report - Real Time) Time Table (Agent Report - Historical) Time Table (Skill Report - Historical) Time Table (VDN Report - Historical) RT-DSI HT-DSI TCP/IP HTTP/HTTPS Desktop Wallboard Server OA Real-Time Collector ADO.NET CMS Real-Time Collector ADO.NET.NET Remoting Database ADO.NET Message Server ADO.NET COM Interop DSI Web-Based Aministration (req. IIS &.NET Framework).NET Remoting Client Gateway HTTP TCP/IP LAN Workstation Workstation Workstation Workstation Figure 2: System Architecture Avaya Professional Services Page 2

9 3.0 ActiveX Control The core logic of the DW Marquee client application is contained in the ActiveX control DWMarqueeCtrl.ocx. The DW ActiveX control is available for use by integrators who want to include DW functionality in their custom software solutions. This document covers the properties and methods of the DW ActiveX control that integrators need to be familiar with in order to successfully incorporate DW functionality into custom software solutions. Note: Use of the DW administration web site, even in custom solutions, as it is the only mechanism for configuring the DW system. Note: All examples in this document were created in Visual Basic Accessing the Control in the Visual Basic IDE The following steps discuss how to access the DW Marquee ActiveX control from the Visual Basic 6 IDE. 1. Start Visual Basic 2. Open a new or existing project. Figure 3: VB IDE New Project Dialog Avaya Professional Services Page 3

10 3. Select Project Components This will bring up the Components dialog. Figure 4: VB IDE Components Menu Item Avaya Professional Services Page 4

11 Figure 5: VB IDE Components Dialog 4. Scroll down to Avaya Desktop Wallboard Marquee Control 4.0 and select it. Figure 6: VB IDE Components Dialog (2) 5. Select OK to apply the change an dismiss the dialog. Avaya Professional Services Page 5

12 6. The control should now be available in the Component Toolbox. Desktop Wallboard Marquee Control Figure 7: VB IDE Component Toolbox Note: When working with the ActiveX control you have direct responsibility for the visual width of the control, but you cannot change the visual height. The height of the control is dynamically managed based on the contents of the marquee. Avaya Professional Services Page 6

13 4.0 Methods 4.1 AdjustSpeed() DWMarquee.AdjustSpeed This function is used to display an embedded form for controlling the scroll speed of the marquee lines. This form can also be used to adjust the scrolling direction of the marquee. Figure 8: DW Marquee Marquee Speed Dialog Note: The lines available on the speed dialog are directly related to how the DW system is configured. For example, if the DW system does not include the optional CMS component, the CMS line will not be available in the speed dialog. Return Value: Example: This example shows how to allow the local user to adjust their marquee speed/direction by using a menu option created through the Visual Basic menu editor. Avaya Professional Services Page 7

14 Use a menu option to adjust the marquee speed/direction. Private Sub mnumarqueespeed_click() DWMarquee1.AdjustMarqueeSpeed End Sub DWMarquee.AdjustSpeedEx 4.2 AdjustSpeedEx() This function is used to programmatically adjust the speed of individual marquee lines Marquee A type definition that indicates which specific marquee to adjust (ex. CMS_MARQUEE, MESSAGE_MARQUEE, etc). Speed An enumeration that indicates the speed at which the marquee should scroll. Direction An enumeration that indicates which direction the specific marquee should scroll. Return Value: Example: Private Sub ChangeCMSSpeed DWMarquee1.AdjustMarqueeSpeedEx CMS_MARQUEE, MEDIUM, LEFT_TO_RIGHT End Sub 4.3 AlignDataLeft() DWMarquee.AlignDataLeft Avaya Professional Services Page 8

15 This function causes any data displayed in the marquee to reset itself with the leading edge of the first character aligned to the left edge of the marquee display. Return Value: Example: This example shows how to use a menu option to allow the user to left justify the data streams of the marquee. Align the marquees to the left margin. Private Sub mnurealign_click() DWMarquee1.AlignDataLeft End Sub DWMarquee.BringWindowToFront 4.4 BringWindowToFront() This function causes the marquee to be brought to the front of the Z-Order on the desktop. Return Value: Example: Pop the marquee to the front of other applications. Avaya Professional Services Page 9

16 Private Sub cmdpopmarquee_click() DWMarquee1.BringWindowToFront End Sub 4.5 Connect() DWMarquee.Connect ( ServerIP As String, ServerPort as Integer, Username as String, [UserPass as String] ) This function initiates an attempt to open a socket connection to the DW server. ServerIP as String This represents the IP address or hostname of the Desktop Wallboard server. ServerPort as Integer This represents the port number that the DW server is listening too for client connections. Username as String This is the users unique Desktop Wallboard username. UserPass as String (Optional) This is the users password as defined within the DW system. Return Value: MarqueeStatus.STATUS_OK on success. Note: Receiving STATUS_OK does not mean that you are connected to the server. It simply means that the action of opening the TCP socket and sending the connection request to the server were successful. Successfully completing the connection (being approved by the server) results in a Connected() event being raised on the marquee control. Example: This code shows an example of how to set up a connection request to the DW server. If the request fails, the example will check the type of error and display a message box as a result. Dim status As MarqueeStatus Dim serverip As String Avaya Professional Services Page 10

17 Dim serverport As Integer Dim username As String Dim userpass As String serverip = serverport = 5501 username = jdoe userpass = Start the marquee. status = DWMarquee1.Connect(serverIP, serverport, username, userpass) If (status <> STATUS_OK) Then If (status = STATUS_ERR_MISSING_REQUIRED_DATA) Then MsgBox Missing required data. Else MsgBox Failed to open the socket connection. End If End If DWMarquee.Disconnect 4.6 Disconnect() This function causes the marquee to terminate its connection with the DW server. Return Value: MarqueeStatus.STATUS_OK on success. Example: The following code snippet shows an example of how to shutdown the marquee from a host application. Notice the calls to IsConnected(). This function is used to determine if the marquee is actively connected to the server. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer) Cancel = True Avaya Professional Services Page 11

18 ' The only difference here is that if Windows is shutting down we don't prompt the user about whether they're ' sure they want to exit or not. If (UnloadMode = vbappwindows) Then If (DWMarquee1.IsConnected) Then DWMarquee1.Disconnect Cancel = False Else If (DWMarquee1.IsExitEnabled) Then If MsgBox( Are you sure you want to exit? ) = vbyes Then If (DWMarquee1.IsConnected) Then DWMarquee1.Disconnect Cancel = False End If End If End If End Sub 4.7 GetMarqueeDirection() DWMarquee.GetMarqueeDirection(marquee As MarqueeType) As ScrollDirection This function returns the ScrollDirection value for the specified marquee. Marquee The specific marquee type to query. Return Value: This function will return a value of type ScrollDirection indicating the direction that the specific marquee is scrolling. Example: Debug.Print DWMarquee1.GetMarqueeDirection(CMS_MARQUEE) 4.8 GetMarqueeSpeed() DWMarquee.GetMarqueeSpeed(marquee As MarqueeType) As ScrollSpeed Avaya Professional Services Page 12

19 This function returns the ScrollSpeed value for the specified marquee. Marquee The specific marquee type to query. Return Value: This function will return a value of type ScrollSpeed indicating the speed that the specific marquee is scrolling. Example: Debug.Print DWMarquee1.GetMarqueeSpeed(CMS_MARQUEE) DWMarquee.IsConnected 4.9 IsConnected() This function is called to determine if the marquee is actively connected to the Desktop Wallboard server. Return Value: A Boolean value indicating True if connected, False otherwise. Example: Check the connection status. Private Sub cmdcheckconnection_click() If DWMarquee1.IsConnected Then MsgBox We re connected! Else MsgBox We re not connected. Avaya Professional Services Page 13

20 End If End Sub 4.10 ViewCMSData() DWMarquee.ViewCMSData Calling this function will display the embedded CMS item dialog. Figure 9: Current CMS Items Dialog Return Value: Example: Avaya Professional Services Page 14

21 Pop the CMS item display. Private Sub cmdpopcmsdisplay_click() DWMarquee1.ViewCMSData End Sub DWMarquee.ViewMessages 4.11 ViewMessages() Calling this function will display the embedded message dialog. Figure 10: Current Message Display Return Value: Example: Pop the message display. Private Sub cmdpopmsgdisplay_click() DWMarquee1.ViewMessages End Sub 4.12 ViewOAData() Avaya Professional Services Page 15

22 DWMarquee.ViewOAData Calling this function will display the embedded OA item dialog. Figure 11: Current OA Item Display Return Value: Example: Pop the OA item display. Private Sub cmdpopoadisplay_click() DWMarquee1.ViewOAData End Sub 4.13 WriteToLog() DWMarquee.WriteToLog (msg As String, cat as LoggingCategory) Avaya Professional Services Page 16

23 This function is used to write a string to the log file. For this function to work logging must be enabled by setting the LoggingEnabled flag to 1 in the registry under HKEY_LOCAL_MACHINE\SOFTWARE\Avaya\DSI. msg as String Any string value. cat as LoggingCategory This enumeration represents the log level at which the string should be written (ex. LC_ERROR). Return Value: Example: Write an entry to the log file. Private Sub cmdwritetimestamp_click() DWMarquee1.WriteToLog Now, LoggingCategory.LC_INFO End Sub Avaya Professional Services Page 17

24 5.0 Events 5.1 CMSMarqueeLoaded This event is raised when the CMS-specific line within the OCX is created. 5.2 CMSMarqueeUnloaded This event is raised when the CMS-specific line within the OCX is removed. 5.3 ConfigLoaded This event is raised any time a new configuration is received from the server such as when the marquee is first started. In addition, any time an administrator makes a change to the configuration of a group all actively connected members of the group will receive the update, which in turn will fire this event on the control. 5.4 Connected This event is fired when the marquee receives a response from the DW server that it has been properly authenticated and is now ready to receive data. Avaya Professional Services Page 18

25 5.5 CustomMarqueeLoaded This event is not used. It is for future development. N/A 5.6 CustomMarqueeUnloaded This event is not used. It is for future development. N/A 5.7 Disconnected This event is fired when the connection to the DW server is closed. 5.8 Error This event is fired any time an error occurs within the control. Errors are most likely caused by issues with connectivity to the server. Avaya Professional Services Page 19

26 This event includes a MarqueeStatus parameter that can be queried to determine the cause of the error. 5.9 MessageMarqueeLoaded This event is raised when the message-specific line within the OCX is created MessageMarqueeUnloaded This event is raised when the message-specific line within the OCX is removed OAMarqueeLoaded This event is raised when the OA-specific line within the OCX is created OAMarqueeUnloaded This event is raised when the OA-specific line within the OCX is removed. Avaya Professional Services Page 20

27 5.13 Resized This event is raised anytime the marquees dimensions are changed. This is very important due to the automatic sizing of the marquees height based on its contents. You should use this event to determine when the host application should allocate more space for the marquee. Avaya Professional Services Page 21

28 6.0 Properties 6.1 DockedEdge DWMarquee.DockedEdge As ScreenEdge This property is used to determine which screen edge the marquee is configured to dock too. This property only applies if the marquee is configured for docking mode. If the marquee is configured to dock to a screen edge it is the responsibility of the host application to handle the docking behavior. Supported Values: The supported values are: ScreenEdge.BOTTOM_EDGE ScreenEdge.TOP_EDGE Access: Read-Only 6.2 Encoding DWMarquee.Encoding As EncodingTypes This property specifies the type of character encoding the marquee is configured to use. The character encoding is controlled by the EncodingType value in the registry under the key HKEY_LOCAL_MACHINE\SOFTWARE\Avaya\DSI. Supported Values: The supported values for this property are limited to: EncodingTypes.ASCII EncodingTypes.UTF8 Avaya Professional Services Page 22

29 Access: Read-Only 6.3 IsAlwaysOnTop DWMarquee.IsAlwaysOnTop As Boolean This property indicates whether the marquee is configured to be at the top of the Z-Order on the desktop. If the marquee is configured to be always-on-top, it is the responsibility of the host application to promote itself to the top of the Z-Order. Supported Values: The supported values for this property are: True False Access: Read-Only 6.4 IsDocked DWMarquee.IsDocked As Boolean This property indicates whether the marquee controls host application should dock itself to the screen edge. Supported Values: The supported values for this property are: True Avaya Professional Services Page 23

30 False Access: Read-Only 6.5 IsExitEnabled DWMarquee.IsExitEnabled As Boolean This property indicates whether the marquees host application should support allowing the agent to terminate the application. Supported Values: The supported values for this property are: True False Access: Read-Only 6.6 IsLoggingEnabled DWMarquee.IsExitEnabled As Boolean This property indicates whether logging has been enabled for the marquee. Note: Enabling logging requires a registry change on the agents PC. Supported Values: The supported values for this property are: Avaya Professional Services Page 24

31 True False Access: Read-Only 6.7 ServerIP DWMarquee.ServerIP As String This property contains the value of the ServerIP parameter used in the call to the Connect() method. Supported Values: Any string value. Access: Read-Only Note: This property can only be set through a call to the Connect() method. DWMarquee.ServerPort As Integer 6.8 ServerPort This property contains the value of the ServerPort parameter used in the call to the Connect() method. Supported Values: Any integer value. Avaya Professional Services Page 25

32 Access: Read-Only Note: This property can only be set through a call to the Connect() method. DWMarquee.Username As String 6.9 Username This property contains the value of the Username parameter used in the call to the Connect() method. Supported Values: Any string value. Access: Read-Only Note: This property can only be set through a call to the Connect() method. Note: The marquee control does not include a property for the user password due to security concerns. Avaya Professional Services Page 26

33 7.0 Enumerations & Types 7.1 EncodingTypes This enumeration is used when determining which character encoding the marquee uses for sending data to the server. Values: ET_ASCII ET_UTF8 7.2 LoggingCategory This enumeration is used when writing an entry to the log file. Values: LC_INFO LC_WARNING LC_ERROR 7.3 MarqueeStatus This enumeration covers all possible errors that may occur in the control. Values: STATUS_OK No errors STATUS_ERR_NOT_CONNECTED The marquee is not connected to the server. Avaya Professional Services Page 27

34 STATUS_ERR_MISSING_REQUIRED_DATA A required value (ex. Username) was missing from the call to Connect(). STATUS_ERR_BUSY_SENDING_DATA An attempt was made to send data out on the socket, but the socket is already sending data. STATUS_ERR_HOST_NOT_FOUND Could not find the specified DW server. STATUS_ERR_CONNECT_ABORTED The socket connection attempt was aborted. STATUS_ERR_CONNECT_REFUSED The connection attempt was forcefully refused. STATUS_ERR_NETWORK_SUBSYSTEM_FAILED A problem was encountered in the network subsystem. This could be caused by the NIC, the network driver, the Ethernet cable, STATUS_ERR_NETWORK_UNREACHABLE No connection to the network is available. This could be caused by the NIC being disabled or by the Ethernet cable being unplugged, STATUS_ERR_TIMEDOUT No response was received within the socket timeout interval. STATUS_ERR_SOCKET_SHUTDOWN An attempt was made to perform an action on the socket after the socket was already terminated. STATUS_ERR_NONRECOVERABLE A system error occurred from which the marquees network interface cannot recover. STATUS_ERR_NET_RESET A reset event was received from the network. Avaya Professional Services Page 28

35 STATUS_ERR_CONNECTION_RESET The connection with the DW server was reset. STATUS_ERR_MARQUEE_DESIGN An error was encountered while processing the group configuration information. The group configuration may be corrupt. STATUS_ERR_UNKNOWN An unknown error was encountered. 7.4 MarqueeType This enumeration is used to represent the type of marquee line. Values: CMS_MARQUEE CUSTOM_MARQUEE MESSAGE_MARQUEE OA_MARQUEE STATUS_MARQUEE 7.5 ScreenEdge This enumeration is used to represent which screen edge the marquee is configured to dock too. Values: TOP_EDGE BOTTOM_EDGE 7.6 SrollDirection This enumeration is used to represent the direction that a marquee is scrolling. Avaya Professional Services Page 29

36 Values: LEFT_TO_RIGHT RIGHT_TO_LEFT 7.7 ScrollSpeed This enumeration is used to represent the speed which a particular marquee is scrolling. Values: FAST MEDIUM SLOW STOPPED Avaya Professional Services Page 30

37 Appendix A - Troubleshooting Error Cause Solution Table 1: Appendix A - Troubleshooting Avaya Professional Services Page 31

38 Appendix B - List of Acronyms Acronym CLR CMS CMSRTC DSI DW IN MDAC OA SCM Description Common Language Runtime Call Management System CMS Real-Time Collector Desktop Statistics Integration Desktop Wallboard Instant Notification Microsoft Data Access Components Operational Analyst Service Control Manager Table 2: Appendix B - Acronyms Avaya Professional Services Page 32

Professional Services. Desktop Wallboard. LDAP Migration. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions

Professional Services. Desktop Wallboard. LDAP Migration. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions Professional Services Desktop Wallboard LDAP Migration Release 6.3.2 2017 Avaya Inc. Proprietary Use Pursuant to Company Instructions Copyright 2017 Avaya Inc. All Rights Reserved Printed in USA Notice

More information

Professional Services. Desktop Wallboard. Release Notes. Release Notes Avaya Inc. Proprietary Use Pursuant to Company Instructions

Professional Services. Desktop Wallboard. Release Notes. Release Notes Avaya Inc. Proprietary Use Pursuant to Company Instructions Professional Services Desktop Wallboard Release Notes Release Notes 6.1 2016 Avaya Inc. Proprietary Use Pursuant to Company Instructions Copyright 2016 Avaya Inc. All Rights Reserved Printed in USA Notice

More information

Professional Services. Desktop Wallboard. Administration User Guide. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions

Professional Services. Desktop Wallboard. Administration User Guide. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions Professional Services Desktop Wallboard Administration User Guide Release 6.1 2016 Avaya Inc. Proprietary Use Pursuant to Company Instructions Copyright 2016 Avaya Inc. All Rights Reserved Printed in USA

More information

Professional Services. Desktop Wallboard. Installation & Configuration. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions

Professional Services. Desktop Wallboard. Installation & Configuration. Release Avaya Inc. Proprietary Use Pursuant to Company Instructions Professional Services Desktop Wallboard Installation & Configuration Release 6.2 2016 Avaya Inc. Proprietary Use Pursuant to Company Instructions Copyright 2016 Avaya Inc. All Rights Reserved Printed in

More information

Application Notes for Integrating Vitel Software s Ivize Reporting Package with Avaya Communication Manager - Issue 1.0

Application Notes for Integrating Vitel Software s Ivize Reporting Package with Avaya Communication Manager - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Integrating Vitel Software s Ivize Reporting Package with Avaya Communication Manager - Issue 1.0 Abstract These Application Notes describe

More information

Application Notes for Integrating Vitel Ivize with Avaya Modular Messaging - Issue 1.0

Application Notes for Integrating Vitel Ivize with Avaya Modular Messaging - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Integrating Vitel Ivize with Avaya Modular Messaging - Issue 1.0 Abstract These Application Notes describe the configuration steps for integrating

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Inova LightLink Middleware with Avaya Aura Communication Manager and Avaya Call Management System using Inova Historical Interface Issue

More information

Lab IP Addresses and Network Communication

Lab IP Addresses and Network Communication Lab 3.5.2 IP Addresses and Network Communication Objectives Build a simple peer-to-peer network and verify physical connectivity. Assign various IP addresses to hosts and observe the effects on network

More information

SET-UP INSTRUCTIONS. How can the DB9000-TX be used as an Icecast Source Client, sending audio to DB9000-RX decoder used as an Icecast Source Server

SET-UP INSTRUCTIONS. How can the DB9000-TX be used as an Icecast Source Client, sending audio to DB9000-RX decoder used as an Icecast Source Server SET-UP INSTRUCTIONS How can the DB9000-TX be used as an Icecast Source Client, sending audio to DB9000-RX decoder used as an Icecast Source Server Publish Date: 24-Feb-2017 Contents General information...

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for Inova LightLink Middleware with Avaya Aura Communication Manager and Avaya Call Management System using Real-Time Socket Interface Issue

More information

ICM-to-ICM Gateway User Guide for Cisco Unified ICM Enterprise and Hosted Release 9.0(1)

ICM-to-ICM Gateway User Guide for Cisco Unified ICM Enterprise and Hosted Release 9.0(1) ICM-to-ICM Gateway User Guide for Cisco Unified ICM Enterprise and Hosted Release 9.0(1) First Published: June 15, 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706

More information

CA Service Desk Integration with Remote Support

CA Service Desk Integration with Remote Support CA Service Desk Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the

More information

PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000. User Manual. Version 1.3

PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000. User Manual. Version 1.3 PROMISE ARRAY MANAGEMENT ( PAM) FOR FastTrak S150 TX2plus, S150 TX4 and TX4000 User Manual Version 1.3 Promise Array Management Copyright 2003 Promise Technology, Inc. All Rights Reserved. Copyright by

More information

Install and Configure the TS Agent

Install and Configure the TS Agent Install or Upgrade the TS Agent, page 1 Start the TS Agent Configuration Interface, page 2 Configure the TS Agent, page 2 Creating the REST VDI Role, page 7 Install or Upgrade the TS Agent Before You Begin

More information

Upgrading from Call Center Reporting to

Upgrading from Call Center Reporting to Upgrading from Call Center Reporting to Reporting for Call Center Upgrade Document Reporting for Call Center Release 2.2.1xx Document Number: 200-0400-110 Document Status: Standard Document Version: 3.02

More information

The first step you should take in order to be able to use the system is accessing our web page. Follow these steps to gain access to the system:

The first step you should take in order to be able to use the system is accessing our web page. Follow these steps to gain access to the system: User s Manual A. Requirements ASI on-line has been develop to be use with Microsoft Internet Explorer 5 or latter. You can download the latest version of the browser by logging into http://www.microsoft.com/downloads/search.asp

More information

User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer

User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer Version 1.3 TABLE OF CONTENTS INTRODUCTION... 1 INSTALLATION GUIDE... 4

More information

SAP Business Communications Management (BCM) Release Notes 7.0 SP04 Patch 1 ( )

SAP Business Communications Management (BCM) Release Notes 7.0 SP04 Patch 1 ( ) SAP Business Communications Management (BCM) Release Notes 7.0 SP04 Patch 1 (7.0.4.100) TABLE OF CONTENTS 1 INTRODUCTION... 3 2 FUNCTIONAL CHANGES... 4 3 CORRECTED DEFECTS... 5 2 1 INTRODUCTION This document

More information

TSS-7/TSS-10 7" and 10.1" Room Scheduling Touch Screens

TSS-7/TSS-10 7 and 10.1 Room Scheduling Touch Screens TSS-7/TSS-10 7" and 10.1" Room Scheduling Touch Screens Supplemental Guide Crestron Electronics, Inc. Crestron product development software is licensed to Crestron dealers and Crestron Service Providers

More information

READ ME FIRST. Windows NT. *DSL Equipment Installation Guide: Efficient Networks 5260

READ ME FIRST. Windows NT. *DSL Equipment Installation Guide: Efficient Networks 5260 READ ME FIRST Windows NT *DSL Equipment Installation Guide: Efficient Networks 5260 *Digital Subscriber Line Part Number: 5260NT02A Version 1.2-A. Table of Contents Follow Steps 1 through 8 to complete

More information

Reinstalling the Operating System on the Dell PowerVault 745N

Reinstalling the Operating System on the Dell PowerVault 745N Reinstalling the Operating System on the Dell PowerVault 745N This document details the following steps to reinstall the operating system on a PowerVault 745N system: 1. Install the Reinstallation Console

More information

Application Notes for Pipkins Vantage Point with Avaya Call Management System Issue 1.0

Application Notes for Pipkins Vantage Point with Avaya Call Management System Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Pipkins Vantage Point with Avaya Call Management System Issue 1.0 Abstract These Application Notes describe the configuration steps required

More information

Camera Firmware or (5.50 fixes security vulnerability introduced in 5.20) Document Revision Date: 07/15/2016

Camera Firmware or (5.50 fixes security vulnerability introduced in 5.20) Document Revision Date: 07/15/2016 Manufacturer: Model Number(s): Axis P3301 Integration Note Minimum Core Module Version: g! 6.1.34 Comments: Camera Firmware 5.11.1 or 5.50.4.4 (5.50 fixes security vulnerability introduced in 5.20) Document

More information

READ ME FIRST Windows 95/98/Me/2000

READ ME FIRST Windows 95/98/Me/2000 READ ME FIRST Windows 95/98/Me/2000 *DSL Equipment Installation Guide: Efficient Networks 5260 *Digital Subscriber Line Part Number: 52609X02 Version 1.2 Table of Contents Follow Steps 1 through 8 to complete

More information

Sample Avaya Interaction Center (IC) 6.1 SoftDialer Outbound Contact Configuration - Issue 1.0

Sample Avaya Interaction Center (IC) 6.1 SoftDialer Outbound Contact Configuration - Issue 1.0 Avaya Solution and Interoperability Test Lab Sample Avaya Interaction Center (IC) 6.1 SoftDialer Outbound Contact Configuration - Issue 1.0 Abstract These Application Notes describe how to configure the

More information

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center

Reporting for Contact Center Setup and Operations Guide. BCM Contact Center Reporting for Contact Center Setup and Operations Guide BCM Contact Center Document Number: Document Status: Standard Document Version: 05.01 Date: September 2006 Copyright 2005 2006 Nortel Networks, All

More information

Mbx.Net Help Mbx.Net Configuration Editor

Mbx.Net Help Mbx.Net Configuration Editor Mbx.Net Help Mbx.Net Configuration Editor Version 1 Version 1 MBX.NET CONFIGURATION EDITOR HELP Copyright 1994-2017, Cyberlogic Technologies Inc. All rights reserved. This document and its contents are

More information

Using the SSM Administration Console

Using the SSM Administration Console CHAPTER 6 Your user role controls whether you can access the SSM Administration Console. The following information is included in this section: SSM Administration Console Overview, page 6-1 Launching the

More information

Browser Configuration Reference

Browser Configuration Reference Sitecore CMS 7.0 or later Browser Configuration Reference Rev: 2013-09-30 Sitecore CMS 7.0 or later Browser Configuration Reference Optimizing Internet Explorer and other web browsers to work with Sitecore

More information

Data Server for PC5200 as Remote Terminal V1.00 9/22/05

Data Server for PC5200 as Remote Terminal V1.00 9/22/05 Data Server for PC5200 as Remote Terminal V1.00 9/22/05 Mirador Software, Inc. 1040 West End Blvd. Winston-Salem, NC 27101 Telephone: 770-850-9100 / FAX: 770-881-7958 Website: http://www.pc8800.com Copyright

More information

IBM Tivoli Storage Manager HSM for Windows Version 7.1. Messages

IBM Tivoli Storage Manager HSM for Windows Version 7.1. Messages IBM Tivoli Storage Manager HSM for Windows Version 7.1 Messages IBM Tivoli Storage Manager HSM for Windows Version 7.1 Messages Note: Before using this information and the product it supports, read the

More information

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Introduction Among the many new features of PATROL version 3.3, is support for Microsoft s Component Object Model (COM).

More information

Reno A & E, 4655 Aircenter Circle, Reno, NV (775) Release Date: February 5, 2008 All Reno A&E monitors. All versions of RaeComM.

Reno A & E, 4655 Aircenter Circle, Reno, NV (775) Release Date: February 5, 2008 All Reno A&E monitors. All versions of RaeComM. Product: RaeComM Title: RaeComM Basics Release Date: February 5, 2008 Scope: All Reno A&E monitors. All versions of RaeComM. Installing RaeComM The most current version of RaeComM software is available

More information

Chapter 10 - Configure ASA Basic Settings and Firewall using ASDM

Chapter 10 - Configure ASA Basic Settings and Firewall using ASDM Chapter 10 - Configure ASA Basic Settings and Firewall using ASDM This lab has been updated for use on NETLAB+ Topology Note: ISR G1 devices use FastEthernet interfaces instead of GigabitEthernet interfaces.

More information

UltraMon HSPI User s Guide A HomeSeer HS2 plug-in to monitor network connected devices

UltraMon HSPI User s Guide A HomeSeer HS2 plug-in to monitor network connected devices UltraMon HSPI User s Guide A HomeSeer HS2 plug-in to monitor network connected devices Copyright 2012 ultrajones@hotmail.com Revised 12/23/2012 This document contains proprietary and copyrighted information

More information

AVE DR16X / AVE DR8X Quick Installation Guide

AVE DR16X / AVE DR8X Quick Installation Guide AVE DR16X / AVE DR8X Quick Installation Guide Package Content Inspect the packaging carton. Make sure your AVE DR16X / AVE DR8X is properly delivered. Remove all items from the box and make sure the box

More information

Application Notes for Calabrio Workforce Management with Avaya Call Management System R18 Issue 1.0

Application Notes for Calabrio Workforce Management with Avaya Call Management System R18 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Calabrio Workforce Management with Avaya Call Management System R18 Issue 1.0 Abstract These Application Notes describe the configuration

More information

Installing and Configuring the TS Agent

Installing and Configuring the TS Agent Installing the TS Agent, page 1 Starting the TS Agent Configuration Interface, page 2 Configuring the TS Agent, page 2 Creating the REST VDI Role, page 7 Installing the TS Agent Before You Begin Confirm

More information

BCPro Installation Instructions Code No. LIT Software Release 3.0 Issued September 2017

BCPro Installation Instructions Code No. LIT Software Release 3.0 Issued September 2017 Code No. LIT-12011910 Software Release 3.0 Issued September 2017 Welcome...2 Summary of Changes...2 Related Documentation...2 Installation Overview...2 Prerequisite Software Checklist for Installation

More information

Unified Communicator Advanced

Unified Communicator Advanced MITEL Unified Communicator Advanced UC Advanced Mobile for BlackBerry User Guide NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel

More information

User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer

User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer User s Manual PowerPanel Shutdown Service Graceful Shutdown and Notification service to ensure power protection of your computer K01-SNMP004-00 TABLE OF CONTENTS INTRODUCTION... 1 INSTALLATION GUIDE...

More information

HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide

HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide HP Intelligent Management Center Branch Intelligent Management System (BIMS) User Guide Abstract This guide contains basic information for network administrators, engineers, and operators who use the Branch

More information

Application Notes for Symon Enterprise Server with Avaya Call Management System R17.0.x Issue 1.0

Application Notes for Symon Enterprise Server with Avaya Call Management System R17.0.x Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Symon Enterprise Server with Avaya Call Management System R17.0.x Issue 1.0 Abstract These Application Notes describe the configuration

More information

Setting Up a Remote Connection

Setting Up a Remote Connection 5 Setting Up a Remote Connection Preparing for Connection Setup Connecting the Internal Modem Connecting to an Internet Service Provider (ISP) Configuring a Remote Access Server (RAS) Sending and Receiving

More information

Legal Notes. Regarding Trademarks KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Application Notes for Inova LightLink with Avaya Communication Manager using Avaya Call Management System - Issue 1.0

Application Notes for Inova LightLink with Avaya Communication Manager using Avaya Call Management System - Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Inova LightLink with Avaya Communication Manager using Avaya Call Management System - Issue 1.0 Abstract These Application Notes describe

More information

About the SPECTRUM Control Panel

About the SPECTRUM Control Panel About the SPECTRUM Control Panel The SPECTRUM Control Panel is a convenient Point and Click interface that provides facilities that let you configure SPECTRUM resources, start and stop SpectroSERVER, start

More information

Application Notes for InteractCRM ThinConnect 2.0 with Avaya Interaction Center 7.2 Issue 1.0

Application Notes for InteractCRM ThinConnect 2.0 with Avaya Interaction Center 7.2 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for InteractCRM ThinConnect 2.0 with Avaya Interaction Center 7.2 Issue 1.0 Abstract These Application Notes describe the configuration steps

More information

Metastorm BPM Release 7.6

Metastorm BPM Release 7.6 Metastorm BPM Release 7.6 Administration Guide May 2008 Metastorm Inc. email: inquiries@metastorm.com http://www.metastorm.com Metastorm BPM Release 7.6 Copyrights and Trademarks 1996-2008 Metastorm Inc.

More information

Lab 2.8.1: Basic Static Route Configuration

Lab 2.8.1: Basic Static Route Configuration Topology Diagram Addressing Table Device Interface IP Address Subnet Mask Default Gateway R1 Fa0/0 172.16.3.1 255.255.255.0 N/A S0/0/0 172.16.2.1 255.255.255.0 N/A Fa0/0 172.16.1.1 255.255.255.0 N/A R2

More information

FieldView. Management Suite

FieldView. Management Suite FieldView The FieldView Management Suite (FMS) system allows administrators to view the status of remote FieldView System endpoints, create and apply system configurations, and manage and apply remote

More information

Configure the Catalyst Express 500 Switch with Cisco Network Assistant

Configure the Catalyst Express 500 Switch with Cisco Network Assistant Cisco SMB Support Assistant Cisco Profile Contacts & Feedback Help Configure the Catalyst Express 500 Switch with Cisco Network Assistant Home > Work With My Switches > Cisco Catalyst Switches > Configure

More information

READ ME FIRST Windows 95/98/Me/2000

READ ME FIRST Windows 95/98/Me/2000 READ ME FIRST Windows 95/98/Me/2000 *DSL Equipment Installation Guide: Efficient Networks 5260 *Digital Subscriber Line Part Number: 52609x02 Version 1.2-A Table of Contents Follow Steps 1 through 8 to

More information

Storage Center. Enterprise Manager 5.5. Installation and Setup Guide

Storage Center. Enterprise Manager 5.5. Installation and Setup Guide Storage Center Enterprise Manager 5.5 Installation and Setup Guide Enterprise Manager 5.5 Installation and Setup Guide 680-028-010 Revision Date Description A March 2011 Initial release. B April 2011 Updated

More information

Display Manager Version 1.0

Display Manager Version 1.0 Introduction Basics Adjustments and Controls Troubleshooting Appendix Display Management Utility Software Display Manager Version 1.0 For Windows Operation Manual Please read this operation manual carefully

More information

Two factor authentication for Microsoft Remote Desktop Web Access

Two factor authentication for Microsoft Remote Desktop Web Access Two factor authentication for Microsoft Remote Desktop Web Access logintc.com/docs/connectors/rd-web-access.html Overview The LoginTC RD Web Access Connector protects access to your Microsoft Remote Desktop

More information

Install and Configure the TS Agent

Install and Configure the TS Agent Install the TS Agent, page 1 Start the TS Agent Configuration Interface, page 2 Configure the TS Agent, page 2 Creating the REST VDI Role, page 7 Install the TS Agent Before You Begin Confirm that the

More information

3.1. Administrator s Guide TNT SOFTWARE. ELM Log Manager. Version

3.1. Administrator s Guide TNT SOFTWARE. ELM Log Manager. Version Version 3.1 TNT SOFTWARE ELM Log Manager Administrator s Guide TNT SOFTWARE ELM Log Manager 3.1 Administrator s Guide Copyright 1997-2003 TNT Software All Rights Reserved 2001 Main Street Vancouver, WA

More information

Network Guide NPD EN

Network Guide NPD EN NPD5659-00 EN Copyright and Trademarks No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, mechanical, photocopying, recording, or otherwise,

More information

NUBIX H.264 DVR Setup Guide

NUBIX H.264 DVR Setup Guide Package Content NUBIX H.264 DVR Setup Guide Inspect the packaging carton. Make sure the NUBIX H.264 DVR is properly delivered. Remove all items from the box and make sure the box contains the following

More information

Trademark and Copyrights

Trademark and Copyrights Trademark and Copyrights Océ Imagistics is a registered trademark of Océ Imagistics Inc. The Océ Imagistics logo is a registered trademark of Océ Imagistics International Inc. Microsoft, Windows, Windows

More information

OUTDOOR IR NETWORK CAMERA Series

OUTDOOR IR NETWORK CAMERA Series OUTDOOR IR NETWORK CAMERA Series INSTALLATION GUIDE Please read instructions thoroughly before operation and retain it for future reference. 1. OVERVIEW 1.1 Package Content Network camera Installation

More information

Configuring Communication Services

Configuring Communication Services This chapter includes the following sections: Configuring HTTP, on page 1 Configuring SSH, on page 2 Configuring XML API, on page 3 Enabling Redfish, on page 3 Configuring IPMI, on page 4 Configuring SNMP,

More information

UltraMon3 HSPI User s Guide A HomeSeer HS3 plug-in to monitor network connected devices

UltraMon3 HSPI User s Guide A HomeSeer HS3 plug-in to monitor network connected devices UltraMon3 HSPI User s Guide A HomeSeer HS3 plug-in to monitor network connected devices Copyright 2016 ultrajones@hotmail.com Revised 04/12/2016 This document contains proprietary and copyrighted information

More information

Cisco Craft Works Interface Quick Start Guide Cisco IOS XR Software Release 3.2 1

Cisco Craft Works Interface Quick Start Guide Cisco IOS XR Software Release 3.2 1 Quick Start Guide Cisco Craft Works Interface Quick Start Guide Cisco IOS XR Software Release 3.2 1 Introduction 2 About the CWI 3 Getting Started 4 Setting Up the Router and CWI Client 5 Getting Started

More information

PART NO: FB-510-AG-01. Action Request System 5.1 Flashboards Administrator s Guide

PART NO: FB-510-AG-01. Action Request System 5.1 Flashboards Administrator s Guide PART NO: FB-510-AG-01 Action Request System 5.1 Flashboards Administrator s Guide Copyright 1996 2002 Peregrine Remedy, Inc. All rights reserved. Information contained in this document is proprietary to

More information

F5 WANJet 200. Quick Start Guide. Quick Start Overview

F5 WANJet 200. Quick Start Guide. Quick Start Overview F5 WANJet 200 Quick Start Guide Quick Start Overview Following is a high level overview of the steps required to successfully install and configure your F5 WANJet 200 appliance. For detailed instructions

More information

Ciphermail Webmail Messenger Administration Guide

Ciphermail Webmail Messenger Administration Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail Webmail Messenger Administration Guide October 27, 2017, Rev: 8630 Copyright 2013-2017, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Admin login

More information

3.1. Administrator s Guide TNT SOFTWARE. ELM Enterprise Manager. Version

3.1. Administrator s Guide TNT SOFTWARE. ELM Enterprise Manager. Version Version 3.1 TNT SOFTWARE ELM Enterprise Manager Administrator s Guide TNT SOFTWARE ELM Enterprise Manager 3.1 Administrator s Guide Copyright 1997-2003 TNT Software All Rights Reserved 2001 Main Street

More information

Sage Installation and System Administrator s Guide. October 2016

Sage Installation and System Administrator s Guide. October 2016 Sage 100 2017 Installation and System Administrator s Guide October 2016 2016 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein

More information

The following sections describe the various menu options.

The following sections describe the various menu options. The Tools menu of the Unified CCX Administration web interface provides access to system tools you can use to perform a variety of administrative tasks and contains the following menu options: Plug-ins

More information

Sage Installation and System Administrator s Guide. March 2019

Sage Installation and System Administrator s Guide. March 2019 Sage 100 2019 Installation and System Administrator s Guide March 2019 2019 The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein

More information

How to Create a MindManager Add-in With Visual Studio in 7 Steps

How to Create a MindManager Add-in With Visual Studio in 7 Steps How to Create a MindManager Add-in With Visual Studio in 7 Steps Prerequisites: MindManager 7, 8 or 9 installed Visual Studio 2005, 2008 or 2010 installed Step One The first thing to do is download this

More information

3Com exchange Call Center Agent User Guide

3Com exchange Call Center Agent User Guide 3Com exchange Call Center Agent User Guide Version 4.33 http://www.3com.com Part Number: 900-0147-01 Rev AA Published May 2004 3Com Corporation, 350 Campus Drive, Marlborough MA 01752-3064 Copyright 2004,

More information

ExpressCluster X SingleServerSafe 3.2 for Windows. Operation Guide. 2/19/2014 1st Edition

ExpressCluster X SingleServerSafe 3.2 for Windows. Operation Guide. 2/19/2014 1st Edition ExpressCluster X SingleServerSafe 3.2 for Windows Operation Guide 2/19/2014 1st Edition Revision History Edition Revised Date Description First 2/19/2014 New manual Copyright NEC Corporation 2014. All

More information

KV-SS090. Operating Instructions. Instant Scanning Software. Model No.

KV-SS090. Operating Instructions. Instant Scanning Software. Model No. Operating Instructions Instant Scanning Software Model No. KV-SS090 Thank you for purchasing this Panasonic product. Please read this manual carefully before using this product and save this manual for

More information

Cajun P550/P880 Manger User Guide

Cajun P550/P880 Manger User Guide Cajun P550/P880 Manger User Guide March 2001 Cajun P550/P880 5.1 Manager User Guide Copyright 2001 Avaya Inc. ALL RIGHTS RESERVED The products, specifications, and other technical information regarding

More information

INSTALLATION AND USER GUIDE

INSTALLATION AND USER GUIDE INSTALLATION AND USER GUIDE Introduction 1 Introduction About 6140 Agent Portal Mitel Networks 6140 Agent Portal allows an agent to receive call information via a number of different applications that

More information

IPR10. Quick Start Guide and Application Notes

IPR10. Quick Start Guide and Application Notes IPR10 Quick Start Guide and Application Notes Model: IPR10 Quick Start and Application Notes The IPR10 is an access router with asynchronous serial RS-232 interface for use with dial-up modems, leased

More information

User Workspace Management

User Workspace Management Access the Interface, page 1 User Management Workspace User Types, page 4 Projects (Admin User), page 5 Users (Admin User), page 9 CML Server (Admin User), page 11 Connectivity, page 30 Using the VM Control

More information

Application Notes for IVS Enterprise Server by RMG Networks with Avaya Call Management System R17.0.x Issue 1.0

Application Notes for IVS Enterprise Server by RMG Networks with Avaya Call Management System R17.0.x Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for IVS Enterprise Server by RMG Networks with Avaya Call Management System R17.0.x Issue 1.0 Abstract These Application Notes describe the

More information

EXPRESSCLUSTER X SingleServerSafe 3.3 for Windows. Operation Guide. 10/03/2016 4th Edition

EXPRESSCLUSTER X SingleServerSafe 3.3 for Windows. Operation Guide. 10/03/2016 4th Edition EXPRESSCLUSTER X SingleServerSafe 3.3 for Windows Operation Guide 10/03/2016 4th Edition Revision History Edition Revised Date Description 1st 02/09/2015 New manual 2nd 04/20/2015 Corresponds to the internal

More information

Ethernet Interface Module

Ethernet Interface Module Interface Manual 1 Ethernet Interface Module SignalFire Number: ENET-DIN The SignalFire Ethernet Gateway has the following features: - Wide range DC power input. 6 to 36VDC - Power Over Ethernet (POE)

More information

Lab - Using Wireshark to Examine TCP and UDP Captures

Lab - Using Wireshark to Examine TCP and UDP Captures Topology Part 1 (FTP) Part 1 will highlight a TCP capture of an FTP session. This topology consists of a PC with Internet access. Topology Part 2 (TFTP) Part 2 will highlight a UDP capture of a TFTP session.

More information

48-Port 10/100/1000Base-T with 4 Shared SFP. Managed Gigabit Switch WGSW Quick Installation Guide

48-Port 10/100/1000Base-T with 4 Shared SFP. Managed Gigabit Switch WGSW Quick Installation Guide 48-Port 10/100/1000Base-T with 4 Shared SFP Managed Gigabit Switch WGSW-48000 Quick Installation Guide Table of Contents 1. Package Content... 3 2. Requirements... 4 3. Terminal Setup... 5 4. Logon to

More information

Version NaViSet Administrator 2. Quick Start Guide English

Version NaViSet Administrator 2. Quick Start Guide English Version 2.0.61 NaViSet Administrator 2 Quick Start Guide English NaViSet Administrator 2 Quick Start Guide English 1 ABOUT NAVISET ADMINISTRATOR 2... 3 1.1 SYSTEM REQUIREMENTS... 4 1.1.1 Supported Display

More information

Conquest Ethernet Controller Configuration Web Pages

Conquest Ethernet Controller Configuration Web Pages Conquest Ethernet Controller Configuration Web Pages Application Guide Contents Introduction...1 Login Window...2 Device Window...3 Security Window...4 Application Windows...5 Firmware Update Window...6

More information

AP-ENBD User Manual V0.2

AP-ENBD User Manual V0.2 AP-ENBD User Manual V0.2 2015/12 Catolog Catolog... 2 1 Introduction... 1 1.1 Communication Structure... 1 1.2 Internal Principle... 2 2 Installation... 2 2.1 Connect to the Same Router (or Switch )...

More information

CHAPTER 7 ADVANCED ADMINISTRATION PC

CHAPTER 7 ADVANCED ADMINISTRATION PC ii Table of Contents CHAPTER 1 INTRODUCTION... 1 Broadband ADSL Router Features... 1 Package Contents... 3 Physical Details... 4 CHAPTER 2 INSTALLATION... 6 Requirements... 6 Procedure... 6 CHAPTER 3 SETUP...

More information

Application Notes for InteractCRM ThinConnect 3.2 with Avaya Interaction Center Issue 1.0

Application Notes for InteractCRM ThinConnect 3.2 with Avaya Interaction Center Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for InteractCRM ThinConnect 3.2 with Avaya Interaction Center 7.3.1 Issue 1.0 Abstract These Application Notes describe the configuration steps

More information

OneRoof CyberCafePro Client Installation, Setup and User Manual

OneRoof CyberCafePro Client Installation, Setup and User Manual OneRoof CyberCafePro Client Installation, Setup and User Manual Suggestion: View manual on computer at 200% to see screenshot details. Client Manual: Version 6.0.x March 15, 2010 Copyright 2010, OneRoof,

More information

Quick Start Guide. SP Usage Simulator Tool. Evaluating the Performance of SharePoint Environment Using the New DocAve SP Test Environment Creator

Quick Start Guide. SP Usage Simulator Tool. Evaluating the Performance of SharePoint Environment Using the New DocAve SP Test Environment Creator Quick Start Guide SP Usage Simulator Tool Evaluating the Performance of SharePoint Environment Using the New DocAve SP Test Environment Creator This document is intended for anyone wishing to familiarize

More information

X-Modem Ethernet ADSL Modem USER GUIDE

X-Modem Ethernet ADSL Modem USER GUIDE www.adslnation.com X-Modem Ethernet ADSL Modem USER GUIDE Technical Support TO OBTAIN TECHNICAL SUPPORT. PLEASE RETAIN PROOF OF PURCHASE AND THE WARRANTY INFORMATION. To get product support or obtain product

More information

Using CSC SSM with Trend Micro Damage Cleanup Services

Using CSC SSM with Trend Micro Damage Cleanup Services APPENDIXD Using CSC SSM with Trend Micro Damage Cleanup Services Trend Micro InterScan for CSC SSM works with Trend Micro Damage Cleanup Services (DCS) as part of an enterprise protection strategy. The

More information

QNC Best Practices. System Affected. Description. QNC Configuration Procedure. Technical Bulletin CS-18-04

QNC Best Practices. System Affected. Description. QNC Configuration Procedure. Technical Bulletin CS-18-04 This technical bulletin explains the best approach to using the QNC tool when deploying handsets and provides tips and tricks on QNC behaviors to help smooth your deployment process. System Affected QNC

More information

Contact Center Supervisor Manual

Contact Center Supervisor Manual Contact Center Supervisor Manual INT-31583 Issue 2.0 NEC Corporation of America reserves the right to change the specifications, or features, at any time, without notice. NEC Corporation of America has

More information

CCASS (& CCMS) Terminal Installation Procedures. Version: 5.0

CCASS (& CCMS) Terminal Installation Procedures. Version: 5.0 CCASS (& CCMS) Terminal Installation Procedures Version: 5.0 Date: Jan 2017 Procedures: The purpose of this section is to describe the installation procedures for the CCASS (& CCMS) Terminal ( C3T ). The

More information

EMC ApplicationXtender Web Access.NET eroom Integration 6.0

EMC ApplicationXtender Web Access.NET eroom Integration 6.0 EMC ApplicationXtender Web Access.NET eroom Integration 6.0 Administrator s Guide 300-008-282 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

Application Notes for TASKE Contact with Avaya Communication Manager using Avaya Application Enablement Services Issue 1.0

Application Notes for TASKE Contact with Avaya Communication Manager using Avaya Application Enablement Services Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for TASKE Contact with Avaya Communication Manager using Avaya Application Enablement Services Issue 1.0 Abstract These Application Notes describe

More information

Video Monitoring. Contents CHAPTER

Video Monitoring. Contents CHAPTER CHAPTER 13 This chapter describes how to view live and recorded video streams from security cameras configured in the Cisco Video Surveillance Manager (Cisco VSM) system. Using Cisco PAM, you can associate

More information