APPLE PUSH NOTIFICATION IN EMC DOCUMENTUM MOBILE APPLICATION

Size: px
Start display at page:

Download "APPLE PUSH NOTIFICATION IN EMC DOCUMENTUM MOBILE APPLICATION"

Transcription

1 White Paper R APPLE PUSH NOTIFICATION IN EMC R DOCUMENTUM MOBILE APPLICATION Abstract This white paper explains the Integration of Apple push notification service in EMC Documentum Mobile application. The paper explains brief about the Apple push notification, How EMC Documentum Mobile Application leverages this, customer use cases, configuration steps and troubleshooting check list which helps customers in configuring and trouble shooting. December 2012

2 Copyright 2012 EMC Corporation. All Rights Reserved. EMC believes the information in this publication is accurate as of its publication date. The information is subject to change without notice. The information in this publication is provided as is. EMC Corporation makes no representations or warranties of any kind with respect to the information in this publication, and specifically disclaims implied warranties of merchantability or fitness for a particular purpose. Use, copying, and distribution of any EMC software described in this publication requires an applicable software license. For the most up-to-date listing of EMC product names, see EMC Corporation Trademarks on EMC.com. Part Number H11392 Apple Push Notification in EMC Documentum Mobile App 2

3 Table of Contents Executive summary... 4 Audience... 4 Apple Push Notifications... 4 Overview... 4 Apple Push Notification service (APNS)... 5 Feedback Service... 5 Push Notifications in EMC Documentum Mobile Application... 6 How Notifications fits in EMC Documentum Mobile App... 6 Implementation in EMC Documentum Mobile Application... 6 Customer use cases... 6 Implementation Overview... 7 Dm methods used in Push notifications... 7 IT challenges... 8 Configuring Documentum Content Server for Push Notification... 8 Configuring the EMC Documentum Mobile App to receive notifications... 9 Configuring the EMC Documentum Mobile server for Apple push Notifications... 9 Mobile User receives and views the Push Notifications Troubleshooting Conclusion References Apple Push Notification in EMC Documentum Mobile App 3

4 Executive summary The Apple push Notifications are small text messages informs the user about a particular event occurred in the server side. When the user s device receives the push notification, it shows an alert, plays a sound and/or updates the app s icon. The user can launch the app from the alert. The app is given the contents of the push notification and can handle it as it sees fit. EMC Documentum Mobile Application leverages Apple Push Notification service to intimate the mobile users when a task got assigned to that user or when favorite item properties got changed for which the user is subscribed to. The Mobile User will be able to launch the Mobile application from the notification and can perform action intend to do. Paper explains how Push notification works in IOS context and brief about its various components and explains the business use cases in the Documentum context. Explains how EMC Documentum Mobile App achieves this and helps the user in configuring to receive the notifications in the EMC Mobile Application. Trouble shooting section eventually explains a check list of various tests to be performed so that users can resolve issues systematically. Audience This white paper is intended for the Mobile Users to get an understanding of the Apple Push Notifications in the EMC Documentum Application context and helps in configuring and troubleshooting to receive notifications in the Apple Devices. Apple Push Notifications Overview Notifications are a way for ios apps to provide alerts and related information. When using ios 5 or later, user can view notifications in the Notification Center. In ios, apps can t do a lot in the background. Apps are only allowed to do limited set of activities so battery life is conserved. But what if some interesting event happens and let the user know about this, even if they re not currently using the app in the apple device. Apple has a solution for this instead of the app continuously checking for events or doing work in the background, you can write a server-side component to do this instead. And when an event of interest occurs, the server-side component can send the app a push notification. Apple achieves this by using the APNS (Apple push notification Services). Apple Push Notification in EMC Documentum Mobile App 4

5 Apple Push Notification service (APNS) Apple Push Notification service is the centerpiece of the push notifications feature. A notification is a short message consisting of two major pieces of data: the device token and the payload. The device token is analogous to a phone number; it contains information that enables APNs to locate the device on which the client application is installed. APNs also use it to authenticate the routing of a notification. The payload is a JSON-defined property list that specifies how the user of an application on a device is to be alerted. The flow of remote-notification data is oneway. The provider composes a notification package that includes the device token for a client application and the payload. The provider sends the notification to APNs which in turn pushes the notification to the device. The flow of remote-notification data is one-way. The provider composes a notification package that includes the device token 1 for a client application and the payload 2. The provider sends the notification to APNs which in turn pushes the notification to the device. device token 1 : is analogous to a phone number; it contains information that enables APNs to locate the device on which the client application is installed. This is not same as the apple device id. payload 2 : is a JSON-defined property list that specifies how the user of an application on a device is to be alerted. The payload specifies how users are to be alerted to the data waiting to be downloaded to the client application. The maximum size allowed for a notification payload is 256 bytes; Apple Push Notification Service refuses any notification that exceeds this limit. Remember that delivery of notifications is best effort and is not guaranteed and provider should not depend on the remotenotifications facility for delivering critical data to an application via the payload. And never include sensitive data in the payload. You should use it only to notify the user that new data is available. Feedback Service Sometimes device repeatedly refused the notifications while APNs tries to deliver and this happens when the target application is deleted from the device. In this case APNs maintains a list of devices per application for which there were recent, repeated failed attempts to deliver notifications and provider should stop sending notifications to them. Apple Push Notification in EMC Documentum Mobile App 5

6 Push Notifications in EMC Documentum Mobile Application The Documentum Mobile users whom are subscribed for Push notifications will receive notifications when a specific event happened in the Documentum repository. EMC Documentum Mobile Application leverages Apple push notification in the following business for which the users are alerted with a notification. When a Mobile User receives a new task When a favorite item got changed. How Notifications fits in EMC Documentum Mobile App 1. The App registers for Push Notification ios ios a ios asks for a device token EMC Documentum Mobile application -App ID -Provisioning Profile 2. App receives device token 5. APNS pushes notifications to device APNS Server 3. The mobile app sends the Device token to the Server EMC Mobile App Server 4. When MU receives a task or favorite item got changed, server sends notifications to APNS Implementation in EMC Documentum Mobile Application Customer use cases Use case 1: When a Mobile user is working on his ipad/iphone/itouch and not on EMC Documentum Mobile and when an important task got assigned which needs the user s immediate attention, the Mobile User will be alerted about the task so that the task can be addressed immediately. Apple Push Notification in EMC Documentum Mobile App 6

7 Use case 2: When a favorite item got changed in the Documentum Repository for which the User is subscribed to and the same will be alerted to the user with the notification. Implementation Overview The mobile application server is not continuously polling the content server to get the task assignment or favorite item change. The Mobile Application server will get the list of assigned tasks and favorite item with the help a dm_method called MobilePushNotificationmethod. A table mobile_user_info also got created which stores the user information and device token and the active status of the users subscribed for push notifications. Dm methods used in Push notifications The following two methods are created in the content server when emc mobile dar is installed which helps in implementing the Push notification service in Documentum. MobilePushNotificationmethod This dm method polls the respective tables in the content server to get the list of tasks assigned and favorite item changes which will be passed on to the mobile server. AppleFeedBackServiceInvoker This method regularly polls the APNS to get the list of inactive users for which notification delivery failed after repeated attempts by the APNS and these users are deleted from the mobile_user_info table. Organization Network (inside Firewall) Pushes notifications and polls for failed deliveries CONTENT SERVER Task for MU1 EMC Documentum Mobile Server Task for MU3 FI change for MU2 Task for MU2 ch ipad Apple Push Notification in EMC Documentum Mobile App 7

8 IT challenges The provider(here The EMC Mobile App server) communicate with Apple Push Notification service over a binary interface and the same for production environment is available through gateway.push.apple.com, port 2195; the binary interface of the sandbox (development) environment is available through gateway.sandbox.push.apple.com, port The user may establish multiple, parallel connections to the same gateway or to multiple gateway instances. The Mobile Server and ios devices are often behind firewalls so open the TCP port 2195(outbound) for sending the notification to the APNS and 2196(inbound and outbound) for feedback service. The IP address range for the push service is subject to change and it uses a load balancing scheme and the entire /8 address block is assigned to Apple, so can specify that range in your firewall rules accordingly. Configuring Documentum Content Server for Push Notification Follow the steps to configure Push Notifications for EMC Documentum Mobile Application. 1. Install the emc-documentum-mobile.dar to the docbase. 2. Configure the dm methods with Documentum Administrator as follows. 2.1 Configure the MobilePushNotificationmethod Login to Documentum Administrator as an Administrator. Navigate to Administration > Job Management > Jobs. Select MobilePushNotificationJob in the Jobs list page and go to Properties page. Navigate to the Method tab, and click the Edit link in the Arguments field. Enter -mobileserverurl <mobile application server web address> in the Enter new value field of the dialog box that opens, and click Add as follows -mobileserverurl Eg : -mobileserverurl Note: Mobile server supports https protocol also. Select Pass standard arguments in the Method tab, and click OK. The method looks as follows after making the changes. Apple Push Notification in EMC Documentum Mobile App 8

9 2.2 Configure the AppleFeedBackServiceInvoker in the same way as in step 2.1 and looks like the following after making the changes. Configuring the EMC Documentum Mobile App to receive notifications 1. The apple device should be registered with apple and Notifications should be enabled and can be done in the following ways. While opening up the EMC Documentum Mobile for the first time, prompt the Users to enable notifications. User can explicitly turn on the notifications from device Settings-> Notifications and tap the Documentum under In Notification Center. 2. Should create a profile with Show Notification ON. If this is OFF user won t receive any Notifications even if Server pushes notifications to APNS. Configuring the EMC Documentum Mobile server for Apple push Notifications 1. The Mobile Application server should be installed where the notification ports (2195 and 2196) are opened outside the organization firewall. 2. The following property has to be set to true in mobile-client-settings.xml to enable the Show Notifications option in the EMC Documentum Mobile Apps Settings screen. <property name="allow.savepassword" value="true"/> If this is not set to true, the MOBILE USER won t be able to create a profile or modify the existing profile with Show Notifications option ON. Apple Push Notification in EMC Documentum Mobile App 9

10 Mobile User receives and views the Push Notifications The Mobile user can receive the notifications in the following ways. a. As an alert b. As a Banner Mobile User can tap the banner or click on OK button to view the notification content. The app will automatically opens up if not running in the foreground. The user can pull the notifications screen to view all the available notifications. User can configure the way the notifications should appear in the device as shown above from Device settings->notifications->emc Documentum Mobile. Troubleshooting Even if APNS does not guarantee the delivery of the notifications, the MOBILE USERS can try the following if notifications are not received. 1. Check whether the device is connected to Wi-Fi or 3G network. If the device is not connected to the internet, won t be able to receive the notifications. The APNS will attempt to deliver the notifications a number of times and eventually marks a failure status. This in turn deactivates the user and further EMC Documentum Mobile server won t send notifications until and unless the user comes to Active state. The deactivated users can be made as effective by revisiting profile in the settings screen and turn ON the Show Notifications and save the profile which results in changing the user status active. 2. Check the user profile is created with Show Notifications ON. Go to Settings page in the EMC Documentum Mobile Application and tap the arrow next to the user profile. 2.1 Check whether the Show Notifications set to ON. Turn this to ON if this is off. Apple Push Notification in EMC Documentum Mobile App 10

11 2.2 If this is option is not activated, perform step 2 in section Configuring the EMC Documentum Mobile server for Apple push notifications for enabling the same. 3. Check whether the EMC Documentum Mobile App is listed in the Apple Device Notifications center. 3.1 Navigate to the Settings screen in the device, tap Notifications. In the Notifications screen Documentum should be listed as follows. 3.2 If the Documentum App is not listed under In Notification Center, then it will be available in No in Notification center. Tap the arrow next to Documentum and turn ON. This resulted in moving the Documentum under In Notification Center list and subsequently EMC Documentum Mobile App will be able to receive push notifications. 4. Check whether the Mobile User is active to receive notifications Query the mobile_user_info table through DQL editor with the following query Select isactive from mobile_user_info where user_name= <user name> If the query returns value 1 implies the user is still active and able to receive notifications. If the query returns value 0 implies the user is not active and won t be able to receive notifications. In this case the MOBILE USER has to revisit profile in the settings screen and turn ON the Show Notifications and save the profile which results in changing the user status active. Run the same query to ensure the user status turned to active. Apple Push Notification in EMC Documentum Mobile App 11

12 5. Check whether the Notification ports are opened Ensure that the Push Notification and Feedback service ports are opened outside organizational network firewall to contact the APNS server in the EMC Documentum Mobile server machine. 5.1 Push Notification Ports Open a command prompt and type the following telnet gateway.push.apple.com 2195 telnet feedback.push.apple.com 2196 If both are connecting, Mobile User can ensure that the ports are opened and Mobile Server is able to communicate with APNS Server. 5.2 If the above step is failing then do an nlslookup for the both the Apple gateways (gateway.push.apple.com andfeedback.push.apple.com) to get the IP ranges in which Apple allows the connection to the gateway. And ensure with IT security team that the ports are opened to these IP range. Apple periodically changes the IP ranges for security reasons. Conclusion The users would be able to get an understanding of the Apple Push Notification Services and how it is being implemented in the EMC Documentum Context. Explains the customer use cases in which Documentum leveraged the Apple Push Notification services which help in understanding the context of notifications in the Documentum. Briefly tells how to set up the devices to receive notifications and different ways the Mobile Users can receive the notifications. Trouble shooting section helps the users to rectify the common issues in the Push notifications. References APNS ptual/remotenotificationspg/applepushservice/applepushservice.html EMC Documentum Mobile 1.2 Installation Guide ( click on Support > Technical Documentation and Advisories > Software ~ D ~ Documentation > Documentum D > Documentum Mobile > 1.x) Apple Push Notification in EMC Documentum Mobile App 12

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference

Architecture and Data Flow Overview. BlackBerry Enterprise Service 10 721-08877-123 Version: 10.2. Quick Reference Architecture and Data Flow Overview BlackBerry Enterprise Service 10 721-08877-123 Version: Quick Reference Published: 2013-11-28 SWD-20131128130321045 Contents Key components of BlackBerry Enterprise

More information

Wave 4.5. Wave ViewPoint Mobile 2.0. User Guide

Wave 4.5. Wave ViewPoint Mobile 2.0. User Guide Wave 4.5 Wave ViewPoint Mobile 2.0 User Guide 2014 by Vertical Communications, Inc. All rights reserved. Vertical Communications and the Vertical Communications logo and combinations thereof and Applications

More information

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER

DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER White Paper DEPLOYING EMC DOCUMENTUM BUSINESS ACTIVITY MONITOR SERVER ON IBM WEBSPHERE APPLICATION SERVER CLUSTER Abstract This white paper describes the process of deploying EMC Documentum Business Activity

More information

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010

Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 Setting Up a Unisphere Management Station for the VNX Series P/N 300-011-796 Revision A01 January 5, 2010 This document describes the different types of Unisphere management stations and tells how to install

More information

www.novell.com/documentation User Guide Novell iprint 1.1 March 2015

www.novell.com/documentation User Guide Novell iprint 1.1 March 2015 www.novell.com/documentation User Guide Novell iprint 1.1 March 2015 Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents or use of this documentation, and specifically

More information

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide

BlackBerry Enterprise Service 10. Version: 10.2. Configuration Guide BlackBerry Enterprise Service 10 Version: 10.2 Configuration Guide Published: 2015-02-27 SWD-20150227164548686 Contents 1 Introduction...7 About this guide...8 What is BlackBerry Enterprise Service 10?...9

More information

DEPLOYING WEBTOP 6.8 ON JBOSS 6.X APPLICATION SERVER

DEPLOYING WEBTOP 6.8 ON JBOSS 6.X APPLICATION SERVER DEPLOYING WEBTOP 6.8 ON JBOSS 6.X APPLICATION SERVER ABSTRACT This white paper explains how to deploy Webtop 6.8 on JBoss 6.x application server. November 2014 EMC WHITE PAPER To learn more about how EMC

More information

Copyright 2013 EMC Corporation. All Rights Reserved.

Copyright 2013 EMC Corporation. All Rights Reserved. White Paper INSTALLING AND CONFIGURING AN EMC DOCUMENTUM CONTENT TRANSFORMATION SERVICES 7.0 CLUSTER TO WORK WITH A DOCUMENTUM CONTENT SERVER 7.0 CLUSTER IN SECURE SOCKETS LAYER Abstract This white paper

More information

Contents Notice to Users

Contents  Notice to Users Web Remote Access Contents Web Remote Access Overview... 1 Setting Up Web Remote Access... 2 Editing Web Remote Access Settings... 5 Web Remote Access Log... 7 Accessing Your Home Network Using Web Remote

More information

Setup for Windows XP Connect to your Windows XP machine with: FileBrowser, NetPortal & ServerControl

Setup for Windows XP Connect to your Windows XP machine with: FileBrowser, NetPortal & ServerControl Connect to your Windows XP machine with: FileBrowser, NetPortal & ServerControl Copyright Stratospherix 2010 Apple, the Apple logo, ipod, ipod touch, and itunes are trademarks of Apple Inc., registered

More information

Preparing for GO!Enterprise MDM On-Demand Service

Preparing for GO!Enterprise MDM On-Demand Service Preparing for GO!Enterprise MDM On-Demand Service This guide provides information on...... An overview of GO!Enterprise MDM... Preparing your environment for GO!Enterprise MDM On-Demand... Firewall rules

More information

Managing the SSL Certificate for the ESRS HTTPS Listener Service Technical Notes P/N 300-011-843 REV A01 January 14, 2011

Managing the SSL Certificate for the ESRS HTTPS Listener Service Technical Notes P/N 300-011-843 REV A01 January 14, 2011 Managing the SSL Certificate for the ESRS HTTPS Listener Service Technical Notes P/N 300-011-843 REV A01 January 14, 2011 This document contains information on these topics: Introduction... 2 Terminology...

More information

Wind River Financial iprocess Setup Guide for IOS Devices

Wind River Financial iprocess Setup Guide for IOS Devices Wind River Financial iprocess Setup Guide for IOS Devices (Requires ios 4.3 or later. Compatible with iphone, ipad, and ipod touch. This app is optimized for iphone 5.) Table of Contents (Clickable Links):

More information

freesshd SFTP Server on Windows

freesshd SFTP Server on Windows freesshd SFTP Server on Windows Configuration Steps: Setting up the Bridgestone User ID... 2 Setup the freesshd Server... 3 Login as the Bridgestone User ID using WinSCP... 5 Create Default Bridgestone

More information

SMTP POP3 SETUP FOR EMC DOCUMENTUM eroom

SMTP POP3 SETUP FOR EMC DOCUMENTUM eroom White Paper SMTP POP3 SETUP FOR EMC DOCUMENTUM eroom Abstract This white paper explains how to setup SMTP POP3 on Internet Information Services (IIS). This guide also explains about how to install and

More information

Prerequisites Guide for ios

Prerequisites Guide for ios Prerequisites Guide for ios Prerequisites Guide for ios This document includes the following topics: Overview Apple Developer Membership Requirement Prerequisites for Mobile Device Management Prerequisites

More information

UC Office for Smart Phone - iphone Edition

UC Office for Smart Phone - iphone Edition UC Office for Smart Phone - iphone Edition User Guide Revision 1.0 GCI Ltd Global House 2 Crofton Close Lincoln Lincolnshire LN3 4NT www.gcicom.net Copyright GCI 2013 GCI UC Office iphone User Guide 1

More information

Process Integrator Deployment on IBM Webspher Application Server Cluster

Process Integrator Deployment on IBM Webspher Application Server Cluster White Paper Process Integrator Deployment on IBM Webspher Application Server Cluster A user guide for deploying Process integrator on websphere application server 7.0.0.9 cluster Abstract This paper describes

More information

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide

Live Maps. for System Center Operations Manager 2007 R2 v6.2.1. Installation Guide Live Maps for System Center Operations Manager 2007 R2 v6.2.1 Installation Guide CONTENTS Contents... 2 Introduction... 4 About This Guide... 4 Supported Products... 4 Understanding Live Maps... 4 Live

More information

Web Remote Access. User Guide

Web Remote Access. User Guide Web Remote Access User Guide Notice to Users 2005 2Wire, Inc. All rights reserved. This manual in whole or in part, may not be reproduced, translated, or reduced to any machine-readable form without prior

More information

ManageEngine Desktop Central. Mobile Device Management User Guide

ManageEngine Desktop Central. Mobile Device Management User Guide ManageEngine Desktop Central Mobile Device Management User Guide Contents 1 Mobile Device Management... 2 1.1 Supported Devices... 2 1.2 What Management Operations you can Perform?... 2 2 Setting Up MDM...

More information

Audit Management for EMC Documentum Web Development Kit 6.7-based Applications

Audit Management for EMC Documentum Web Development Kit 6.7-based Applications White Paper Audit Management for EMC Documentum Abstract This white paper explains the process of enabling, searching, and purging audit on specific types of objects in Web Development Kit-based applications.

More information

VoIPon www.voipon.co.uk sales@voipon.co.uk Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299

VoIPon www.voipon.co.uk sales@voipon.co.uk Tel: +44 (0)1245 808195 Fax: +44 (0)1245 808299 VoiceGear/3CX Integration Guide Ver.0.1 Page 2 1. OVERVIEW... 3 1.1 SETTING UP 3CX PBX...4 1.2 SETTING UP VOICEGEAR GATEWAY...5 2. VOICEGEAR-3CX SIP INTEGRATION... 6 2.1 3CX CONFIGURATION...7 2.2 VOICEGEAR

More information

Email setup information for most domains hosted with InfoRailway.

Email setup information for most domains hosted with InfoRailway. Email setup information for most domains hosted with InfoRailway. Incoming server (POP3): pop.secureserver.net port 995 (SSL) Incoming server (IMAP): imap.secureserver.net port 993 (SSL) Outgoing server

More information

Mobility Manager 9.5. Installation Guide

Mobility Manager 9.5. Installation Guide Mobility Manager 9.5 Installation Guide LANDESK MOBILITY MANAGER Copyright 2002-2013, LANDesk Software, Inc. and its affiliates. All rights reserved. LANDesk and its logos are registered trademarks or

More information

Mobile App User's Guide

Mobile App User's Guide Mobile App User's Guide Copyright Statement Copyright Acronis International GmbH, 2002-2012. All rights reserved. "Acronis", "Acronis Compute with Confidence", "Acronis Recovery Manager", "Acronis Secure

More information

EMC Documentum Content Services for SAP Document Controllers

EMC Documentum Content Services for SAP Document Controllers EMC Documentum Content Services for SAP Document Controllers Version 6.0 User Guide P/N 300 005 439 Rev A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright

More information

QuickStart Guide for Mobile Device Management

QuickStart Guide for Mobile Device Management QuickStart Guide for Mobile Device Management Version 8.5 Inventory Configuration Security Management Distribution JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made

More information

ITP 342 Mobile App Development. Notifications

ITP 342 Mobile App Development. Notifications ITP 342 Mobile App Development Notifications 3 Types Apple provides three different types of notifications in ios: NSNotificationCenter, UILocalNotification (Local Notifications), and Remote (Push) Notifications.

More information

Integrate Check Point Firewall

Integrate Check Point Firewall Integrate Check Point Firewall EventTracker Enterprise Publication Date: Oct.26, 2015 EventTracker 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com Abstract The purpose of this document is

More information

EMC CLARiiON Secure Remote Support Solutions Technical Notes P/N 300-006-009 REV A03 October 5, 2010

EMC CLARiiON Secure Remote Support Solutions Technical Notes P/N 300-006-009 REV A03 October 5, 2010 EMC CLARiiON Secure Remote Support Solutions Technical Notes P/N 300-006-009 REV A03 October 5, 2010 This technical note discusses the benefits, value, and implementation of EMC Secure Remote Support solutions

More information

Configuration Guide. BES12 Cloud

Configuration Guide. BES12 Cloud Configuration Guide BES12 Cloud Published: 2016-04-08 SWD-20160408113328879 Contents About this guide... 6 Getting started... 7 Configuring BES12 for the first time...7 Administrator permissions you need

More information

EMC Documentum xcelerated Composition Platform

EMC Documentum xcelerated Composition Platform EMC Documentum xcelerated Composition Platform Version 6.5 SP2 Grants Management Sample Application Technical Reference Guide P/N 300-009-604 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103

More information

Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com

Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com Manual Copyright 2013, 3CX Ltd. http://www.3cx.com E-mail: info@3cx.com Information in this document is subject to change without notice. Companies names and data used in examples herein are fictitious

More information

QuickStart Guide for Mobile Device Management. Version 8.6

QuickStart Guide for Mobile Device Management. Version 8.6 QuickStart Guide for Mobile Device Management Version 8.6 JAMF Software, LLC 2012 JAMF Software, LLC. All rights reserved. JAMF Software has made all efforts to ensure that this guide is accurate. JAMF

More information

Automating client deployment

Automating client deployment Automating client deployment 1 Copyright Datacastle Corporation 2014. All rights reserved. Datacastle is a registered trademark of Datacastle Corporation. Microsoft Windows is either a registered trademark

More information

Getting Started with Apple Pay on the Authorize.Net Platform

Getting Started with Apple Pay on the Authorize.Net Platform Title Page Getting Started with Apple Pay on the Authorize.Net Platform September 2014 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC

More information

CaseWare Time. CaseWare Cloud Integration Guide. For Time 2015 and CaseWare Cloud

CaseWare Time. CaseWare Cloud Integration Guide. For Time 2015 and CaseWare Cloud CaseWare Time CaseWare Cloud Integration Guide For Time 2015 and CaseWare Cloud Copyright and Trademark Notice Copyright. 2015 CaseWare International Inc. ( CWI ). All Rights Reserved. Use, duplication,

More information

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application

Kony MobileFabric Messaging. Demo App QuickStart Guide. (Building a Sample Application Kony MobileFabric Kony MobileFabric Messaging Demo App QuickStart Guide (Building a Sample Application Apple ios) Release 6.5 Document Relevance and Accuracy This document is considered relevant to the

More information

Configuring Single Sign-On for Documentum Applications with RSA Access Manager Product Suite. Abstract

Configuring Single Sign-On for Documentum Applications with RSA Access Manager Product Suite. Abstract Configuring Single Sign-On for Documentum Applications with RSA Access Manager Product Suite Abstract This white paper outlines the deployment and configuration of a Single Sign-On solution for EMC Documentum

More information

OneLogin Integration User Guide

OneLogin Integration User Guide OneLogin Integration User Guide Table of Contents OneLogin Account Setup... 2 Create Account with OneLogin... 2 Setup Application with OneLogin... 2 Setup Required in OneLogin: SSO and AD Connector...

More information

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions

IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions IBM WebSphere Partner Gateway V6.2.1 Advanced and Enterprise Editions Integrated SFTP server 2011 IBM Corporation The presentation gives an overview of integrated SFTP server feature IntegratedSFTPServer.ppt

More information

EMC Smarts Network Configuration Manager

EMC Smarts Network Configuration Manager EMC Smarts Network Configuration Manager Version 9.4.1 Advisors User Guide P/N 302-002-279 REV 01 Copyright 2013-2015 EMC Corporation. All rights reserved. Published in the USA. Published October, 2015

More information

Authorize.Net Mobile Application

Authorize.Net Mobile Application Authorize.Net Mobile Application ios User Guide October 2015 Authorize.Net Developer Support http://developer.authorize.net Authorize.Net LLC 082007 Ver.2.0 Authorize.Net LLC ( Authorize.Net ) has made

More information

Generating an Apple Push Notification Service Certificate

Generating an Apple Push Notification Service Certificate www.novell.com/documentation Generating an Apple Push Notification Service Certificate ZENworks Mobile Management 2.6.x January 2013 Legal Notices Novell, Inc., makes no representations or warranties with

More information

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15

Product Manual. MDM On Premise Installation Version 8.1. Last Updated: 06/07/15 Product Manual MDM On Premise Installation Version 8.1 Last Updated: 06/07/15 Parallels IP Holdings GmbH Vordergasse 59 8200 Schaffhausen Switzerland Tel: + 41 52 632 0411 Fax: + 41 52 672 2010 www.parallels.com

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios with TouchDown GO!Enterprise MDM for ios Devices, Version 3.x GO!Enterprise MDM for ios with TouchDown 1 Table of

More information

Integration Module for BMC Remedy Helpdesk

Integration Module for BMC Remedy Helpdesk EMC VoyenceControl Integration Module version 4.0.1 BMC REMEDY HELPDESK P/N 300-007-481 REV A01 EMC Corporation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com COPYRIGHT Copyright

More information

Cloud Services MDM. ios User Guide

Cloud Services MDM. ios User Guide Cloud Services MDM ios User Guide 10/24/2014 CONTENTS Overview... 3 Supported Devices... 3 System Capabilities... 3 Enrollment and Activation... 4 Download the Agent... 4 Enroll Your Device Using the Agent...

More information

NovaBACKUP xsp Version 15.0 Upgrade Guide

NovaBACKUP xsp Version 15.0 Upgrade Guide NovaBACKUP xsp Version 15.0 Upgrade Guide NovaStor / November 2013 2013 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject

More information

QMX ios MDM Pre-Requisites and Installation Guide

QMX ios MDM Pre-Requisites and Installation Guide QMX ios MDM Pre-Requisites and Installation Guide QMX System Requirements The following requirements apply to the system that QMX will be installed on. This system will host the QMX MDM Service. These

More information

Mobile Device Management Version 8. Last updated: 17-10-14

Mobile Device Management Version 8. Last updated: 17-10-14 Mobile Device Management Version 8 Last updated: 17-10-14 Copyright 2013, 2X Ltd. http://www.2x.com E mail: info@2x.com Information in this document is subject to change without notice. Companies names

More information

Dolphin Ocean Server and Dolphin Mobile Client Installation Guide for Android and ios. May 2012

Dolphin Ocean Server and Dolphin Mobile Client Installation Guide for Android and ios. May 2012 Dolphin Ocean Server and Dolphin Mobile Client Installation Guide for Android and ios May 2012 Patterson Dental Supply, Inc dba Dolphin Imaging and Management Solutions 9200 Eton Avenue Chatsworth, CA

More information

Quick Start Guide: Iridium GO! Advanced Portal

Quick Start Guide: Iridium GO! Advanced Portal Quick Start Guide: Iridium GO! Advanced Portal Contents Set-Up... 3 Overview... 4 Main Tab 1: General... 5 Status.... 5 Settings... 8 Audio.... 8 GPS.... 9 Tab 2: Communication... 9 Wi-Fi... 9 Satellite...

More information

Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123. Instructor Manual

Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123. Instructor Manual Troubleshooting BlackBerry Enterprise Service 10 version 10.1.1 726-08745-123 Instructor Manual Published: 2013-07-02 SWD-20130702091645092 Contents Advance preparation...7 Required materials...7 Topics

More information

SPC Connect Configuration Manual V1.0

SPC Connect Configuration Manual V1.0 SPC Connect Configuration Manual V1.0 I-200090-1 28.11.2014 Copyright Copyright Technical specifications and availability subject to change without notice. Copyright Siemens AB We reserve all rights in

More information

Mobile Configuration Profiles for ios Devices Technical Note

Mobile Configuration Profiles for ios Devices Technical Note Mobile Configuration Profiles for ios Devices Technical Note Mobile Configuration Profiles for ios Devices Technical Note December 10, 2013 04-502-197517-20131210 Copyright 2013 Fortinet, Inc. All rights

More information

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note

BlackBerry Enterprise Service 10. Secure Work Space for ios and Android Version: 10.1.1. Security Note BlackBerry Enterprise Service 10 Secure Work Space for ios and Android Version: 10.1.1 Security Note Published: 2013-06-21 SWD-20130621110651069 Contents 1 About this guide...4 2 What is BlackBerry Enterprise

More information

EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide

EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide White Paper EMC Documentum Interactive Delivery Services Accelerated: Step-by-Step Setup Guide A Detailed Review Abstract This white paper is a step-by-step setup guide for users who would like to utilize

More information

ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX

ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX White Paper ENABLING SINGLE SIGN-ON FOR EMC DOCUMENTUM WDK-BASED APPLICATIONS USING IBM WEBSEAL ON AIX Abstract This white paper explains how you can use the IBM Tivoli Access Manager for e-business WebSEAL

More information

Synchronization Agent Configuration Guide

Synchronization Agent Configuration Guide SafeNet Authentication Service Synchronization Agent Configuration Guide 1 Document Information Document Part Number 007-012476-001, Revision A Release Date July 2014 Trademarks All intellectual property

More information

Remote Desktop Solution, (RDS), replacing CITRIX Home Access

Remote Desktop Solution, (RDS), replacing CITRIX Home Access Remote Desktop Solution, (RDS), replacing CITRIX Home Access RDS Applications on a Computer Overview RDS has replaced citrix for remote access at home for College staff and pupils. This does not replace

More information

Sophos Mobile Control Startup guide. Product version: 3.5

Sophos Mobile Control Startup guide. Product version: 3.5 Sophos Mobile Control Startup guide Product version: 3.5 Document date: July 2013 Contents 1 About this guide...3 2 What are the key steps?...5 3 Log in as a super administrator...6 4 Activate Sophos Mobile

More information

Dashboard Admin Guide

Dashboard Admin Guide MadCap Software Dashboard Admin Guide Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document

More information

Soft Solutions, Inc. 4-Sight FAX 7.5. Getting Started. Soft Solutions, Inc. http://www.4sightfax.com/

Soft Solutions, Inc. 4-Sight FAX 7.5. Getting Started. Soft Solutions, Inc. http://www.4sightfax.com/ 4-Sight FAX 7.5 Getting Started Soft Solutions, Inc. http://www.4sightfax.com/ Introduction Thank you for your interest in 4-Sight FAX version 7.5. This guide documents the general configuration for using

More information

Installation Guide For ChoiceMail Enterprise Edition

Installation Guide For ChoiceMail Enterprise Edition Installation Guide For ChoiceMail Enterprise Edition How to Install ChoiceMail Enterprise On A Server In Front Of Your Company Mail Server August, 2004 Version 2.6x Copyright DigiPortal Software, 2002-2004

More information

Installation Guide. Live Maps 7.4 for System Center 2012

Installation Guide. Live Maps 7.4 for System Center 2012 Installation Guide Live Maps 7.4 for System Center 2012 1 Introduction... 4 1.1 1.2 About This Guide... 4 Supported Products... 4 1.3 1.4 Related Documents... 4 Understanding Live Maps... 4 1.5 Upgrade

More information

Mobile Iron User Guide

Mobile Iron User Guide 2015 Mobile Iron User Guide Information technology Sparrow Health System 9/1/2015 Contents...0 Introduction...2 Changes to your Mobile Device...2 Self Service Portal...3 Registering your new device...4

More information

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT

IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT White Paper IBM WEBSPHERE LOAD BALANCING SUPPORT FOR EMC DOCUMENTUM WDK/WEBTOP IN A CLUSTERED ENVIRONMENT Abstract This guide outlines the ideal way to successfully install and configure an IBM WebSphere

More information

Mobility Manager 9.5. Users Guide

Mobility Manager 9.5. Users Guide Mobility Manager 9.5 Users Guide LANDESK MOBILITY MANAGER Copyright 2002-2013, LANDesk Software, Inc. and its affiliates. All rights reserved. LANDesk and its logos are registered trademarks or trademarks

More information

Abila Nonprofit Online. Connection Guide

Abila Nonprofit Online. Connection Guide Abila Nonprofit Online This is a publication of Abila, Inc. 2014 Abila, Inc. and its affiliated entities. All rights reserved. Abila, the Abila logos, and the Abila product and service names mentioned

More information

ios Deployment Simplified FileMaker How To Guide

ios Deployment Simplified FileMaker How To Guide ios Deployment Simplified FileMaker How To Guide Table of Contents FileMaker How To Guide Introduction... 3 Deployment Options... 3 Option 1 Transfer to the ios device... 3 Option 2 - Host with FileMaker

More information

EMC Celerra Network Server

EMC Celerra Network Server EMC Celerra Network Server Release 5.6.47 Using Windows Administrative Tools with Celerra P/N 300-004-139 REV A02 EMC Corporation Corporate Headquarters: Hopkintons, MA 01748-9103 1-508-435-1000 www.emc.com

More information

Simplifying Device Enrollment and Content Distribution Using the Device Enrollment Program, the Volume Purchase Program, and the Casper Suite

Simplifying Device Enrollment and Content Distribution Using the Device Enrollment Program, the Volume Purchase Program, and the Casper Suite Simplifying Device Enrollment and Content Distribution Using the Device Enrollment Program, the Volume Purchase Program, and the Casper Suite Technical Paper Casper Suite v9.6 or Later 14 August 2015 JAMF

More information

Interworks. Interworks Cloud Platform Installation Guide

Interworks. Interworks Cloud Platform Installation Guide Interworks Interworks Cloud Platform Installation Guide Published: March, 2014 This document contains information proprietary to Interworks and its receipt or possession does not convey any rights to reproduce,

More information

About. IP Centrex App for ios Tablet. User Guide

About. IP Centrex App for ios Tablet. User Guide About IP Centrex App for ios Tablet User Guide December, 2015 1 2015 by Cox Communications. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, electronic,

More information

Sophos Mobile Control SaaS startup guide. Product version: 6

Sophos Mobile Control SaaS startup guide. Product version: 6 Sophos Mobile Control SaaS startup guide Product version: 6 Document date: January 2016 Contents 1 About this guide...4 2 About Sophos Mobile Control...5 3 What are the key steps?...7 4 Change your password...8

More information

Device LinkUP + Desktop LP Guide RDP

Device LinkUP + Desktop LP Guide RDP Device LinkUP + Desktop LP Guide RDP Version 2.1 January 2016 Copyright 2015 iwebgate. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

More information

ipad Classroom Installation & Deployment Important information

ipad Classroom Installation & Deployment Important information ipad Classroom Installation & Deployment Important information Our aim is to carry out your installation as quickly and efficiently as possible whilst utilising Apple s recommended procedures for the deployment

More information

How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365

How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 How to configure your Desktop Computer and Mobile Devices post migrating to Microsoft Office 365 1 Contents Purpose... 3 Office 365 Mail Connections... 3 Finding IMAP server... 3 Desktop computers... 4

More information

ViewPoint Mobile Quick Start Guide

ViewPoint Mobile Quick Start Guide ViewPoint Mobile Quick Start Guide Step 1 Download the ViewPoint Mobile application. This MUST be done on the ios device, NOT the computer you sync your ios device with. The application will automatically

More information

Configuring GTA Firewalls for Remote Access

Configuring GTA Firewalls for Remote Access GB-OS Version 5.4 Configuring GTA Firewalls for Remote Access IPSec Mobile Client, PPTP and L2TP RA201010-01 Global Technology Associates 3505 Lake Lynda Drive Suite 109 Orlando, FL 32817 Tel: +1.407.380.0220

More information

Lutron Home Control Remote Access FAQ

Lutron Home Control Remote Access FAQ Lutron Home Control Remote Access FAQ What software versions of RadioRA 2 / HomeWorks QS / Lutron Home Control App does remote access work with? RadioRA 2 version 6.1.0 and up HomeWorks QS version 5.0.3

More information

Migrating to Azure SQL Database

Migrating to Azure SQL Database Migrating to Azure SQL Database Contents Azure account required for lab... 3 SQL Azure Migration Wizard Overview... 3 Provisioning an Azure SQL Database... 4 Exercise 1: Analyze and resolve... 8 Exercise

More information

Mobile App User's Guide

Mobile App User's Guide Mobile App User's Guide Copyright Statement Copyright Acronis International GmbH, 2002-2012. All rights reserved. "Acronis", "Acronis Compute with Confidence", "Acronis Recovery Manager", "Acronis Secure

More information

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS

TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS White Paper TROUBLESHOOTING RSA ACCESS MANAGER SINGLE SIGN-ON FOR WEB-BASED APPLICATIONS Abstract This white paper explains how to diagnose and troubleshoot issues in the RSA Access Manager single sign-on

More information

SonicWALL Mobile Connect. Mobile Connect for OS X 3.0. User Guide

SonicWALL Mobile Connect. Mobile Connect for OS X 3.0. User Guide SonicWALL Mobile Connect Mobile Connect for OS X 3.0 User Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your system. CAUTION: A CAUTION

More information

EMR Link Server Interface Installation

EMR Link Server Interface Installation EMR Link Server Interface Installation Version 1.0 ** INTRODUCTION ** If you would like assistance with installation, please contact our preferred support provider at support@bonecomputer.com, or call

More information

VMware Software Manager - Download Service User's Guide

VMware Software Manager - Download Service User's Guide VMware Software Manager - Download Service User's Guide VMware Software Manager 1.1 This document supports the version of each product listed and supports all subsequent versions until the document is

More information

Download/Install IDENTD

Download/Install IDENTD Download/Install IDENTD IDENTD is the small software program that must be installed on each user s computer if multiple filters are to be used in ComSifter. The program may be installed and executed locally

More information

The Barracuda Network Connector. System Requirements. Barracuda SSL VPN

The Barracuda Network Connector. System Requirements. Barracuda SSL VPN Barracuda SSL VPN The Barracuda SSL VPN allows you to define and control the level of access that your external users have to specific resources inside your internal network. For users such as road warriors

More information

SafeNet MobilePASS Version 8.2.0, Revision B

SafeNet MobilePASS Version 8.2.0, Revision B SafeNet MobilePASS Version 8.2.0, Revision B User Guide Software Version 8.2.0 Documentation Version: 20101118 2012 SafeNet, Inc. All rights reserved Preface All intellectual property is protected by copyright.

More information

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager

EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager EMC ViPR Controller Add-in for Microsoft System Center Virtual Machine Manager Version 2.3 Installation and Configuration Guide 302-002-080 01 Copyright 2013-2015 EMC Corporation. All rights reserved.

More information

BT Lancashire Services

BT Lancashire Services In confidence BT Lancashire Services Remote Access to Corporate Desktop (RACD) Getting Started Guide Working in partnership Confidentiality Statement BT Lancashire Services Certain information given to

More information

RESCO MOBILE CRM USER GUIDE. Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8

RESCO MOBILE CRM USER GUIDE. Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8 RESCO MOBILE CRM USER GUIDE Access your CRM data on any mobile platform ipad, iphone, Android, Windows Phone or Win XP/Vista/7/8 Contents Synchronization... 1 1.1. How to synchronize your device... 1 1.2.

More information

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios Devices

GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios Devices GO!Enterprise MDM Device Application User Guide Installation and Configuration for ios Devices GO!Enterprise MDM for ios Devices, Version 3.x GO!Enterprise MDM for ios Devices 1 Table of Contents GO!Enterprise

More information

How To Use Senior Systems Cloud Services

How To Use Senior Systems Cloud Services Senior Systems Cloud Services In this guide... Senior Systems Cloud Services 1 Cloud Services User Guide 2 Working In Your Cloud Environment 3 Cloud Profile Management Tool 6 How To Save Files 8 How To

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

Telstra Mobile Device Management (T MDM) Getting Started Guide

Telstra Mobile Device Management (T MDM) Getting Started Guide Telstra Mobile Device Management (T MDM) Getting Started Guide Welcome Thank you for your interest in T MDM and Welcome! In this guide we will take you through the steps to enrolling your first device

More information

LanSchool 7.7. Classroom Management Software Installation Guide for the Teacher s Assistant on the ipad, iphone, ipod

LanSchool 7.7. Classroom Management Software Installation Guide for the Teacher s Assistant on the ipad, iphone, ipod LanSchool 7.7 Classroom Management Software Installation Guide for the Teacher s Assistant on the ipad, iphone, ipod Page 1 Table of Contents Table of Contents 2 About LanSchool v7.7 for the ipad 3 Supported

More information