Hands-On Lab. Introduction to the Unified Communications Managed API 3.0. Lab version: 1.0 Last updated: 12/17/2010

Size: px
Start display at page:

Download "Hands-On Lab. Introduction to the Unified Communications Managed API 3.0. Lab version: 1.0 Last updated: 12/17/2010"

Transcription

1 Hands-On Lab Introduction to the Unified Communications Managed API 3.0 Lab version: 1.0 Last updated: 12/17/2010

2 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: PROVISION AN APPLICATION ENDPOINT AND PUBLISH ITS PRESENCE... 4 Task 1 Create a New Trusted Application... 4 Task 2 Create a New Trusted Application Endpoint... 5 Task 3 Open the Visual Studio Solution... 7 Task 4 Publish the Presence of the Application Endpoint... 7 EXERCISE 2: CALL CONTROL AND PRESENCE EVENTS... 9 Task 1 Open the Visual Studio Solution Task 2 Register for an Incoming Call on the Application Endpoint Task 3 Subscribe to Presence and Handle Presence Notification Events Task 4 Perform an Unattended Call Transfer Task 5 Perform an Attended Call Transfer with Impersonation SUMMARY... 18

3 Overview Lab Time: 45 Minutes Lab Folder: C:\%UC14TrainingKit%\Labs\6\Source\Before The After folder contains the completed lab exercises. Lab Overview: The Unified Communications Managed API 3.0 SDK provides a managed API for developing server-side communications solutions for Microsoft Lync Server 2010 such as personal virtual assistants, automatic call distributors, and communications-enabled business processes. Users can interact with these applications by placing a call to them via the PSTN, or by starting an audio or instant message conversation in Microsoft Lync with the contact associated with the application. The lab solution you will build will use the UCMA 3.0 SDK to demonstrate the following. How to provision an application using the Lync Server PowerShell cmdlets. How to provision an application endpoint using the Lync Server PowerShell cmdlets. How to publish an application endpoint s presence. How to register for and handle an incoming audio conversation. How to subscribe to the presence of a user and process presence notification event s when their state changes. How to check a user s availability. How to transfer an audio conversation to another user. System Requirements You must have the following items to complete this lab: Microsoft Visual Studio 2010 Unified Communications Managed API 3.0 SDK The port assigned for your use in the UC 14 Metro lab. Microsoft Lync Server 2010 will be configured to listen for your UCMA application on this port.

4 Exercise 1: Provision an Application Endpoint and Publish its Presence Task 1 Create a New Trusted Application In this task, you will create a new trusted UCMA application using Microsoft Lync Server 2010 PowerShell cmdlets. 1. Launch the Lync Server Management Shell from Start >> Administrative Tools >> Lync Server Management Shell. 2. Run the following command to create a new UCMA application, make sure to replace the values in < > with the correct values for the parameters. PowerShell New-CSTrustedApplication ApplicationId <ApplicationId> -TrustedApplicationPoolFqdn <TrustedApplicationPoolFqdn> -Port <Port> a. ApplicationId: LabApp + the value of LocalSIPPort, e.g. LabApp i. If you are performing this exercise in your own development environment, LocalSIPPort represents an available port that Microsoft Lync Server 2010 will listen on for the new UCMA application. b. TrustedApplicationPoolFqdn: the fully qualified domain name of the application server in the Microsoft Lync Server 2010 topology that this application will be provisioned on, e.g. ts.fabrikam.com. c. Port: the port assigned for your use in the lab. 3. Record the value displayed for the ApplicationId property. 4. As prompted, run the Enable-CsTopology PowerShell command to commit the changes.

5 PowerShell Enable-CsTopology 5. Run the following command to verify that the UCMA application was created successfully, and to retrieve its details. The value for <Identity> is the value of TrustedApplicationPoolFqdn + / + the value of ApplicationName, e.g. ts.fabrikam.com/urn:application:labapp10600 PowerShell Get-CSTrustedApplication Identity <Identity> Task 2 Create a New Trusted Application Endpoint In this task, you will create a UCMA application endpoint using the Microsoft Lync Server 2010 PowerShell cmdlets. 1. Run the following command to create a new trusted UCMA application endpoint, make sure to replace the values in < > with the correct values for the parameters.

6 PowerShell New-CSTrustedApplicationEndpoint ApplicationId <ApplicationId> -TrustedApplicationPoolFqdn <TrustedApplicationPoolFqdn> -SipAddress <SipAddress> -DisplayName <DisplayName> a. ApplicationId: The Id of the UCMA application recorded in the previous task, e.g. urn:application:labapp10600 b. TrustedApplicationPoolFqdn: The same value as in the previous task, e.g. ts.fabrikam.com. c. SipAddress: The SIP URI of the Microsoft Lync contact associated with the application endpoint. i. In the UC 14 Metro Lab, use the following naming convention: sip:labcontact + the value of LocalSIPPort e.g. sip:labcontact10600@fabrikam.com d. DisplayName: A friendly display name for the Microsoft Lync contact associated with the application endpoint, e.g. Lab Contact Run the following command to verify that the application endpoint was created successfully and retrieve its details, where Identity is the SIP address of your lab contact, e.g. : sip:labcontact10600@fabrikam.com. PowerShell Get-CSTrustedApplicationEndpoint Identity <Identity>

7 Task 3 Open the Visual Studio Solution In this task, you will open the project and configure it to run with your parameter values. 1. Navigate to Start >> All Programs >> Microsoft Visual Studio Click on the Microsoft Visual Studio 2010 icon to start Visual Studio Select File >> Open Project. 4. Navigate to the folder C:\%UC14TrainingKit%\Labs\6\Source\Before. 5. Open the IntroductionToUCMA solution. 6. In Solution Explorer, right-click the ProvisionedPublishAlwaysOnline project and select Set as Startup Project. 7. In Solution Explorer, open the App.config file. 8. Change the value of ApplicationId to the value from Task 1, e.g.: urn:application:labapp Change the value of ApplicationName to the value from Task 1, e.g.: LabApp Select View >> Task List and select Comments from the menu. Task 4 Publish the Presence of the Application Endpoint In this task, you will configure the UCMA application created in the previous tasks to appear as a Microsoft Lync contact whose presence always appears as Online. 1. In the Task List, navigate to TODO: Add the following code after the TODO: comment. Access your application s settings and create an instance of CollaborationPlatform for connection management, message dispatching, and other services that the Microsoft Lync Server 2010 provides to your endpoint.

8 var settings = new ProvisionedApplicationPlatformSettings( _applicationname, _applicationid); _collabplatform = new CollaborationPlatform(settings); 3. Navigate to TODO: Add the following code after the TODO: comment. Create an event handler to determine the SIP URI of the contact associated with the application. _collabplatform.registerforapplicationendpointsettings(this.platform_app licationendpointownerdiscovered); 5. Navigate to TODO: Add the following code after the TODO: comment. Start the CollaborationPlatform instance and specify a delegate to be called when startup completes. Console.WriteLine("Starting the platform."); _collabplatform.beginstartup(platformstartupcompleted, null); 7. Navigate to TODO: Add the following code after the TODO: comment. Display the SIP URI of any contacts associated with the application endpoint as they are discovered. Console.WriteLine("Contact discovered: 0", e.applicationendpointsettings.owneruri); 9. Navigate to TODO: Add the following code after the TODO: comment. Initialize and register the application endpoint. var settings = e.applicationendpointsettings; settings.automaticpresencepublicationenabled = true; settings.presence.presentitytype = "automaton"; settings.presence.description = "AlwaysOnlineBot"; _applicationendpoint = new ApplicationEndpoint(_collabPlatform, settings); 11. Navigate to TODO:

9 12. Add the following code after the TODO: comment. Establish the endpoint. _applicationendpoint.endestablish(result); Console.WriteLine("The application endpoint owned by URI: 0 is now established and registered.", _applicationendpoint.owneruri); 13. Go to Debug >> Start Without Debugging or use the shortcut key [CTRL]+[F5] to start the application. 14. Press the Enter key. 15. Press Enter to shut down the console application. 16. Open Microsoft Lync. 17. Type the SIP URI of the application contact into the search box, the contact should appear in the search results. 18. Verify that the presence of the contact appears as Available. 19. Add the contact to your Microsoft Lync contact list. Exercise 2: Call Control and Presence Events

10 Task 1 Open the Visual Studio Solution In this task, you will open the project and configure it to run with your parameter values. 1. Navigate to Start >> All Programs >> Microsoft Visual Studio Click on the Microsoft Visual Studio 2010 icon to start Visual Studio Select File >> Open Project. 4. Navigate to the folder C:\%UC14TrainingKit%\Labs\6\Source\Before. 5. Open the IntroductionToUCMA solution. 6. In Solution Explorer, right-click the CallControlandPresenceEvents project and select Set as Startup Project. 7. In Solution Explorer, open the App.config file. 8. Change the ApplicationId to the application id assigned to you, e.g. (urn:application:labapp10600). 9. Change the ApplicationName to the application name assigned to you, e.g. (LabApp10600) Change the TrustedContactUri to the trusted contact uri assigned to you, e.g. (sip:labcontact10600@fabrikam.com). 11. Change the PrimaryLabUserId and SecondaryLabUserId values to your primary and secondary lab accounts. 12. Select View >> Task List and select Comments from the menu. Task 2 Register for an Incoming Call on the Application Endpoint In this task, you will register the application endpoint to receive calls. 1. In the Task List, navigate to TODO: Add the following code after the TODO: comment. Register for an incoming AudioVideoCall. _applicationendpoint.registerforincomingcall<audiovideocall>(audiovideoc allreceived); 3. Navigate to TODO: Add the following code after the TODO: comment. Get the incoming call and add a handler for call state changes. Console.WriteLine("\nIncoming audio call from 0.", e.remoteparticipant.uri); _initialavcall = e.call; _initialavcall.statechanged +=

11 5. Navigate to TODO: new EventHandler<CallStateChangedEventArgs>( AudioVideoCall_StateChanged); 6. Add the following code after the TODO: comment. Accept the incoming call. _initialavcall.endaccept(result); 7. Go to Debug >> Start Without Debugging or use the shortcut key [CTRL]+[F5] to start the application. 8. Check that the console displays messages indicating that the application endpoint has been registered for incoming calls. 9. Switch to Microsoft Lync and search for your provisioned lab contact, e.g. 10. Click the Call button to place an audio call to the provisioned lab contact. 11. Check the console for a message indicating that the application is receiving an incoming call and that the CallStateChanged event fires as the state changes from Incoming to Establishing and then from Establishing to Established. 12. End the call by clicking the End Call button. 13. Check that the console displays CallStateChanged events as the call s state changes from Established to Terminating and then from Terminating to Terminated.

12 14. Press Enter and close the console application. Task 3 Subscribe to Presence and Handle Presence Notification Events. In this task, you will subscribe to presence notification events from the secondary lab user. 1. Navigate to TODO: Add the following code after the TODO: comment. Subscribe to presence notifications for the secondary lab user. SubscribeToPresenceOfSecondaryLabUser(); 3. Navigate to TODO: Add the following code after the TODO: comment. Create a list of contacts to subscribe to presence notifications for. var subscriptiontargets = new List<RemotePresentitySubscriptionTarget>(); subscriptiontargets.add(new RemotePresentitySubscriptionTarget(_secondaryLabUserId)); _remotepresenceview = new RemotePresenceView( _applicationendpoint, new RemotePresenceViewSettings() SubscriptionMode = RemotePresenceViewSubscriptionMode.Persistent ); // Wire up NotificationReceived before adding targets _remotepresenceview.presencenotificationreceived += new EventHandler<RemotePresentitiesNotificationEventArgs>(RemotePresenceView _NotificationReceived); // Immediately fires NotificationReceived with current presence of targets _remotepresenceview.startsubscribingtopresentities(subscriptiontargets); 5. Navigate to TODO: Add the following code after the TODO: comment. Process the presence notifications by determining the contact that each notification is referring to, and then checking if that

13 contact is online. If the user is online, remove the notification event handler to avoid an infinite loop. foreach (var notification in e.notifications) // Verify that we are receiving a presence notification for the secondary lab user if (notification.uri.equals(_secondarylabuserid, StringComparison.InvariantCultureIgnoreCase)) if (IsUserAvailable(notification)) // Unsubscribe from notifications _remotepresenceview.startunsubscribingtopresentities( new List<string>() _secondarylabuserid ); _remotepresenceview.presencenotificationreceived -= new EventHandler<RemotePresentitiesNotificationEventArgs>(RemotePresenceView _NotificationReceived); Console.WriteLine("\n0 is now available.", _secondarylabuserid); 7. Navigate to TODO: // Present call transfer options to the user PresentCallTransferOptionsToUser(); break; 8. Add the following code after the TODO: comment. Check if the secondary lab user is online and available. userisonline = notification.aggregatedpresencestate.availability == PresenceAvailability.Online; 9. Switch to the secondary lab user s session and open Microsoft Lync. 10. Set the secondary lab user s status to Busy. 11. Switch back to the primary lab user s session. 12. Go to Debug >> Start Without Debugging or use the shortcut key [CTRL]+[F5] to start the application. 13. Place an audio call to the application contact.

14 14. Check the console for a message indicating that it has subscribed to presence notification events for the secondary lab user. 15. Go to the secondary lab user s session and set the status to Available. 16. Check the console for a message indicating the change in the secondary lab user s presence. 17. Press Enter and close the console application. Task 4 Perform an Unattended Call Transfer. In this task, you will perform an unattended call transfer to the secondary lab user. 1. Navigate to TODO: Add the following code after the TODO: comment. Present the user with the options for transferring a call. bool valid = false; var transferaction = new ConsoleKey(); ConsoleKeyInfo cki = new ConsoleKeyInfo(); while (!_selectedcalltransferaction) Console.WriteLine("\nSelect a call transfer option to test:"); Console.WriteLine("1: Unattended call transfer"); Console.WriteLine("2: Attended call transfer with impersonation"); while (!valid) cki = Console.ReadKey(true); if (cki.key.equals(consolekey.d1)

15 cki.key.equals(consolekey.d2)) valid = true; _selectedcalltransferaction = valid; transferaction = cki.key; switch (transferaction) case ConsoleKey.D1: TransferCallUnattended(); break; case ConsoleKey.D2: TransferCallAttendedWithImpersonation(); break; ; 3. Navigate to TODO: Add the following code after the TODO: comment. Begin the call transfer to the secondary lab user and provide a callback function. _initialavcall.begintransfer( targeturi: _secondarylabuserid, calltransferoptions: new CallTransferOptions(CallTransferType.Unattended), usercallback: result => try _initialavcall.endtransfer(result); catch (RealTimeException e) Console.WriteLine("Error transferring call: 0", e.message);, state: null); 5. Go to the secondary lab user s session and set the status to Busy. 6. Go back to the primary lab user s session. 7. Press [CTRL]+[F5] to start the application. 8. Place an audio call to the application contact. 9. Go to the secondary lab user s session and set the status to Available.

16 10. Go to the console and press 1 to perform an unattended call transfer. 11. Check the console for a message indicating that the original call has been transferred and then terminated. 12. Switch to the secondary lab user s session and answer the call. 13. Switch back to the primary lab user s session. 14. Check the console for a message indicating that the call has been transferred to the secondary lab user. 15. Note that with an unattended transfer, the original call is automatically transferred and terminated. 16. End the call 17. Press Enter and close the application. Task 5 Perform an Attended Call Transfer with Impersonation. In this task, you will perform an attended call transfer to the secondary lab user. 1. Navigate to TODO: Add the following code after the TODO: comment. Set the conversation to impersonate the primary lab user. conversation.impersonate(uri: _primarylabuserid, phoneuri: null, displayname: null); 3. Navigate to TODO: Add the following code after the TODO: comment. Establish the call to the secondary lab user by providing an asynchronous callback. audiovideocall.endestablish(result1);

17 5. Navigate to TODO: Add the following code after the TODO: comment. Begin the transfer by providing the call object, the call options, and the callback method. _initialavcall.begintransfer( calltoreplace: audiovideocall, calltransferoptions: new CallTransferOptions(CallTransferType.Attended), usercallback: result => try _initialavcall.endtransfer(result); catch (OperationFailureException ofe) Console.WriteLine("The recipient declined or did not answer the call: 0", ofe.message); catch (RealTimeException e) Console.WriteLine("Error transferring call: 0", e.message);, state: null); 7. Go to the secondary lab user s session and set the status to Busy. 8. Go back to the primary lab user s session. 9. Press [CTRL]+[F5] to start the application. 10. Place an audio call to the application contact. 11. Go to the secondary lab user s session and set the status to Available. 12. Press 2 to perform an attended call transfer. 13. Switch to the secondary lab user s session and answer the call. 14. Switch back to the primary lab user s session. 15. Check the console for messages indicating that the original call is only terminated after the transfer recipient picks up the transferred call.

18 16. End the call. 17. Press Enter and close the application. Summary In this lab, you learned how to provision a UCMA application and a Microsoft Lync contact as an endpoint for the application and how to publish that contact s presence as AlwaysOnline so that the contact s presence always appears as online when users interact with it in Microsoft Lync. Additionally, you learned you to configure a UCMA application to handle incoming calls, subscribe to a user s presence and perform call transfers.

Hands-On Lab. Advanced UCMA 3.0 Development. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Advanced UCMA 3.0 Development. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Advanced UCMA 3.0 Development Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: BACK-TO-BACK CALL FUNCTIONALITY... 4 Task 1 Open the Visual

More information

Hands-On Lab. Launching Contextual Conversations from the Lync Controls. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Launching Contextual Conversations from the Lync Controls. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Launching Contextual Conversations from the Lync Controls Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: INTEGRATE LAUNCH LINK AND DATA

More information

Hands-On Lab. Getting Started with the UCMA 3.0 Workflow SDK. Lab version: 1.0 Last updated: 12/17/2010

Hands-On Lab. Getting Started with the UCMA 3.0 Workflow SDK. Lab version: 1.0 Last updated: 12/17/2010 Hands-On Lab Getting Started with the UCMA 3.0 Workflow SDK Lab version: 1.0 Last updated: 12/17/2010 CONTENTS OVERVIEW... 3 System Requirements 3 EXERCISE 1: UCMA 3.0 WORKFLOW SDK WORKFLOW ACTIVITIES...

More information

Multimedia C onnector for Skype for Business Configuration of Microsoft Skype for Business platform

Multimedia C onnector for Skype for Business Configuration of Microsoft Skype for Business platform Multimedia C onnector for Skype for Business Configuration of Microsoft Skype for Business platform 1. Executive Summary This paper describes how to configure Microsoft Skype for Business or Lync 2013

More information

Configuration for Microsoft Presence

Configuration for Microsoft Presence Configuration for Microsoft Presence Architecture Imagicle Presence Service connects directly to Microsoft Lync / SfB Frontend Service through Microsoft UCMA API. Requirements Imagicle presence service

More information

Skype for Business Configuration

Skype for Business Configuration Skype for Business Configuration Architecture Since Spring 2017, Imagicle Queue Manager Enterprise provides native integration with Microsoft Lync / Skype for Business, as a Trusted UCMA Application registered

More information

Presence Service Configuration

Presence Service Configuration Presence Service Configuration 28 Mar 2019 TM and copyright 2010-2019 Imagicle spa Table of Contents Presence Service Configuration...1/13 Imagicle Presence Service Configuration...1/13 Configuration for

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BEMS in a Good Control and Good Proxy environment Version 2.6.5.9 Published: 2017-11-22 SWD-20180309145401649 Contents About this guide... 10 What is BEMS?... 11 Installing

More information

Interdomain Federation to Microsoft Lync

Interdomain Federation to Microsoft Lync within an Enterprise, page 1 Configuration Task Flow for Microsoft Lync Federation, page 2 within an Enterprise Figure 1: Interdomain Federation to Microsoft Server within an Enterprise When the Microsoft

More information

OCS MobileStatus Installation and Configuration Guide

OCS MobileStatus Installation and Configuration Guide OCS MobileStatus Installation and Configuration Guide Release 2.5 OCS MobileStatus Installation and Configuration Guide, 2.5 2012-12-04 Page 1 of 40 BluePosition ApS - SCION-DTU - Diplomvej 376-2800 Lyngby

More information

Chime for Lync High Availability Setup

Chime for Lync High Availability Setup Chime for Lync High Availability Setup Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation

More information

Skype for Business Configuration for Partitioned Intradomain Federation

Skype for Business Configuration for Partitioned Intradomain Federation Skype for Business Configuration for Partitioned Intradomain Federation Skype for Business Intradomain Federation, page 1 Skype for Business Intradomain Federation Task Flow, page 1 Skype for Business

More information

Installation and Configuration Guide

Installation and Configuration Guide Installation and Configuration Guide BEMS in a BlackBerry UEM environment Version 2.6.5.9 Published: 2018-02-19 SWD-20180310104412185 Contents About this guide... 9 What is BEMS?... 10 Preinstallation

More information

Installation Guide. BEMS in a BlackBerry UEM environment. Version

Installation Guide. BEMS in a BlackBerry UEM environment. Version Installation Guide BEMS in a BlackBerry UEM environment Version 2.8.7.21 Published: 2018-03-26 SWD-20180321100611238 Contents About this guide... 5 What is BEMS?... 6 Preinstallation checklists... 8 BlackBerry

More information

Migration Utilities for Microsoft Users

Migration Utilities for Microsoft Users First Published: 2016-07-21 Introduction This application combines the functionality previously provided in the: Export Contact List application Disable Account application Delete Account application You

More information

XO Hosted PBX Customer Release Notes Call Detail Record Download Service

XO Hosted PBX Customer Release Notes Call Detail Record Download Service XO Hosted PBX Customer Release Notes Call Detail Record Download Service March 2015 Release Notes Table of Contents... 1 XO HOSTED PBX CUSTOMER RELEASE NOTES... 1 1 OVERVIEW... 3 2 FEATURE / SERVICE EXPANSION...

More information

Microsoft Windows PowerShell v2 For Administrators

Microsoft Windows PowerShell v2 For Administrators Microsoft Windows PowerShell v2 For Administrators Course 50414 5 Days Instructor-led, Hands-on Introduction This four-day instructor-led course provides students with the knowledge and skills to leverage

More information

Skype for Business Operational Guide

Skype for Business Operational Guide Skype for Business Operational Guide Prepared by: Mohammad Asmayal Jawad https://ca.linkedin.com/in/asmayal 2017 Table of Contents Skype Administration Portal Path... 3 Manage user accounts for Skype for

More information

Virtual Communications Express User Guide Mobile for iphone

Virtual Communications Express User Guide Mobile for iphone User Guide Mobile for iphone Feature Overview By adding Virtual Communications Express Mobile to an ios platform, you can leverage a convenient and intuitive interface for mobile calling services. Calls

More information

Course Description. Audience. Prerequisites. At Course Completion

Course Description. Audience. Prerequisites. At Course Completion Module Title : Course 20336A: Core Solutions of Microsoft Lync Server 2013 Duration : 5 days Course Description This instructor-led course teaches IT professionals how to plan, design, deploy, configure,

More information

Spectralink IP-DECT Server 400 and 6500 and Microsoft Lync Server Configuration Guide

Spectralink IP-DECT Server 400 and 6500 and Microsoft Lync Server Configuration Guide Spectralink IP-DECT Server 400 and 6500 Spectralink IP-DECT Server 400 and 6500 and Microsoft Lync Server Configuration Guide Using a Spectralink IP-DECT Server 400 or Spectralink IP-DECT Server 6500 in

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Pleasant work. Hareli Dudaei. Microsoft Architect

Pleasant work. Hareli Dudaei. Microsoft Architect Pleasant work Hareli Dudaei Microsoft Architect 1 Table of Contents Preliminary knowledge:... 3 Connection... 3 Lync topology Builder... 4 The control panel... 7 users... 8 Enable or Disable Users for

More information

Core Solutions of Microsoft Lync Server 2013

Core Solutions of Microsoft Lync Server 2013 Course 20336B: Core Solutions of Microsoft Lync Server 2013 Page 1 of 8 Core Solutions of Microsoft Lync Server 2013 Course 20336B: 4 days; Instructor-Led Introduction This instructor-led course teaches

More information

Collaborate App for Android Smartphones

Collaborate App for Android Smartphones Collaborate App for Android Smartphones The AT&T Collaborate service provides the Collaborate app to help you manage calls and conferences on the go. The app comes in 3 versions: Collaborate - Mobile Collaborate

More information

Collaborate App for Android Tablets

Collaborate App for Android Tablets The AT&T Collaborate service provides the Collaborate app to help you manage calls and conferences on your Android tablet on the go. The Collaborate app for Android tablets provides these communication

More information

"Charting the Course to Your Success!" MOC B Core Solutions of Microsoft Lync Server 2013 Course Summary

Charting the Course to Your Success! MOC B Core Solutions of Microsoft Lync Server 2013 Course Summary MOC 20336 B Core Solutions of Microsoft Lync Course Summary Description This instructor-led course teaches IT professionals how to plan, design, deploy, configure, and administer a Microsoft Lync solution.

More information

University of Illinois Urbana-Champaign Spring 2012

University of Illinois Urbana-Champaign Spring 2012 University of Illinois Urbana-Champaign Spring 2012 Overview Microsoft Lync is software that provides a single interface uniting voice communications, instant messaging, and audio/video/web conferencing

More information

SEFAUtil Server User Manual

SEFAUtil Server User Manual Landis Technologies LLC SEFUtil Server User Manual Page 1 Contents Overview of SEFUtil Server... 4 What does it do?... 4 What are Common Use Cases?... 4 Community versus Enterprise Edition... 4 SEFUtil

More information

Management Guide NetIQ AppManager for Microsoft Lync. Jan 2017

Management Guide NetIQ AppManager for Microsoft Lync. Jan 2017 Management Guide NetIQ AppManager for Microsoft Lync Jan 2017 Legal Notice For information about NetIQ legal notices, trademarks, disclaimers, warranties, export and other use restrictions, U.S. Government

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : 070-337 Title : Enterprise Voice & Online Services

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

SKYPE FOR BUSINESS INTEGRATION FOR COMCAST BUSINESS VOICEEDGE

SKYPE FOR BUSINESS INTEGRATION FOR COMCAST BUSINESS VOICEEDGE SKYPE FOR BUSINESS INTEGRATION FOR COMCAST BUSINESS VOICEEDGE USING THE SKYPE FOR BUSINESS INTEGRATION FOR BUSINESS VOICEEDGE The Skype Integration connects your Comcast Business VoiceEdge service to your

More information

UC App for Android Mobile

UC App for Android Mobile UC App for Android Mobile 2018 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic, mechanical, photocopying, recording,

More information

managedip HOSTED ANDROID TABLET

managedip HOSTED ANDROID TABLET Table of Contents 1 About managedip Hosted for Android Tablet... 4 2 Get Started... 5 2.1 Install...5 2.2 Sign In...5 3 Main Tabs... 6 4 Contacts... 8 4.1 Contact Card...8 4.2 Add Contacts...8 4.3 Edit...9

More information

Application Notes for 911 ETC CrisisConnect for Softphones and CrisisConnect for VoIP with Avaya IP Office Issue 1.0

Application Notes for 911 ETC CrisisConnect for Softphones and CrisisConnect for VoIP with Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for 911 ETC CrisisConnect for Softphones and CrisisConnect for VoIP with Avaya IP Office Issue 1.0 Abstract These Application Notes describe

More information

SIP Phone Support (SPS)

SIP Phone Support (SPS) Quick Start Guide AudioCodes One Voice for Microsoft Skype for Business SIP Phone Support (SPS) Version 3.00 Quick Start Guide Contents Table of Contents 1 Introduction... 9 1.1 About SPS for Skype for

More information

Clearspan Communicator User Guide for ios Tablets

Clearspan Communicator User Guide for ios Tablets Clearspan Communicator User Guide for ios Tablets RELEASE# 20.1.1 JULY 2015 NOTICE The information contained in this document is believed to be accurate in all respects but is not warranted by Mitel Communications,

More information

Communicator for Android. User Guide. Release 21.3

Communicator for Android. User Guide. Release 21.3 Communicator for Android User Guide Release 21.3 Table of Contents Contents Table of Contents...2 1 Main Tabs...5 2 Contacts...6 2.1 Add Contacts... 6 2.2 Edit... 7 2.3 Filters... 7 3 Presence...8 4 Instant

More information

Microsoft Exchange Server 2007 Implementation and Maintenance

Microsoft Exchange Server 2007 Implementation and Maintenance Microsoft Exchange Server 2007 Implementation and Maintenance Chapter 1 Exchange Server 2007 Deployment 1.1 Overview, Hardware & Editions 1.2 Exchange Server, Windows & Active Directory 1.3 Administration

More information

Spectrum Enterprise Anywhere Connect iphone User Guide Hosted Voice Enterprise

Spectrum Enterprise Anywhere Connect iphone User Guide Hosted Voice Enterprise Spectrum Enterprise Anywhere Connect iphone User Guide Hosted Voice Enterprise 11/30/2016 Published Version 1.4 Website: http://enterprise.spectrum.com Phone: 866-477-1386 Email: enterpriseinfo@mybrighthouse.com

More information

Office Communicator for iphone. User Guide. Release

Office Communicator for iphone. User Guide. Release Office Communicator for iphone User Guide Release 21.3.1 Table of Contents 1 About Communicator for iphone...4 2 Getting Started...5 2.1 Installation... 5 2.2 Sign In... 5 3 Main Tabs...6 4 Contacts...7

More information

Advanced Configuration

Advanced Configuration Advanced Configuration 31 Mar 2019 TM and copyright 2010-2019 Imagicle spa Table of Contents Advanced Configuration...1/41 The Backup/Restore Tool...1/41 Basic Troubleshooting...5/41 Bitlocker Driver Encryption...7/41

More information

TDS managedip Hosted Android User Guide for managedip UC

TDS managedip Hosted Android User Guide for managedip UC TDS managedip Hosted Android User Guide for managedip UC PAGE 1 Table of Contents 1 About managedip UC for Android... 4 2 Get Started... 5 2.1 Installation... 5 2.2 Sign In... 5 3 Main Tabs... 6 4 Contacts...

More information

Microsoft Core Solutions of Microsoft Lync Server 2013

Microsoft Core Solutions of Microsoft Lync Server 2013 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20336 - Core Solutions of Microsoft Lync Server 2013 Length 5 days Price $4290.00 (inc GST) Version B Overview This instructor-led course teaches IT professionals

More information

USER GUIDE Spring 2016

USER GUIDE Spring 2016 USER GUIDE Spring 2016 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may be used

More information

Application Notes for Configuring the ADTRAN NetVanta UC Server with Avaya IP Office 6.1 Issue 1.0

Application Notes for Configuring the ADTRAN NetVanta UC Server with Avaya IP Office 6.1 Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring the ADTRAN NetVanta UC Server with Avaya IP Office 6.1 Issue 1.0 Abstract These Application Notes describe the procedure for

More information

Outlook 2013 & 2010 Lync Messanger

Outlook 2013 & 2010 Lync Messanger Outlook 2013 & 2010 Lync Messanger Outlook 2013 Tabs Ribbon Reading Pane Message View Navigation Pane Status Bar Setting Options Customizing Your View Modify the Navigation Pane Modify the Reading Pane

More information

IM&P Business Communicator Customer Manual - Mobile 11/24/2015

IM&P Business Communicator Customer Manual - Mobile 11/24/2015 IM&P Business Communicator Customer Manual - Mobile 11/24/2015 Manual Overview The CBTS Business Communicator manual is designed to provide an overview of the most frequently utilized Instant Messaging

More information

Voyant Connect. User Guide. Document Version 1

Voyant Connect. User Guide. Document Version 1 Voyant Connect User Guide Document Version 1 Table of Contents 2 About Voyant Connect... 4 3 Getting Started... 5 3.1 Installation... 5 3.2 Sign In... 5 4 Main Tabs... 6 5 Contacts... 7 5.1 Add... 7 5.2

More information

2018 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic,

2018 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic, UC App for ipad 2018 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic, mechanical, photocopying, recording,

More information

estos CallControlGateway

estos CallControlGateway estos CallControlGateway 5.0.41.35034 1 Welcome to estos CallControlGateway... 5 1.1 Installation notes... 6 2 Configure Live Communications Server... 7 2.1 Static Route for TCP... 7 2.2 Static Route for

More information

Get started with Cisco UC Integration for Microsoft Lync

Get started with Cisco UC Integration for Microsoft Lync Get started with Cisco UC Integration for Microsoft Lync Cisco UC Integration for Microsoft Lync, page 1 Docked Window, page 2 Incoming Call Window, page 2 Call Window, page 3 Hub Window, page 4 Options

More information

SMART UC USER GUIDE - ios DECEMBER 2018

SMART UC USER GUIDE - ios DECEMBER 2018 SMART UC USER GUIDE - ios DECEMBER 2018 Vocus Level 10, 452, Melbourne, VIC 3000 vocus.com.au CONTENTS INTRODUCTION... 3 OVERVIEW... 3 MULTI DEVICE SUPPORT... 3 DISCLAIMERS... 3 GETTING STARTED... 4 INSTALLATION...

More information

FusionWorks: Fusion Communicator for iphone 2/24/2016 USER GUIDE

FusionWorks: Fusion Communicator for iphone 2/24/2016 USER GUIDE FusionWorks: Fusion Communicator for iphone 2/24/2016 Contents: About this Document.............................................................................................. 4 Audience and Purpose..........................................................................................

More information

Sharepoint 2010 Start Workflow Programmatically Initiation Form

Sharepoint 2010 Start Workflow Programmatically Initiation Form Sharepoint 2010 Start Workflow Programmatically Initiation Form If you tried to start SharePoint 2013 workflow using SharePoint 2010 using have any input parameters (which you usually pass from workflow

More information

Client Add-in for Microsoft S4B

Client Add-in for Microsoft S4B Client Add-in for Microsoft S4B Product Guide Release 22.0.2.183 Document Version 1 Table of Contents 1 Overview...3 1.1 Supported Features... 4 1.2 System and Software Version Requirements... 5 2 S4B

More information

MobileConnect for Android User Guide

MobileConnect for Android User Guide MobileConnect for Android User Guide Release 21.5.1 Document Version 2 MobileConnect 888.616.6414 for Android User Guide Table of Contents 1 About MobileConnect for Android...4 2 Getting Started...4 2.1

More information

Cisco Jabber Features and Options

Cisco Jabber Features and Options Cisco Jabber 10.6 Features, page 1 Cisco Jabber Features for Windows, Mac, ios and Android, page 3 Cisco Jabber Features for Windows, page 15 Cisco Jabber Features for Mac, page 36 Cisco Jabber for Android

More information

USER GUIDE Summer 2015

USER GUIDE Summer 2015 USER GUIDE Summer 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may be used

More information

Hands-On Lab. Worker Role Communication. Lab version: Last updated: 11/16/2010. Page 1

Hands-On Lab. Worker Role Communication. Lab version: Last updated: 11/16/2010. Page 1 Hands-On Lab Worker Role Communication Lab version: 2.0.0 Last updated: 11/16/2010 Page 1 CONTENTS OVERVIEW... 3 EXERCISE 1: USING WORKER ROLE EXTERNAL ENDPOINTS... 8 Task 1 Exploring the AzureTalk Solution...

More information

InterCall Unified Communications User Manual. Draft Outlook Integration edition. This document was updated on January 28, 2009.

InterCall Unified Communications User Manual. Draft Outlook Integration edition. This document was updated on January 28, 2009. User Manual Outlook Integration edition This document was updated on January 28, 2009. InterCall UC Account Phone Number The first time you call your phone number, a chime sounds followed by: Welcome.

More information

Overview. Audience profile. At course completion. Module Title : 20334A:Core Solutions of Skype for Business Course Outline :: 20334A::

Overview. Audience profile. At course completion. Module Title : 20334A:Core Solutions of Skype for Business Course Outline :: 20334A:: Module Title : 20334A:Core Solutions of Skype for Business 2015 Duration : 5 days Overview This course teaches IT professionals how to plan, deploy, configure, and administer a Skype for Business 2015

More information

MobileConnect for iphone User Guide

MobileConnect for iphone User Guide MobileConnect for iphone User Guide Release 21.5.15 Document Version 2 MobileConnect 888.616.6414 for iphone User Guide Table of Contents 1 About MobileConnect for iphone...4 2 Getting Started...4 2.1

More information

CMDR_COMMANDER PHONE SMART UC COMMANDER MOBILITY FOR ANDROID USER GUIDE_GD_41824

CMDR_COMMANDER PHONE SMART UC COMMANDER MOBILITY FOR ANDROID USER GUIDE_GD_41824 SMART UC COMMANDER MOBILITY ANDROID USER GUIDE Version 20.0.1.0 CMDR_COMMANDER PHONE SMART UC COMMANDER MOBILITY FOR ANDROID USER GUIDE_GD_41824 PAGE 1 Document Revision History Release Version Reason

More information

Microsoft Skype for Business Deployment Guide. Multimedia Connector for Skype for Business 8.5.0

Microsoft Skype for Business Deployment Guide. Multimedia Connector for Skype for Business 8.5.0 Microsoft Skype for Business Deployment Guide Multimedia Connector for Skype for Business 8.5.0 6/27/2018 Table of Contents Multimedia Connector for Skype for Business Deployment Guide 4 Architecture 6

More information

User Guide for Cisco UC Integration for Microsoft Lync 11.6

User Guide for Cisco UC Integration for Microsoft Lync 11.6 User Guide for Cisco UC Integration for Microsoft Lync 11.6 User Guide 2 Introduction 2 Calls 2 Check Your Voice Messages 5 Click to Call 5 Start a Chat 6 Meetings 7 Customize 7 Accessibility 11 Troubleshooting

More information

Core Solutions of Skype for Business 2015

Core Solutions of Skype for Business 2015 Course 20334B: Core Solutions of Skype for Business 2015 Page 1 of 8 Core Solutions of Skype for Business 2015 Course 20334B: 4 days; Instructor-Led Introduction This course teaches IT professionals how

More information

ZULTYS MIXIE REFERENCE GUIDE

ZULTYS MIXIE REFERENCE GUIDE KEYBOARD SHORTCUTS Available MXIE Keyboard Shortcuts A or a D or d H or h P or p R or r T or t V or v Accept a chat invitation Disconnect a chat session or voice call Place an active call on hold or retrieve

More information

Core Solutions of Skype for Business 2015

Core Solutions of Skype for Business 2015 Core Solutions of Skype for Business 2015 OD20334B; On-Demand, Video-based Course Description This course provides students with the knowledge and skills that are required to plan, deploy, configure, and

More information

Deploying, Configuring, and Administering Microsoft Lync Server 2010 (MS 10533A)

Deploying, Configuring, and Administering Microsoft Lync Server 2010 (MS 10533A) Duration 5 Days Description This five day instructor led course teaches IT professionals how to deploy, configure, and administer a Microsoft Lync Server 2010 solution. The course emphasizes Lync Server

More information

[MS20334]: Core Solutions of Skype for Business 2015

[MS20334]: Core Solutions of Skype for Business 2015 [MS20334]: Core Solutions of Skype for Business 2015 Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : Skype Delivery Method : Instructor-led (Classroom) Course Overview This course

More information

UC App for Android Tablet

UC App for Android Tablet UC App for Android Tablet 2018 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic, mechanical, photocopying, recording,

More information

TDS managedip Hosted Unified Communication (UC) User Guide

TDS managedip Hosted Unified Communication (UC) User Guide Installation and Setup To Install the Application: The application is available for both PC and MAC. To download, visit the TDS Support Site at: http://support.tdsmanagedip.com/hosted To log into the Application:

More information

OCS for the Blackboard Learn Platform

OCS for the Blackboard Learn Platform OCS for the Blackboard Learn Platform General Description OCS For the Blackboard Learn Platform (OCS for BB) is a communications suite that brings together the strengths of two products. Microsoft Office

More information

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Lync User guide. Release 6.7

OmniTouch 8400 Instant Communications Suite. My Instant Communicator for Microsoft Lync User guide. Release 6.7 OmniTouch 8400 Instant Communications Suite My Instant Communicator for Microsoft Lync User guide Release 6.7 8AL 90268USAA ed01 Sept 2012 Table of content 1 MY INSTANT COMMUNICATOR FOR MICROSOFT LYNC...

More information

Cisco Jabber User Guide for Mac

Cisco Jabber User Guide for Mac Cisco Jabber User Guide for Mac Cisco Jabber is a unified communication tool to manage phone calls, contacts, voicemail, instant messaging, and your availability status via a software application on your

More information

Competella Unified Communication Suite Release 2.5

Competella Unified Communication Suite Release 2.5 May 15 2018, page 1 of 18 Competella Unified Communication Suite Release 2.5 General The Competella Unified Communication Suite offers professional solutions for contact centers and a switchboard attendant

More information

Cisco HCS License Model

Cisco HCS License Model Introduction, page 1 Cisco HCS User License Bundle, page 4 Cisco HCS Application License Options, page 4 Cisco HCS Management License Options, page 8 Cisco HCS Application Add-on Licenses, page 9 Other

More information

OpenTouch Conversation One 2.2 Contents

OpenTouch Conversation One 2.2 Contents OpenTouch Conversation One 2.2 Contents OpenTouch Conversation One 2.2... 1 1. Startup of OpenTouch Conversation One... 2 1. Select your call device or forward your calls... 2 2. Set manually your presence

More information

Application Notes for Configuring Rauland-Borg Responder 5 to Interoperate with Avaya IP Office Issue 1.0

Application Notes for Configuring Rauland-Borg Responder 5 to Interoperate with Avaya IP Office Issue 1.0 Avaya Solution & Interoperability Test Lab Application Notes for Configuring Rauland-Borg Responder 5 to Interoperate with Avaya IP Office Issue 1.0 Abstract These Application Notes describe a compliance-tested

More information

Mobile User Guide. Blue Platform. ios Apple

Mobile User Guide. Blue Platform. ios Apple Mobile User Guide Blue Platform ios Apple Contents Contents... 1 1 About... 3 2 Disclaimers... 4 3 System Requirements... 5 3.1 Headset Support... 5 4 Getting Started... 6 4.1 Installation... 6 4.2 Sign

More information

Nexmo SIP Trunking Configuration Guide. Avaya Aura With Avaya SBCe

Nexmo SIP Trunking Configuration Guide. Avaya Aura With Avaya SBCe Nexmo SIP Trunking Configuration Guide Avaya Aura 6.3.18.0.631804 With Avaya SBCe 6.3.7-01-12611 June 2017 1 Contents 1 Introduction...4 2 SIP Trunking Network Components...4 2.1 Network Components...4

More information

BroadTouch Business Communicator for iphone

BroadTouch Business Communicator for iphone BroadTouch Business Communicator for iphone User Guide Release 20.0.1 Document Version 1 9737 Washingtonian Boulevard, Suite 350 Gaithersburg, MD 20878 Tel +1 301.977.9440 WWW.BROADSOFT.COM BroadTouch

More information

One Identity Active Roles 7.2. Feature Guide

One Identity Active Roles 7.2. Feature Guide One Identity Active Roles 7.2 Feature Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Application Notes for Plantronics Blackwire C315/C325 USB Corded Headsets with Avaya one-x Attendant - Issue 1.1

Application Notes for Plantronics Blackwire C315/C325 USB Corded Headsets with Avaya one-x Attendant - Issue 1.1 Avaya Solution & Interoperability Test Lab Application Notes for Plantronics Blackwire C315/C325 USB Corded Headsets with Avaya one-x Attendant - Issue 1.1 Abstract These Application Notes describe the

More information

Interdomain Federation Guide for IM and Presence Service on Cisco Unified Communications Manager, Release 11.5(1)SU2

Interdomain Federation Guide for IM and Presence Service on Cisco Unified Communications Manager, Release 11.5(1)SU2 Interdomain Federation Guide for IM and Presence Service on Cisco Unified Communications Manager, Release 11.5(1)SU2 First Published: 2017-11-29 Last Modified: 2017-12-01 Americas Headquarters Cisco Systems,

More information

Hands-On Lab. Part 1: Introduction to the AppFabric Service Bus. Lab version: Last updated: 11/16/2010. Page 1

Hands-On Lab. Part 1: Introduction to the AppFabric Service Bus. Lab version: Last updated: 11/16/2010. Page 1 Hands-On Lab Part 1: Introduction to the AppFabric Service Bus Lab version: 2.0.0 Last updated: 11/16/2010 Page 1 CONTENTS OVERVIEW... 3 GETTING STARTED: CREATING A SERVICE PROJECT... 6 Task 1 Creating

More information

Virtual Communications Express Admin Guide Enable UC Interfaces - Desktop/Mobile/Tablet

Virtual Communications Express Admin Guide Enable UC Interfaces - Desktop/Mobile/Tablet Enable UC Interfaces - Desktop/Mobile/Tablet Features Virtual Communications Express UC Interfaces (Desktop/Mobile/Tablet) provide the following communication features for Standard and Premier Users: Premier

More information

Managing System Center Operations Manager 2007

Managing System Center Operations Manager 2007 Managing System Center Operations Manager 2007 Course No 50028 5 Days Instructor-led, Hands-on Introduction This five-day instructor-led course provides students with the knowledge and skills to managing

More information

AGENT TRAINING USER GUIDE. Instant Chime for Microsoft Lync

AGENT TRAINING USER GUIDE. Instant Chime for Microsoft Lync AGENT TRAINING USER GUIDE Instant Chime for Microsoft Lync April 2018 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies

More information

CHIME 2.6 QUICK GUIDE TO SETUP A HELPDESK QUEUE

CHIME 2.6 QUICK GUIDE TO SETUP A HELPDESK QUEUE CHIME 2.6 QUICK GUIDE TO SETUP A HELPDESK QUEUE May 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software

More information

Configuring Triggers. Viewing and Deleting Triggers

Configuring Triggers. Viewing and Deleting Triggers Configuring Triggers Viewing and Deleting Triggers Adding a Trigger Viewing, Adding, Moving, and Deleting Rules for a Trigger Adding, Editing, and Deleting Conditions for a Trigger Rule Viewing and Deleting

More information

Abstract. _ 1 of 22 2N_VB_SM63_SIP. MC; Reviewed: SPOC 03/25/2014

Abstract. _ 1 of 22 2N_VB_SM63_SIP. MC; Reviewed: SPOC 03/25/2014 Avaya Solution & Interoperability Test Lab Application Notes for Configuring 2N VoiceBlue Next 1.17 with Avaya Aura Communication Manager 6.3 Using a SIP Trunk - Issue 1.0 Abstract These Application Notes

More information

What s new in Office Communications Server 2007 R2

What s new in Office Communications Server 2007 R2 At a glance: Call Delegation, Team Ring, Group Chat Desktop Sharing, Extending Voice and Conferencing Enhancements to Presence, Simplified Management What s new in Office Communications Server 2007 R2

More information

Skype for Business Server 2015

Skype for Business Server 2015 Skype for Business Server 2015 1. část Marian Henč, MCSE, MCT marianhenc@hotmail.com WUG Praha, 20. 6. 2017 Agenda Intro Features and Architecture On-prem vs. Cloud Installation, Configuration and Administration

More information

Business Communicator for iphone

Business Communicator for iphone Business Communicator for iphone User Guide Release 21.0.1 Document Version 1 PAGE 1 Table of Contents 2 About Business Communicator for iphone...4 3 Getting Started...5 3.1 Installation... 5 3.2 Sign

More information

Lotusphere IBM Collaboration Solutions Development Lab

Lotusphere IBM Collaboration Solutions Development Lab Lotusphere 2012 IBM Collaboration Solutions Development Lab Lab#4 IBM Sametime Unified Telephony Lite telephony integration and integrated telephony presence with PBX 1 Introduction: IBM Sametime Unified

More information

Abstract. Avaya Solution & Interoperability Test Lab

Abstract. Avaya Solution & Interoperability Test Lab Avaya Solution & Interoperability Test Lab Application Notes for configuring Axis Communications AB AXIS A8105-E Network Video Door Station with Avaya IP Office Server edition with 500v2 Expansion 10.1

More information

User Management Pack 365

User Management Pack 365 Installation and Administration Manual AudioCodes One Voice for Microsoft Skype for Business User Management Pack 365 Version 7.8 Installation and Administration Guide Contents Table of Contents 1 Introduction...

More information