Configuring and Using Osmosis Platform

Size: px
Start display at page:

Download "Configuring and Using Osmosis Platform"

Transcription

1 Configuring and Using Osmosis Platform

2 Index 1. Registration 2. Login 3. Device Creation 4. Node Creation 5. Sending Data from REST Client 6. Checking data received 7. Sending Data from Device 8. Define Rule 9. Define Alarm 10. Trigger Alarm 11. Creating and using Client Groups 12. Creating and using User Groups

3 1 Registration Go to and click on registration button which is there on top right of Axelta website Then provide your basic information and submit it. Once you register with the Axelta, you will get activation link to provided ID by clicking on it you can activate your account. For reference go through the below screen shots [screen 1-3]. Screen 1

4 Screen 2 Screen 3

5 2 Login Go to and click on Login button on top right corner Provide your user name and password Screen 3

6 3 Create a new device Once you are logged in to the Axelta, click on Devices option which is there at left side of the page, then click on New button to create new device. For the reference check the below screen (screen -4). Screen 4 While creating the device provide information as mentioned below o Device Number can be anything as your choice o Select the client name (your organization name which has provided by you at the time of Registration) o Select device type o Select client group, by default client group is Generic Group. You can also create your own client groups and you can assign any device to it (we have separate chapter on Client Groups ) Here based on your device (sensor), DeviceType can be selected In this demo we have selected device type as Generic (refer screen 5) After providing above information click on Create button to create the device.

7 Screen 5 To check the created devices list click on the Devices option from the left side bar of the page. You will be use some of the information like device number, device key, device type and client name when you start sending the information to the Osmosis Platform. Screen 6

8 4 Add Node Each device can potentially have multiple "nodes" representing the edge devices where the sensor or actuators are placed. Click on device key to take you to device edit screen. (Refer screen 6). Click on Edit button which will show you Add New Node button in the lower half Screen 7 Click Add New Node button and provide node number, asset name, property1 and property2 (As we selected device type as generic in screen 5), click on Add button. (refer screen 8) Node number will also be required while passing data to the OSMOSIS PLATFORM. Here Alarm1 and Alarm2 are optional. Their configuration and usage details are provided in further sections.

9 Screen 8 Screen 9

10 5. Send Data from REST Client: In order to test your device set up and configuration, suggest you first use a browser based REST client You will need to add a plug-in to your browser - Example below is for Google chrome. In Google search engine search as rest client for chrome browser and select the top search link and Launch the app. Check below screens (screen 10-12) for reference Screen 10 Screen11

11 Screen 12 Plug-in is added to your browser, provide the necessary information to the REST client (given below) and send it. URL : HTTP Method : POST JSON Object : { "device_no":"demo123", "node_no":"001", "device_key":" 68U40UGMEYXPF9JMWMGV ", "client":"axetapvtltd", "device_type":"generic", // Optional fields based on your requirements. "Parmeter1":"123.23", "Parmeter2":"open", } Above JSON object is formed from the screen 6 and 9, as per your configuration details JSON will be changed. As device type is generic we have added Event : Open to the JSON object, as your requirement you can change it. Once you provide the above information to the REST Client then click on send button. For successful posting of data you will get the response code as 200. (refer screen 13)

12 Screen Checking data received Click on Devices (from the left side panel). Select your device from the device list (refer screen 6) by clicking on the device key to see the list of nodes for the device. Then click on node data option (which is available beside the node number) to see the node data. (Refer screen 14) Screen 14

13 7 Send Data from Device - Using Java Client The client uses Jersey reference implementation. Therefore you would need to add jersey-bundle-1.14.jar ( ) to your class path. Java code : import com.sun.jersey.api.client.client; import com.sun.jersey.api.client.clientresponse; import com.sun.jersey.api.client.webresource; public class JsonClient { public static void main(string[] args) { try { Client client = Client.create(); // configuring the URL WebResource webresource = client.resource(" // JSON Object String input = "{\"device_no\":\"demo123\",\"device_key\":\"68u40ugmeyxpf9jmwmgv\",\"node_no\":\"001\",\"client\":\"axetapvtltd\",\"device_type \":\"Generic\",\"Property1\":\"123.23\"}"; ClientResponse response = webresource.type("application/json").post(clientresponse.class, input); // reading response code if (response.getstatus() == 200) System.out.println("data posted successfully!"); else System.out.println("Problem occurred in data posting!"); } catch (Exception e) { e.printstacktrace(); } } } Similar approach can be used while sending data from an embedded device by creating an http connection 8 Define Business Rule Through rules, you can control any alarms or workflows in the system. Rules are created and assigned to alarms; Alarms are triggered based on certain action of the device. Select the Rule option from the left panel of the page and click New button to create new rule (refer screen 15).

14 Screen 15 Screen 16 Check the above screen and provide information as your requirement. Rule name can be as per your choice Select Device type based on the your device Description is optional Rule Definition :

15 In above screen we it means this rule will be executed whenever the Parameter1 is above a certain level [120 in this case]. You can add combination of parameters to define the rule. Click on "validate" to check the syntax of the rule. Please get in touch with us in case your rules are more complex and you want to use the plugin facility provided in the platform. We have an API available that can be used for this purpose. Click on "create" button. Screen 17

16 9. Create Alarm Alarm is created and configured for a device and it will be triggered based on information being sent by the device Click on Alarm from the left side panel of the page and select new button to create new alarm (refer screen 18) Screen 18

17 Screen 19 Check the screen 19 and provide information to create Alarm Alarm Name can be as per your choice. Alarm type: Alarm type needs to be selected as your need (SMS or Call or or Android Notification) o SMS: A text message is sent to the configured user at a device level o Call: A notification will be posted with the message in the command centre screen [you can check them though traffic signal lights on top right hand side] o An will be sent to the selected user at the device level o Android Notification: A push notification [using GCM] will be sent. Please get in touch with us for building your client app to enable push notifications] Rule Name : Select the rule name that was created earlier (refer - 17) Message: Message that needs to be sent at the time of triggering Alarm Click on Create button.

18 Screen 20

19 10 Configure Alarm Till now we created a rule and assigned that rule to the Alarm This alarm now needs to be assigned to a device. Select Devices from the left panel of the page and click on device key to see the nodes information. Follow the below screens (screen 21-25) to assign above created alarm to the device. Screen 21 Screen 22 Alarm1: Select the alarm name After alarm name is selected the user name to trigger alarm to the selected user (Refer screen 23).

20 Screen 23 Screen 24 Test the alarm configuration by again sending data to the platform using REST client. Refer screen 12 to send the data, once we send the data to the OSMOSIS alarm will be triggered and message will be send to configured user. Here alarm will be triggered as we are created rule and also we are sending Parameter1: 120 from the device (check the below JSON Object)

21 { "device_no":"demo123", "node_no":"001", "device_key":"68u40ugmeyxpf9jmwmgv", "client":"axetapvtltd", "device_type":"generic", "Parameter1":"123.23" }

22 11 Creating and using Client Groups Client group is used to assign set of devices to a particular client group which makes user to manage his devices in easy way. Typically applicable when there are different departments and branches and you want to control access to them Click on Client Group from the left side panel of the page and select NEW button to create new client group (Refer screen 25). Generic Group is the default group. Screen 25 Provide information and click on create button (Refer screen 27). Client Group Name can be as per your choice Description is optional Client name needs to be select

23 Screen 26 Screen 27

24 Screen 28 List client groups by clicking on Client Groups option from the left panel. Devices can now be assigned to client group Click on client name to see the client group information (Refer screen 29) Screen 29

25 Click on edit button Follow steps as per screen Screen 30 Screen 31 Search for the device that you want assign to the group - refer screen 32 Once you get the required device information select check box and click on update button refer screen 33 In same way you can add or remove any number of devices to the client group

26 Screen 32 Screen 33

27 Screen 34

28 12 Creating and using User Groups User groups are used to provide granular level access control to users based on their roles. It defines what action can a user perform You can create user groups and assign permissions (create, view, update, delete) to it and later this user group can be assign to a particular user. Generic user groups are already provided and we recommend you use them. In case they are not sufficient, you can create your own user groups. User will have certain permissions based on assigned user group. Click on User Group from the left panel of the page and select NEW button to create new User Group Refer screen 35 Screen 35 Provide the following information and click on create button to create new user Refer screen Group Name can be anything as your choice Description is optional Select the client Group Select the check boxes to assign permissions to the User Group. After creating User Group, ii can be assigned to a user while creating the User

29 Screen 36 Screen 37

30 Screen 38

External HTTPS Trigger AXIS Camera Station 5.06 and above

External HTTPS Trigger AXIS Camera Station 5.06 and above HOW TO External HTTPS Trigger AXIS Camera Station 5.06 and above Created: October 17, 2016 Last updated: November 19, 2016 Rev: 1.2 1 Please note that AXIS does not take any responsibility for how this

More information

CarLink Guide for Android Users

CarLink Guide for Android Users CarLink Guide for Android Users CarLink Guide for Android Users New Account Creation After having CarLink installed, follow the steps below to begin using your system. 1. Download the CarLink application

More information

Home center SMS integration

Home center SMS integration Home center 2.7.3+ SMS integration The SMS functionality is available exclusively on the Home center interface Server (VMBHIS or HIS) More info http://www.homecenter.be Revision 02-08-2015 Home center

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

Quick Start Guide. For more information, please visit us at

Quick Start Guide. For more information, please visit us at TM Quick Start Guide For more information, please visit us at www.websitealive.com Quick Start Guide With this Quick Start Guide, you ll be up and running in no time! If you need further assistance, help

More information

Getting Started With Windows 10

Getting Started With Windows 10 Getting Started With Windows 10 1 Table of Contents Navigating the Windows 10 Environment... 3 Logging In... 3 Navigating the Desktop... 4... 4... 4 Working With Applications... 5 Actions Center and Settings...

More information

Kony MobileFabric Engagement Services QuickStart Guide

Kony MobileFabric Engagement Services QuickStart Guide Kony MobileFabric (Building a Sample App - Android) Release 7.0 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the document version stated

More information

Notification Services

Notification Services , page 1 Service Option Configuration, page 9 Notification in Policy Builder relates to pushing messages from Policy Builder to subscribers. Service Providers can use messages to alert the subscriber to

More information

Interlink Express Desktop Printing Service Installation Guide

Interlink Express Desktop Printing Service Installation Guide Interlink Express Desktop Printing Service Installation Guide Page 1 of 10 Introduction This guide is intended to provide guidance on how to install and configure the new Interlink Express Desktop Printing

More information

Administering Jive Mobile Apps

Administering Jive Mobile Apps Administering Jive Mobile Apps Contents 2 Contents Administering Jive Mobile Apps...3 Configuring Jive for Android and ios... 3 Custom App Wrapping for ios... 4 Native App Caching: Android...4 Native App

More information

etrac ATOM Android App Setup Guide

etrac ATOM Android App Setup Guide etrac ATOM Android App Setup Guide Version: 1.0.0 Published: 10/22/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Initial Setup... 3 Settings...

More information

Administrator Guide Administrator Guide

Administrator Guide Administrator Guide AutobotAI account setup process with AWS account linking In order to provide AWS account access to autobotai skill, It has to be configured in https://autobot.live portal. Currently only one account can

More information

Designer Manual Web-N Server. (Push Alarm Message for Smartphone) N-Designer Ver. :..3 Create Date: 08.0. 04 Revision Date: e-mail:lbhsb@naver.com 네트란 http://www.netran.co.kr How to setup push-alarm-message

More information

Neston High School Citrix Portal Setup, using Google Chrome & Citrix Workspace on desktop/laptop.

Neston High School Citrix Portal Setup, using Google Chrome & Citrix Workspace on desktop/laptop. Neston High School Citrix Portal Setup, using Google Chrome & Citrix Workspace on desktop/laptop. Download the Chrome browser from https://www.google.com/chrome/ and install it on your computer. Open the

More information

Developing Android applications in Windows

Developing Android applications in Windows Developing Android applications in Windows Below you will find information about the components needed for developing Android applications and other (optional) software needed to connect to the institution

More information

Getting Started. What is the genuine URL for RHB Now Internet Banking? The genuine URL is Username and Password

Getting Started. What is the genuine URL for RHB Now Internet Banking? The genuine URL is   Username and Password Getting Started What is the genuine URL for RHB Now Internet Banking? The genuine URL is https://rhbnow.rhbgroup.com/kh Username and Password What should I do if I've forgotten my Username? Please access

More information

Practice 2. SOAP & REST

Practice 2. SOAP & REST Enterprise System Integration Practice 2. SOAP & REST Prerequisites Practice 1. MySQL and JPA Introduction JAX-WS stands for Java API for XML Web Services. JAX-WS is a technology for building web services

More information

Integration tool user manual

Integration tool user manual Integration tool user manual contact@ilocksystems.com www.ilocksystems.com tel.+ (48) 61 669 06 87 technical support: support@ilocksystems.com 1 P age Table of contents I. Basic information.... 2 1. What

More information

User Guide: Adding a Device in Duo and Managing Settings

User Guide: Adding a Device in Duo and Managing Settings User Guide: Adding a Device in Duo and Managing Settings The Duo Mobile application provides an extra layer of security when it is incorporated into the login process for applications or web sites such

More information

ORACLE UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP)

ORACLE UNIVERSITY AUTHORISED EDUCATION PARTNER (WDP) Android Syllabus Pre-requisite: C, C++, Java Programming SQL & PL SQL Chapter 1: Introduction to Android Introduction to android operating system History of android operating system Features of Android

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

Application Account Setup & Maintenance Initial Account Setup Account Maintenance

Application Account Setup & Maintenance Initial Account Setup Account Maintenance Application Account Setup & Maintenance Initial Account Setup Account Maintenance The Skyward Mobile Access application is available for free download onto ios, Android, and Windows devices from their

More information

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. Swimlane 2.x

<Partner Name> <Partner Product> RSA ARCHER GRC Platform Implementation Guide. Swimlane 2.x RSA ARCHER GRC Platform Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: 11/02/2017 Solution Summary The RSA Archer integration allows Swimlane

More information

Add the Counties Power App to your smartphone. app.countiespower.com

Add the Counties Power App to your smartphone. app.countiespower.com Add the Counties Power App to your smartphone app.countiespower.com Android users app. countiespower. com Add the Counties Power App to your smartphone In your smartphone s internet browser (Chrome etc)

More information

APP MANUAL. Car Assistant APP MANUAL

APP MANUAL. Car Assistant APP MANUAL APP MANUAL Car Assistant APP MANUAL 1 Introduction REQUIREMENTS The Car Assistant app works on a mobile device (a smartphone or a tablet) with an Android 4.0 or newer system. Apple mobile device works

More information

Managing a Website in the EDUPE Environment

Managing a Website in the EDUPE Environment Site Access To access the Edupe environment, you must enter the following URL address: https://devry.edupe.net:8300 You will encounter the following screen: Select Continue to this website (not recommended)

More information

Remote Access with Imprivata Two-factor Authentication

Remote Access with Imprivata Two-factor Authentication Remote Access with Imprivata Two-factor Authentication Migrating from RSA SecureID to Imprivata ID Token Please download and install the Imprivata ID app from the Google Play Store or Apple App Store first!

More information

NEW DNSDEMES VERSION NEW PERFORMANCE

NEW DNSDEMES VERSION NEW PERFORMANCE NEW DNSDEMES VERSION NEW PERFORMANCE INSTANT REGISTRATION (automatic registration possibility) Up to 250 recorders per account (expandable) Management that allows several users installers with a MASTER

More information

INSITES CONNECT ADMINISTRATION GUIDE. Version 1.4.3

INSITES CONNECT ADMINISTRATION GUIDE. Version 1.4.3 INSITES CONNECT ADMINISTRATION GUIDE Version 1.4.3 CONTENTS GETTING STARTED... 2 Version Compatibility... 2 Installing the InSites Connect app... 2 APP CONFIGURATION... 4 CONFIGURING PUSH NOTIFICATIONS...

More information

8x8 Virtual Office Click2Pop for SugarCRM Setup Guide

8x8 Virtual Office Click2Pop for SugarCRM Setup Guide 8x8 Virtual Office Click2Pop for SugarCRM Setup Guide May 2012 Table of Contents 8x8 Click2Pop for SugarCRM... 3 Requirements... 3 Server Requirements... 3 Client Requirements... 3 Installation... 3 Installation

More information

NaviGate Prepared App: Using Respond

NaviGate Prepared App: Using Respond NaviGate Prepared App: Using Respond How-to Reference Guide Downloading the App Logging into the App Home Screen My Account Initiating Alarms Accounting for Students Chat Feature End Alarm What is Respond?

More information

What s My Profile? REVISION 1. JANUARY

What s My Profile? REVISION 1. JANUARY What s My Profile? Profiles in BennyBuy help make the buying and paying process more efficient by allowing Users to customize and default information, Setting up shipping and billing addresses Save frequently

More information

Connect and Transform Your Digital Business with IBM

Connect and Transform Your Digital Business with IBM Connect and Transform Your Digital Business with IBM 1 MANAGEMENT ANALYTICS SECURITY MobileFirst Foundation will help deliver your mobile apps faster IDE & Tools Mobile App Builder Development Framework

More information

User s Manual NETVUE II Model Number: NI-1300, NI-1301, NI-1302

User s Manual NETVUE II Model Number: NI-1300, NI-1301, NI-1302 User s Manual NETVUE II Model Number: NI-1300, NI-1301, NI-1302 NetView Technologies keeps the right of the document updated with the new service offer or the service change Version:1.2 Basic installation

More information

MYOB EXO Business Services

MYOB EXO Business Services MYOB EXO Business Services Release Notes 1.3 SP1 Contents Introduction 1 What s New in this Release?... 1 Installation 2 Pre-Install Requirements... 2 Installing the EXO Business Services... 2 Setting

More information

Duo Self-Enrollment Guide for Android Tablets

Duo Self-Enrollment Guide for Android Tablets Duo Self-Enrollment Guide for Android Tablets The Duo Mobile application provides an extra layer of security when it is incorporated into the login process for web sites such as uab.box.com. In addition

More information

Bechtel Partner Access User Guide

Bechtel Partner Access User Guide Bechtel Partner Access User Guide IMPORTANT: For help with this process, please contact the IS&T Service Center or your local IS&T support group: IS&T Service Center Phone: +1-571-392-6767 US Only +1 (800)

More information

Sophos Mobile Control Installation guide

Sophos Mobile Control Installation guide Sophos Mobile Control Installation guide Product version: 1.0 Document date: May 2011 Contents 1 Introduction... 3 2 The Sophos Mobile Control server... 4 3 Set up Sophos Mobile Control... 13 4 Apple Push

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 2.0 070513 1 of 18 Check the Java version 1. Launch a browser and go to http://www.java.com/en/download/installed.jsp?detect=jre

More information

IMPORTANT PLEASE READ TO SUCCEED IN USING THE RRF ONLINE RE-APPLICATION FORM

IMPORTANT PLEASE READ TO SUCCEED IN USING THE RRF ONLINE RE-APPLICATION FORM IMPORTANT PLEASE READ TO SUCCEED IN USING THE RRF ONLINE RE-APPLICATION FORM A. How To Create An RRF Online Re-application Form Account: 1. Use either Internet Explorer or Firefox as your Internet Browser

More information

User Monitoring Smartphone App

User Monitoring Smartphone App User Monitoring Smartphone App Sonnen User Portal Sonnen User Portal Registration From any internet browser the end user will need to type https://meine.sonnenbatterie.de/login into the search engine search

More information

evoclock+ - AsureForce Mobile V3.0 Reference Guide AsureForce Mobile Version 3.0 Reference Guide AsureForce Mobile 1 P a g e

evoclock+ - AsureForce Mobile V3.0 Reference Guide AsureForce Mobile Version 3.0 Reference Guide AsureForce Mobile 1 P a g e AsureForce Mobile Version 3.0 Reference Guide AsureForce Mobile 1 P a g e Table of Contents Quick Reference... 2 AsureForce Mobile... 3 Getting Started... 3 AsureForce Mobile App Setup... 3 AsureForce

More information

365 Notify User Guide. 365 Mechanix Pty Ltd

365 Notify User Guide. 365 Mechanix Pty Ltd 365 Notify User Guide About 365 Notify How it works 365 Notify is a Dynamics 365 add-on which delivers notifications to users, contacts, accounts or any other records based on your business needs and activity

More information

1. NVR Connection Diagram Wizard Setup Access System Using Mobile Device Access System Using PC Client Software 5

1. NVR Connection Diagram Wizard Setup Access System Using Mobile Device Access System Using PC Client Software 5 1 1. NVR Connection Diagram 2 2. Wizard Setup 3 3. Access System Using Mobile Device 4 4. Access System Using PC Client Software 5 5. Access System Using Internet Explorer 8 6. Recording Setup 9 Motion

More information

WolkAbout IoT Tool Mobile Application v2.2. User Manual

WolkAbout IoT Tool Mobile Application v2.2. User Manual WolkAbout IoT Tool Mobile Application v2.2 User Manual 1 Table of Contents: Introduction 3 Account Registration 3 Mobile registration 3 Web registration 4 Mobile Application Installation and Configuration

More information

Deposit Wizard TellerScan Installation Guide

Deposit Wizard TellerScan Installation Guide Guide Table of Contents System Requirements... 2 WebScan Overview... 2 Hardware Requirements... 2 Supported Browsers... 2 Driver Installation... 2 Step 1 - Determining Windows Edition & Bit Count... 3

More information

2018/2/5 话费券企业客户接入文档 语雀

2018/2/5 话费券企业客户接入文档 语雀 1 2 2 1 2 1 1 138999999999 2 1 2 https:lark.alipay.com/kaidi.hwf/hsz6gg/ppesyh#2.4-%e4%bc%81%e4%b8%9a%e5%ae%a2%e6%88%b7%e6%8e%a5%e6%94%b6%e5%85%85%e5 1/8 2 1 3 static IAcsClient client = null; public static

More information

SurePassID ServicePass User Guide. SurePassID Authentication Server 2017

SurePassID ServicePass User Guide. SurePassID Authentication Server 2017 SurePassID ServicePass User Guide SurePassID Authentication Server 2017 Introduction This technical guide shows how users can manage their SurePassID security tokens that are compatible with SurePassID

More information

USER GUIDE 04 REGISTERING AS A USER 05 LOGGING INTO THE PLATFORM 06 MANAGING CONTACTS 09 SENDING NOTIFICATIONS FROM THE PLATFORM

USER GUIDE 04 REGISTERING AS A USER 05 LOGGING INTO THE PLATFORM 06 MANAGING CONTACTS 09 SENDING NOTIFICATIONS FROM THE PLATFORM USER GUIDE FOR CORPORATE PARTNER GROUP MANAGER 04 REGISTERING AS A USER 05 LOGGING INTO THE PLATFORM 06 MANAGING CONTACTS Existing contacts New Contacts Additional Information 09 SENDING NOTIFICATIONS

More information

Summary. Discretion. Preparation

Summary. Discretion. Preparation Title: How to Register a Hik-Connect Product: Cameras, NVRs, DVRs Page: 1 of 11 Summary Hik-Connect is a new service introduced by Hikvision which integrates the dynamic domain name service along with

More information

Palliser Regional Schools. PowerSchool User Guide for Parents

Palliser Regional Schools. PowerSchool User Guide for Parents PowerSchool User Guide for Parents PALLISER REGIONAL SCHOOLS PowerSchool User Guide for Parents #101 3305 18 Avenue North Lethbridge, Alberta T1H 5S1 Phone: (403) 328-4111 http://pallisersd.ab.ca Page

More information

Google Chromebook Starting Guide

Google Chromebook Starting Guide Google Chromebook Starting Guide Now that you have received your Chromebook you will notice that it looks exactly like a laptop, but there are several differences between both devices. Chromebooks are

More information

CUSTOMER PORTAL. Connectors Guide

CUSTOMER PORTAL. Connectors Guide CUSTOMER PORTAL Connectors Guide Connectors Clicking into this area will display connectors that can be linked to the portal. Once linked to the portal certain connectors will display information in the

More information

Extract from the ARC & RVRC Operational & Administrative Procedures

Extract from the ARC & RVRC Operational & Administrative Procedures 2.2 Configuring MASmobile 2.2.1 Configuring MASmobile settings (iphone) 2.2.2 Configuring MASmobile settings (Android) 2.2.3 Main Menu 2.2.4 Logging In 2.2.5 Managing Accounts 2.2.6 Searching for Systems

More information

MANTRA REGISTERED DEVICE SERVICE ANDROID MANTRA SOFTECH INDIA PVT LTD

MANTRA REGISTERED DEVICE SERVICE ANDROID MANTRA SOFTECH INDIA PVT LTD MANTRA REGISTERED DEVICE SERVICE ANDROID MANTRA SOFTECH INDIA PVT LTD TABLE OF CONTENTS 1. Download Application for Mantra RD Service Setup.... 3 (a) Install RDService... 3 (b) Open Mantra RDService...

More information

epass FIDO -NFC PRODUCT MANUAL

epass FIDO -NFC PRODUCT MANUAL epass FIDO -NFC PRODUCT MANUAL V1.3 2017-03 FEITIAN Technologies Co., Ltd. Website: www.ftsafe.com Overview Feitian epass FIDO -NFC is a FIDO alliance certified U2F authentication key. Unlike the traditional

More information

Guide for Windows users with Internet Explorer and Firefox

Guide for Windows users with Internet Explorer and Firefox Velocity@ocbc Guide for Windows users with Internet Explorer and Firefox Version 5.0 171013 1 of 14 Uninstall prior Java versions 1. Log in to an administrator account. Go to Start > Control Panel 2. Click

More information

Integration Service. Admin Console User Guide. On-Premises

Integration Service. Admin Console User Guide. On-Premises Kony Fabric Integration Service Admin Console User Guide On-Premises Release V8 SP1 Document Relevance and Accuracy This document is considered relevant to the Release stated on this title page and the

More information

Duo Security Enrollment Guide

Duo Security Enrollment Guide Duo Security Enrollment Guide Duo's self-enrollment process makes it easy to register your phone and install the Duo Mobile application on your smartphone or tablet. Supported Browsers: Chrome, Firefox,

More information

APP Setup Guide. Connect to your home or business from anywhere in the world. RINS1721-3

APP Setup Guide. Connect to your home or business from anywhere in the world. RINS1721-3 APP Setup Guide Connect to your home or business from anywhere in the world. RINS1721-3 Contents Introduction... 3 Connect to your home or business from anywhere in the world... 3 Get your Control Panel

More information

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE

MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE GUIDE APRIL 2019 PRINTED 17 APRIL 2019 MANAGING ANDROID DEVICES: VMWARE WORKSPACE ONE OPERATIONAL TUTORIAL VMware Workspace ONE Table of Contents Overview Introduction Audience Getting Started with Android

More information

FAQ. General Information: Online Support:

FAQ. General Information: Online Support: FAQ General Information: info@cionsystems.com Online Support: support@cionsystems.com CionSystems Inc. Mailing Address: 16625 Redmond Way, Ste M106 Redmond, WA. 98052 http://www.cionsystems.com Phone:

More information

SMS+ Client User Manual

SMS+ Client User Manual SMS+ Client User Manual Route Mobile Limited. 2018. All Right Reserved. 1 Table of Contents INTRODUCTION... 3 LOGIN... 4 Login:... 4 Dashboard... 8 SEND SMS... 10 Single SMS:... 11 Bulk SMS:... 12 Personalized

More information

127 Church Street, New Haven, CT O: (203) E: GlobalSearch ECM User Guide

127 Church Street, New Haven, CT O: (203) E:   GlobalSearch ECM User Guide 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: sales@square-9.com www.square-9.com GlobalSearch Table of Contents GlobalSearch ECM... 3 GlobalSearch Security... 3 GlobalSearch Licensing Model...

More information

LANCET MOBILE FOR PATIENTS VERSION: 1.9

LANCET MOBILE FOR PATIENTS VERSION: 1.9 An application that assists patients with the delivery and viewing of laboratory results from their mobile devices. Lancet Mobile App An application that assists patients with the delivery and viewing

More information

isupplier Portal Registration & Instructions Last Updated: 22-Aug-17 Level 4 - Public INFRASTRUCTURE MINING & METALS NUCLEAR, SECURITY & ENVIRONMENTAL

isupplier Portal Registration & Instructions Last Updated: 22-Aug-17 Level 4 - Public INFRASTRUCTURE MINING & METALS NUCLEAR, SECURITY & ENVIRONMENTAL INFRASTRUCTURE MINING & METALS NUCLEAR, SECURITY & ENVIRONMENTAL OIL, GAS & CHEMICALS isupplier Portal Registration & Instructions Last Updated: 22-Aug-17 Level 4 - Public Table of Contents 1 New User

More information

Edentity EXTRANET IDENTITY MANAGEMENT BUSINESS PARTNER USER GUIDE

Edentity EXTRANET IDENTITY MANAGEMENT BUSINESS PARTNER USER GUIDE Edentity EXTRANET IDENTITY MANAGEMENT BUSINESS PARTNER USER GUIDE Extranet users are Sanofi business partners who are external to Sanofi but need to access business data on the Sanofi network. This guide

More information

Configuring an Android Device for inet Guardian

Configuring an Android Device for inet Guardian Configuring an Android Device for inet Guardian Edge IT Ltd Piecing Together the IT Puzzle 2016 Edge IT Ltd 1 Configuring a Device for inetguardian inetguardian has been tested on the following devices

More information

VivoQuant License Installation Protocol

VivoQuant License Installation Protocol VivoQuant License Installation Protocol This document is an overview of the VivoQuant License Management Platform. 1. VivoQuant License Management Site URL: http://license.vivoquant.com/ invicro s web-based

More information

How to Join Skype Meetings

How to Join Skype Meetings How to Join Skype Meetings Scroll through to find the device you are using: Windows, Skype App, Mac or iphone. Windows 1. Open the email / calendar request that you received from your host and select the

More information

Version : 2 _ updated Dec 2017

Version : 2 _ updated Dec 2017 _ updated Dec 2017 GUIDELINE for MMA MEMBERs - PAGE 3-10 Page 3 - Page 6 Page 7 Page 8 Page 9 Page 10 Login Page MMA Event Page Profile Page - QR Code Profile Page Cumulative CPD Profile Page-CPD Records

More information

Microsoft Office SharePoint. Reference Guide for Contributors

Microsoft Office SharePoint. Reference Guide for Contributors Microsoft Office SharePoint Reference Guide for Contributors SharePoint: Reference Guide for Contributors Table of Contents INTRODUCTION... 3 FOLLOWING A SITE... 3 NAVIGATION... 4 LISTS AND LIBRARIES...

More information

DHIS 2 Android User Manual 2.22

DHIS 2 Android User Manual 2.22 DHIS 2 Android User Manual 2.22 2006-2016 DHIS2 Documentation Team Revision 1925 Version 2.22 2016-11-23 11:33:56 Warranty: THIS DOCUMENT IS PROVIDED BY THE AUTHORS ''AS IS'' AND ANY EXPRESS OR IMPLIED

More information

FreeRangeRemote Access

FreeRangeRemote Access City of Westminster User Guide to FreeRangeRemote Access For Android tablets using the native browser (Chrome) https://freerange.cityofwestminster.us IMPORTANT! Some versions of Chrome on Android are unable

More information

Cloud Platform. Version User's Guide

Cloud Platform. Version User's Guide Cloud Platform Version 1.1.5 User's Guide January 2018 www.lexmark.com Contents 2 Contents Change history... 3 Overview... 4 Getting started... 5 System requirements...5 Accessing the Cloud Platform home

More information

Barracuda Networks Android Mobile Application

Barracuda Networks Android Mobile Application This article refers to the Barracuda Networks Android Mobile App version 1.2.0.0131 or greater, on an Android mobile phone devices running Android 4.1 or greater. Download the latest Barracuda Networks

More information

How to use Video Conferencing & Desktop Sharing on Magnet Voice

How to use Video Conferencing & Desktop Sharing on Magnet Voice How to use Video Conferencing & Desktop Sharing on Magnet Voice Video Conferencing and Collaboration CONTENTS User Guide... 1 1. How to set up a video session... 2. Running a video conference... 4 3. Screen

More information

User s and installation guide

User s and installation guide INTELLIO MOBILE CLIENT 4 User s and installation guide 1 Intellio Mobil Client 4 Table of contents 1 Intellio Mobile Client 4 (IMC4) introduction... 3 2 Installation... 3 2.1 Intellio Video Gateway...

More information

Student Quick Start Guide

Student Quick Start Guide Student Quick Start Guide Welcome to Top Hat! This guide will help you register a student account and understand how to use Top Hat for your class. Creating an Account If you received an email invitation

More information

LIFTMASTER INTERNET GATEWAY USER S GUIDE CONNECT & CREATE. Featuring MyQ Technology

LIFTMASTER INTERNET GATEWAY USER S GUIDE CONNECT & CREATE. Featuring MyQ Technology LIFTMASTER INTERNET GATEWAY USER S GUIDE Featuring MyQ Technology This User s Guide will help you get the most from your LiftMaster MyQ enabled products when using a smartphone, tablet, or computer to

More information

Pro and Customer Account Setup

Pro and Customer Account Setup Pro and Customer Account Setup The following document outlines how to set up new Pro and new Customer accounts. Before you can set up any customers you must have an active Pro Account. While the Connect2Go

More information

Quick Guide. Light Sensor. Focus Adjustment Ring. Infrared LED (IR Model) PIR Sensor (PIR Model) Micro SD Card Slot. Speaker

Quick Guide. Light Sensor. Focus Adjustment Ring. Infrared LED (IR Model) PIR Sensor (PIR Model) Micro SD Card Slot. Speaker Quick Guide 1 Hardware Overview Power/Network LED Indicator Wireless LED Indicator Light Sensor Focus Adjustment Ring Infrared LED (IR Model) PIR Sensor (PIR Model) LED (for PIR Model) Reset Button WPS

More information

<Partner Name> RSA NETWITNESS Security Operations Implementation Guide. Swimlane 2.x. <Partner Product>

<Partner Name> RSA NETWITNESS Security Operations Implementation Guide. Swimlane 2.x. <Partner Product> RSA NETWITNESS Security Operations Implementation Guide Jeffrey Carlson, RSA Partner Engineering Last Modified: 05/01/2017 Solution Summary The RSA NetWitness integration

More information

WolkAbout IoT Tool Mobile Application v2.4. User Manual

WolkAbout IoT Tool Mobile Application v2.4. User Manual WolkAbout IoT Tool Mobile Application v2.4 User Manual Table of Contents: Introduction 2 Account Registration 2 Web Registration 2 Mobile Registration 4 Mobile Application Installation and Configuration

More information

Affinity Provider Portal Training Manual

Affinity Provider Portal Training Manual Training Manual Login This page enables a user to either login and/or register if he/she is not already a regstered user (ie. Providers and Staff users). The following are the functionalities which can

More information

Mobile Banking Guide

Mobile Banking Guide Safely Access Your Hancock or Whitney Bank Accounts. Anytime. Anywhere. Mobile Banking gives you the power to manage your accounts right from the palm of your hand! The Right Choice for You With several

More information

Sigox APIs beginners API HOW TO. External Use, version 1.3

Sigox APIs beginners API HOW TO. External Use, version 1.3 Sigox APIs beginners API HOW TO External Use, version 1.3 Summary Sigfox data interfaces... 3 How to use API... 3 Credentials generation... 3 API documentation... 4 API usage... 4 Credentials renewal...

More information

1. Within the Configuration workspace go to Devices > Management and select the cameras you wish to display on the decoder.

1. Within the Configuration workspace go to Devices > Management and select the cameras you wish to display on the decoder. 2 3 1. Within the Configuration workspace go to Devices > Management and select the cameras you wish to display on the decoder. 2. Right-click and select User Management > Add user 3. Add a new user and

More information

New Account Creation. 2. Launch the CarLink app. from your phone s application list. 3. Enter a name for the vehicle.

New Account Creation. 2. Launch the CarLink app. from your phone s application list. 3. Enter a name for the vehicle. iphone USERS GUIDE 3/26/14 New Account Creation After having CarLink installed, follow the steps below to begin using your system. If you have already created an account on the Web app you will need to

More information

USER PROFILE MANAGEMENT

USER PROFILE MANAGEMENT What s My Profile? Profiles in BennyBuy help make the buying and paying process more efficient by allowing users to customize and default information, shopping addresses, frequently used FOAPAL elements,

More information

Mobile B2B (Phase-II) User Guide

Mobile B2B (Phase-II) User Guide Mobile B2B (Phase-II) User Guide 1 Taro Mobile B2B (Phase - II) : Overview A simple software that acts as Mobile B2B Extension to existing Dealer Process/Systems Additional flexibility to dealers;, Phone/Fax

More information

Jersey City Free Public Library WIFI Hotspot

Jersey City Free Public Library WIFI Hotspot 1. Windows 2000, XP, 7 and Vista Users: a. Select the wireless icon in the system tray. or or or b. Select the SSID of the library you are currently located: JCPL- c. Launch a web browser (Internet Explorer,

More information

OAM 2FA Value-Added Module (VAM) Deployment Guide

OAM 2FA Value-Added Module (VAM) Deployment Guide OAM 2FA Value-Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a copyright of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products and solutions,

More information

User Guide: Experience Mobile App

User Guide: Experience Mobile App Experience Mobile App USER GUIDE Download from Windows Store Table of Contents Experience Mobile App User Guide... 3 Downloading the App... 3 Using the Experience App... 4 Step 1: The Library...4 Step

More information

IBM Security Secret Server Version Application Server API Guide

IBM Security Secret Server Version Application Server API Guide IBM Security Secret Server Version 10.4 Application Server API Guide Contents Overview... 1 Concepts... 1 Standalone Java API... 1 Integrated Java API... 1 Integrated.NET Configuration API... 1 Application

More information

Contents. Copyright 2013 Mobile Telephone Networks. All rights reserved

Contents. Copyright 2013 Mobile Telephone Networks. All rights reserved mymtn Contents Downloading MyMTN Installing MyMTN MyMTN Launcher Registering Quick Tour Launching Login to My SelfService My SelfService My SelfService Dashboard MTN Services My Subscriptions MyUsage Data

More information

OFFICE 365 FOR STUDENTS O VERVIEW OF OFFICE 36 5 FOR STUDENTS. Passero, Denise Author. Overview

OFFICE 365 FOR STUDENTS O VERVIEW OF OFFICE 36 5 FOR STUDENTS. Passero, Denise Author. Overview O VERVIEW OF OFFICE 36 5 FOR STUDENTS Use this overview to get acquainted with Office 365 for students. Passero, Denise Author OFFICE 365 FOR STUDENTS Overview Overview of Office 365 for Students Downloading

More information

Contents. Last updated: 18 th August 2017

Contents. Last updated: 18 th August 2017 DRM Lite in Firefox DRM Lite is the new way for British Library to deliver electronic documents securely. When a document is requested via this service the document is locked so that only one user can

More information

Duo Security Enrollment Guide

Duo Security Enrollment Guide Duo Security Enrollment Guide Duo's self-enrollment process makes it easy to register your phone and install the Duo Mobile application on your smartphone or tablet. Supported Browsers: Chrome, Firefox,

More information

REGISTERING YOUR BYOD DEVICE

REGISTERING YOUR BYOD DEVICE REGISTERING YOUR BYOD DEVICE Bring Your Own Device (BYOD) Registration for Android Devices with MobileIron The MobileIron app (Mobile@Work) connects your Android device to the MobileIron server and provides

More information