GeoInt 2015 Watson Workshop

Size: px
Start display at page:

Download "GeoInt 2015 Watson Workshop"

Transcription

1 GeoInt 2015 Watson Workshop Bluemix Building a Watson Question & Answer Service Hands-on Lab The lab is divided into three parts Part A: Getting started what you need and what you will be building Estimated Duration: 10 minutes Part B: Building and personalizing a web app that invokes the Watson Question and Answer service - using Bluemix and Bluemix DevOps Services Estimated Duration: 20 minutes Part C (Bonus): Configuring a mobile app - to access the web app created in Part B - Estimated Duration: 10 minutes Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 1

2 Table of Contents PART A: GETTING STARTED WHAT YOU NEED AND WHAT YOU WILL BE BUILDING... 3 WHAT YOU NEED:... 3 WHAT YOU WILL BE BUILDING:... 3 PART B: BUILDING AND PERSONALIZING A WEB APP THAT INVOKES THE WATSON QUESTION AND ANSWER SERVICE - USING BLUEMIX AND BLUEMIX DEVOPS SERVICES IMPORTING AND DEPLOYING THE APPLICATION FROM BLUEMIX DEVOPS SERVICES Creating the Bluemix DevOps Services Project Editing code to personalize web app for Watson Question and Answer service Deploying your project to Bluemix CREATING AND TESTING A WATSON Q&A SERVICE IN BLUEMIX Running the application before creating a Watson Q&A service Creating a Watson Q&A service Rerunning your Bluemix app to invoke the Watson Q&A service recently created PART C: CONFIGURING A MOBILE APP TO ACCESS YOUR WATSON Q&A APP AND SERVICE INVOKING THE SAMPLE WATSON Q&A WEB APP AND SERVICE INVOKING YOUR PERSONALIZED WATSON Q&A WEB APP AND SERVICE CREATED IN PART B Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 2

3 Part A: Getting started what you need and what you will be building What you need: a) A Bluemix account - to create a Watson Q&A service and access Bluemix DevOps Services Note: you may use your own ID (if already signed up) or one assigned by the lab instructor b) A laptop with a web browser - to work with Bluemix Note: Google Chrome or Firefox browser is recommended c) An internet connectivity Note: connection options to be provided by the lab instructor What you will be building: In Part B - you will be building a web app that runs on a Node.js runtime in Bluemix. This web app accesses the Watson Q&A service via the QAAPI which runs in the Watson Developer cloud, as shown in the architecture diagram below. You will be able to test your web app from your laptop browser. By personalizing the app, you can convince yourself that it s your code that is being invoked. Watson Question and Answer Architecture Web Application The last part of the lab (Part C) you will access the web app from a hybrid mobile app. Hybrid mobile apps include a native wrapper or shell along with an instance of an embedded browser. You will configure the WatsonQA hybrid app on the ipad to access the web app you created in Part B. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 3

4 Part B: Building and personalizing a web app that invokes the Watson Question and Answer service - using Bluemix and Bluemix DevOps Services Overview: IBM Bluemix is an open-standard, cloud-based platform for building, managing, and running all types of applications: mobile, smart devices, web, and big data. Bluemix includes over fifteen services from Watson (and counting!). This lab looks at the Question and Answer service which uses natural language processing and analytics to provide the unique ability to comprehend the subtle nuances of human language, sift through vast amounts of content, and provide evidencebased responses to users' questions. Watson has been made to ingest medical documents in multiple formats (i.e. doc, pdf, html, text, etc.) whereby a user can pose medical questions to the Watson Question and Answer API. This lab will integrate Node.js and the Watson Question and Answer service inside the Bluemix runtime environment. In short, this lab makes you familiar with using Bluemix DevOps Services to deploy a sample web application to Bluemix. This part of the lab explains how to complete the following tasks: Fork an existing Bluemix DevOps Services project Edit Code to personalize the Watson Question and Answer service Deploy your project (You can also enable auto-deployment) Run the Application in Bluemix Estimated Duration: 20 minutes 1. Importing and deploying the application from Bluemix DevOps Services In this section, you will create a project by forking an existing Node.js Watson Q&A application in Bluemix DevOps Services and push it out to Bluemix. 1.1 Creating the Bluemix DevOps Services Project a) Bring up a new browser window from your laptop (be sure to log out of any opened Bluemix or Bluemix DevOps Services session). b) Go to the URL: and click LOG IN. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 4

5 c) If you are prompted to Sign in, enter your own or the lab assigned Bluemix ID (e.g. and password, then click Sign in. d) In case you are prompted to provide an alias name, enter your short ID. For example, type in bluemixlabsx as an alias if your Bluemix ID is e) Once logged in, you should see a page similar to a screen below. f) Enter this URL to bring up the sample project page: g) From the sample project OVERVIEW page, click on FORK PROJECT button on the right to copy the source code into a new project. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 5

6 h) In the Fork Project window: Provide a value to Name your project, e.g. watsonqa lab 5 Ensure that Make this a Bluemix Project checkbox is selected. Click CREATE. i) After a few seconds you should see a message indicating that You have successfully created your new project. The project is now being hosted as a new Git repository in Bluemix DevOps Services. Note: if you wish to review additional details about the project attributes, you may click the gear icon located on the tool bar next to BUILD & DEPLOY button, then select Options. To get back to the project OVERVIEW page, click MY PROJECTS link at the top, then select your project. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 6

7 1.2 Editing code to personalize web app for Watson Question and Answer service You will be editing header tags to personalize your application in this section. a) From the OVERVIEW page of your forked project, click the EDIT CODE button. b) In the left frame, select views > layout.jade file to open the file. Then edit the title (line 6) and h2 html tag (line 24) to personalize your Question and Answer service. c) Save your changes by selecting File > Save or press Ctrl+S. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 7

8 1.3 Deploying your project to Bluemix Note: In Cloud Foundry environments such as Bluemix, deployment of an application translates into several steps which include bundling the project artifacts, creating the application in the Bluemix execution environment, transferring the bundled application artifacts into Bluemix and starting the app. When you deploy a Bluemix DevOps Services project from the Web IDE, deployment of the project is further automated when you use a manifest.yml file. This file contains important settings, such as the application instance name to use, the host machine, the services that the application uses, and more. There are two methods of deployment to Bluemix using the Web IDE: You can manually deploy whatever is in the Web IDE workspace to Bluemix by clicking the Play icon on the Run Bar. When you deploy by using the Run Bar, you deploy the current state of your code in the Web IDE. You can automatically deploy using a Delivery Pipeline. When you deploy by using the BUILD & DEPLOY feature, you deploy the code that is checked into the repository. Next, you will edit the manifest.yml file and deploy the project: a) In the IBM Bluemix DevOps Services Web IDE, select your project s manifest.yml file. Change the application s host and instance name similar to (or same as) your forked project name, e.g. bluemixlabsx-watsonqa this will be part of the URL to invoke your application (e.g. bluemixlabsx-watsonqa.mybluemix.net) Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 8

9 b) Save your changes by selecting File > Save or press Ctrl + S c) Click the (Play) icon to manually deploy your app to Bluemix. d) You should be getting an error saying Service instance qa-jt cannot be found in target space. This is expected as the service has not been created. Click X on the right to dismiss the error message. Next, you will be creating the Watson Question and Answer service in Bluemix. Note: To automatically deploy your application to Bluemix whenever you commit to your project s source code control in Git using BUILD & DEPLOY, see the following link for details on how to setup a Delivery Pipeline: Develop a Bluemix application in Node.js using the Web IDE. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 9

10 2. Creating and Testing a Watson Q&A service in Bluemix In this section, you will run the app created and deployed in the previous section and expect to see an error. After creating a Watson Q&A service, you should be able to rerun it successfully. 2.1 Running the application before creating a Watson Q&A service a) Refresh the page (e.g. press icon for Chrome or Firefox). Notice a red status indicating your application is in stopped stage. Click Open application dashboard icon to launch Bluemix Dashboard. b) The Bluemix login page should be launched in a new browser tab Note: if you have any problem getting here, you can always open a new browser tab and enter a URL bluemix.net and then Log in if prompted. You should be taken directly to the bluemixlabsx-watsonqa application Overview page (if not, see the note section below). Note: Only if you were not taken to the app Overview page after logged in, follow the steps outlined below to get there and START the application. From the Bluemix Dashboard view, Scroll down to find Applications section. Click on your application (e.g. bluemixlabsxwatsonqa). This should take you to the Overview page where you can START the application. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 10

11 c) From the app Overview page, click START in the APP HEALTH widget to start the application. d) Once the application is started, you should see Your app is running message in the APP HEALTH widget. e) Click the URL link next to Routes (e.g. bluemixlabsx-watsonqa.mybluemix.net) to launch the app. Notice the app URL matches the attributes in the manifest.yml file. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 11

12 f) Your Watson Q&A application should be launched in a new browser tab. Note: If you get a page not found error, just wait a few minutes for the application to be fully started. Then refresh the page. Notice the values of window title (e.g. bluemixlabsx Q&A), and the heading (e.g. bluemixlabsx Question Answer Application). These should be the same as what you specified in the layout.jade file (title and h2 tags). g) Test the app Enter a new or use the prepopulated question. Then click the Ask button You should get an error in the Output area, e.g. Error: connect ECONNREFUSED, which is expected. Note: When clicking the Ask button, the app invokes the Watson Q&A service specified in the app manifest.yml (e.g. bluemixlabsx-qa-svc) which does not exist or yet created and bound to the app. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 12

13 2.2 Creating a Watson Q&A service Next, you will be creating the missing Watson Q&A service instance and bind it to your app. a) Go back to the Bluemix browser tab where you have your bluemixlabsx-watsonqa app Overview page displayed. b) Click inside the ADD A SERVICE OR API box. c) In the services CATALOG page, select Question and Answer service in the Watson category. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 13

14 d) Enter a Service name (call it whatever you d like). Then click CREATE. FYI: if your deployed app will require a service(s), then before you deploy your app from Bluemix DevOps Services, create the service(s) in Bluemix making note of the names you give your service(s) (e.g., wat-qa-55). Then, in Bluemix DevOps Services, modify your project s manifest file and add/replace the existing service name(s) with your recently created service name(s) (e.g., wat-qa-55). Then, deploy your app and the service(s) will automatically bind to your app (and will not produce an error as seen in lab section 1.3 d). e) You should be prompted to Restage Application. Click RESTAGE. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 14

15 f) The Question and Answer service should now appear as part of the app (shown at the bottom of the screen below). Once the app is fully restarted, click the Routes URL link to re-launch the app (in another browser tab). You will be testing the service in the next section. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 15

16 2.3 Rerunning your Bluemix app to invoke the Watson Q&A service recently created In you personalized Watson Q&A Bluemix application browser tab, a) Enter a new or use the prepopulated question b) Click Ask button to invoke the Watson Question and Answer service created in the previous section c) This time, you should be able to get a successful response displayed under Answers and Confidence section similar to what s shown below. d) Feel free to examine the result and try with different questions. Note: The Bluemix Watson Q&A service demonstrates the mechanics of the service, but not the potential in terms of intelligence. The service depends on a limited corpus that has not been trained. You may notice low quality answers with correspondingly low confidence levels. In the next part of the lab (demonstration), we will be invoking the Watson Q&A service you created from the mobile app. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 16

17 This bonus section can be developed at your leisure Part C: Configuring a mobile app to access your Watson Q&A app and service Pre-Reqs: You have completed Part B. You have downloaded the WatsonQA mobile app from the IBM App Center catalog onto your device This part of the lab explains how to complete the following tasks: Invoke the Watson Q&A service from the mobile app Configure the WatsonQA mobile app to access your personalized Bluemix web app Estimated Duration: 10 minutes 1. Invoking the sample Watson Q&A web app and service The WatsonQA mobile app integrates with the sample web app which invokes the sample service. a) Launch HCWatsonQA app from the ipad. b) Touch the Click to ask questions link. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 17

18 c) Notice the description displayed is from the sample web app, not the one you personalized. d) Ask Watson some questions and expect successful response(s). e) Close the mobile app (double tap the Home button, swipe the app all the way up to kill it). Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 18

19 2. Invoking your personalized Watson Q&A web app and service created in Part B You will configure the mobile app to access your personalized web app previously created. a) If the mobile app is already running, kill it (refer to 1.e on how) b) Launch HCWatsonQA app from the ipad. c) Go to Settings (upper right). d) Update the Bluemix Application ID with the Route URL to your app, e.g. bluemixlabsxwatsonqa.mybluemix.net. Then tap < Back (upper left) to return to the main screen of the app. e) Touch the Click to ask questions link. f) Notice the description displayed, e.g. bluemixlabsx Question Answer.., is from the personalized app you created, not the sample one. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 19

20 g) Ask Watson some questions and expect successful response(s). By completing this lab, you have learned how to: Create a project by copying (forking) an existing Bluemix DevOps Services project Push the project's application from Bluemix DevOps Services to Bluemix Integrate inside Bluemix environment (a web app Watson Q&A service) Integrate outside Bluemix environment (a mobile app a web app + Watson Q&A service). Congratulations! You have successfully completed this Bluemix Watson Q&A Lab. Last updated: June 10, 2015 Global Solution Center Dallas, TX Page 20

Lab 1 Whatsup Watson Hands-On Lab

Lab 1 Whatsup Watson Hands-On Lab Lab 1 Whatsup Watson Hands-On Lab Table of contents 1. Create the Whatsup Watson Bluemix Application... Error! Bookmark not defined. 2 Step 1. Deploy to Bluemix using DevOps GUI This procedure provides

More information

Using IBM DevOps Services & Bluemix Services Part 2: Deploying an App that Uses a Data Management service

Using IBM DevOps Services & Bluemix Services Part 2: Deploying an App that Uses a Data Management service Using IBM DevOps Services & Bluemix Services Part 2: Deploying an App that Uses a Data Management service This series of labs demonstrates how easy it is to use IBM DevOps Services and Bluemix together

More information

Lab - Building an Internet of Things Application Hands-On Lab

Lab - Building an Internet of Things Application Hands-On Lab Lab - Building an Internet of Things Application Hands-On Lab Table of contents 1. Creating a Bluemix Application... 3 2. Create and add an Internet of Things Service... 4 2.Wire the connected device s

More information

Chris Rosen, Technical Product Manager for IBM Containers, crosen@us.ibm.com Lin Sun, Senior Software Engineer for IBM Containers, linsun@us.ibm.

Chris Rosen, Technical Product Manager for IBM Containers, crosen@us.ibm.com Lin Sun, Senior Software Engineer for IBM Containers, linsun@us.ibm. Chris Rosen, Technical Product Manager for IBM Containers, crosen@us.ibm.com Lin Sun, Senior Software Engineer for IBM Containers, linsun@us.ibm.com Please Note IBM s statements regarding its plans, directions,

More information

Remote Desktop Web Access. Using Remote Desktop Web Access

Remote Desktop Web Access. Using Remote Desktop Web Access Remote Desktop Web Access What is RD Web Access? RD Web Access is a Computer Science service that allows you to access department software and machines from your Windows or OS X computer, both on and off

More information

Flexible Identity Federation

Flexible Identity Federation Flexible Identity Federation User guide version 1.0.1 Publication History Date Description Revision 2015.09.25 initial release 1.0.0 2015.12.10 minor corrections 1.0.1 Copyright Orange Business Services

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide AdRadionet to IBM Bluemix Connectivity Quickstart User Guide Platform: EV-ADRN-WSN-1Z Evaluation Kit, AdRadionet-to-IBM-Bluemix-Connectivity January 20, 2015 Table of Contents Introduction... 3 Things

More information

Using the Bluemix Analytics for Hadoop Service to Analyse Data

Using the Bluemix Analytics for Hadoop Service to Analyse Data Lab 1: Using the Bluemix Analytics for Hadoop Service to Analyse Data Using the Bluemix Analytics for Hadoop Service to Analyse Data Hands-On Lab Lab 1: Using the Bluemix Analytics for Hadoop Service to

More information

mystanwell.com Installing Citrix Client Software Information and Business Systems

mystanwell.com Installing Citrix Client Software Information and Business Systems mystanwell.com Installing Citrix Client Software Information and Business Systems Doc No: 020/12 Revision No: Revision Date: Page: 1 of 16 Contents Overview... 3 1. Microsoft Internet Explorer... 3 2.

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

Create a Database Driven Application

Create a Database Driven Application Create a Database Driven Application Prerequisites: You will need a Bluemix account and an IBM DevOps Services account to complete this project. Please review the Registration sushi card for these steps.

More information

Business Intelligence Office of Planning Planning and Statistics Portal Overview

Business Intelligence Office of Planning Planning and Statistics Portal Overview Planning and Statistics Portal Overview Introduction The Planning and Statistics Portal (PSP) is a tool designed to provide easy access to university data. The information provided can assist you in making

More information

IBM Business Monitor V8.0 Global monitoring context lab

IBM Business Monitor V8.0 Global monitoring context lab Copyright IBM Corporation 2012 All rights reserved IBM BUSINESS MONITOR 8.0 LAB EXERCISE IBM Business Monitor V8.0 lab What this exercise is about... 2 Lab requirements... 2 What you should be able to

More information

Introduction to IBM Digital Analytics Michigan.gov

Introduction to IBM Digital Analytics Michigan.gov Introduction to IBM Digital Analytics Michigan.gov Revised: October 17, 2013 Table of Contents Overview... 3 Accessing Digital Analytics... 3 System Requirements... 3 Main Page... 3 Top Navigation... 4

More information

Installing Citrix for Mac

Installing Citrix for Mac Installing Citrix for Mac 1) Go to: http://receiver.citrix.com. 2) Click on Download Receiver. 3) On the bottom left hand corner of your computer screen, the Citrix Download should appear. Click on that

More information

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE Source Code Management for Continuous Integration and Deployment Version 1.0 Copyright 2013, 2014 Amazon Web Services, Inc. and its affiliates. All rights reserved. This work may not be reproduced or redistributed,

More information

How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com

How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com How to Log in to LDRPS-Web v10 (L10) https://enterprise.strohlservices.com Contents First Time Login Instructions... 1 1) Use the Internet Explorer (IE) Web browser*... 1 2) Install the.net Framework...

More information

Quick Start Guide Using OneDisk with the Tappin Service

Quick Start Guide Using OneDisk with the Tappin Service Quick Start Guide Using OneDisk with the Tappin Service Copyright 2013, Tappin, Inc. All rights reserved. Tappin and the Tappin logo are trademarks of Tappin, Inc. All other trademarks are the property

More information

Code in the cloud for the cloud jfokus.mybluemix.net

Code in the cloud for the cloud jfokus.mybluemix.net Code in the cloud for the cloud jfokus.mybluemix.net Lauren Schaefer @Lauren_Schaefer #jfokus #Code4TheCloud Code in the cloud for the cloud jfokus.mybluemix.net Lauren Schaefer @Lauren_Schaefer #jfokus

More information

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers 1 Table of Contents INTRODUCTION MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS

More information

Single Sign-On Portal User Reference (Okta Cloud SSO)

Single Sign-On Portal User Reference (Okta Cloud SSO) Single Sign-On Portal User Reference (Okta Cloud SSO) Contents Okta Single Sign-on Portal... 3 Initial account creation and configuration... 3 First time manual login to the Okta Single Sign-on Portal...

More information

MiraCosta College now offers two ways to access your student virtual desktop.

MiraCosta College now offers two ways to access your student virtual desktop. MiraCosta College now offers two ways to access your student virtual desktop. We now feature the new VMware Horizon View HTML access option available from https://view.miracosta.edu. MiraCosta recommends

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

1. Right click using your mouse on the desktop and select New Shortcut.

1. Right click using your mouse on the desktop and select New Shortcut. offers 3 login page styles: Standard Login, List Login or Quick Time Punch. Each login page can be saved as a shortcut to your desktop or as a bookmark for easy fast login access. For quicker access to

More information

1. Determine Your Current Software Version

1. Determine Your Current Software Version 1. Determine Your Current Software Version The procedure for upgrading your EAGLE to the version 2.2 software will depend upon the software version that is currently running on your EAGLE. To determine

More information

How to use Google Cloud Print

How to use Google Cloud Print How to use Google Cloud Print 1 You can use your Canon printer for Google Cloud Print, following the procedures explained below. In Google Cloud Print, you will be able to print from anywhere you like

More information

Install and End User Reference Guide for Direct Access to Citrix Applications

Install and End User Reference Guide for Direct Access to Citrix Applications Install and End User Reference Guide for Direct Access to Citrix Applications Version 1.0 7/26/2013 This remote access end user reference guide provides an overview of how to install Citrix receiver (a

More information

Throughout this document, you will be instructed to log in as user Ann, or as user Julia. Log in using the user name assigned to you.

Throughout this document, you will be instructed to log in as user Ann, or as user Julia. Log in using the user name assigned to you. Introduction Oracle Documents Cloud Service (also referred to as "Oracle DOCS ) is a subscription-based file sync and share service available in the Oracle Cloud. It gives your employees a way to easily

More information

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide

Citrix Virtual Classroom. Deliver file sharing and synchronization services using Citrix ShareFile. Self-paced exercise guide Deliver file sharing and synchronization services using Citrix ShareFile Self-paced exercise guide Table of Contents Table of Contents... 2 Overview... 3 Exercise 1: Setting up a ShareFile Account... 6

More information

Building emerging technology skills using IBM s Platform as a Service

Building emerging technology skills using IBM s Platform as a Service Building emerging technology skills using IBM s Platform as a Service New era of education for the new era of learning The IBM Academic Initiative program is a no-charge global program that offers educators

More information

RingCentral for Desk. User Guide

RingCentral for Desk. User Guide RingCentral for Desk User Guide RingCentral for Desk User Guide Contents Contents Introduction... 3 About the RingCentral for Desk........................................................ 4 About this Guide.................................................................

More information

Edwin Analytics Getting Started Guide

Edwin Analytics Getting Started Guide Edwin Analytics Getting Started Guide This guide provides assistance for accessing and using Edwin Analytics, the Department of Elementary and Secondary Education s (ESE) online tool for expanding data

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Make and Transfer a Backup

Make and Transfer a Backup Save and Restore Backups using WiFi Make and Transfer a Backup Turn on Wi-Fi Press the Home button on your device and navigate to the Settings app (gear icon). Look for the Wi-Fi section and tap on Wi-Fi.

More information

Strategic Information Reporting Initiative (SIRI) User Guide for Student Dashboard

Strategic Information Reporting Initiative (SIRI) User Guide for Student Dashboard Strategic Information Reporting Initiative (SIRI) User Guide for Student Dashboard Table of Contents I. Signing into SIRI... 3 A. Logging on... 3 B. Accessing SIRI off campus... 4 C. Questions... 4 II.

More information

BI 4.1 Quick Start Guide (for Online Report Users)

BI 4.1 Quick Start Guide (for Online Report Users) BI 4.1 Quick Start Guide (for Online Report Users) Contents Introduction... 3 Logging in... 3 Home Screen... 4 Preferences... 6 Setting Up Preferences to Display Online Reporting Folders... 7 Running a

More information

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation

Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation Mechanics Bank Mobile Banking Mobile Finance Manager (MFM) Application Palm Treo Installation Thank you for your interest in Mechanics Bank Mobile Banking. This guide will help you get started with Mechanics

More information

WebFOCUS Reporting User Manual

WebFOCUS Reporting User Manual WebFOCUS Reporting User Manual Table of Contents 1. Key Information page 3 2. Internet Explorer Security Settings page 4 3. Accessing the WebFOCUS launch page page 11 4. Login Screen page 12 5. Views page

More information

XenApp & XenDesktop Documentation. Help Desk (202) 994-8096 www.columbian.gwu.edu/ots

XenApp & XenDesktop Documentation. Help Desk (202) 994-8096 www.columbian.gwu.edu/ots XenApp & XenDesktop Documentation Help Desk (202) 994-8096 www.columbian.gwu.edu/ots 1 Version Date Comments Author v1.0 June 2011 Initial Version R. Shore v2.0 December 2011 Full Revision R. Shore v2.1

More information

Using the Educator Dashboard

Using the Educator Dashboard Reference Guide Using the Educator Dashboard What s Inside How to Create Accounts Get to Know the Educator Dashboard How to Manage Licenses and Create Educators How to Give Accommodations to Students First

More information

Install MS Office 365 on your Android mobile device

Install MS Office 365 on your Android mobile device Install MS Office 365 on your Android mobile device IT Documentation Team, March 2015 This factsheet contains instructions for installing the Office Mobile for Android phone and Office for Android tablet

More information

SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client

SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client SHC Client Remote Access User Guide for Citrix & F5 VPN Edge Client Version 1.1 1/15/2013 This remote access end user reference guide provides an overview of how to install Citrix receiver (a required

More information

Zoom Cloud Meetings: Leader Guide

Zoom Cloud Meetings: Leader Guide Zoom Cloud Meetings: Leader Guide Zoom is a cloud-based conferencing solution that provides both video conferencing and screen share capabilities. Zoom can be used for meetings among individuals or to

More information

ipad Set Up Guide: Staff! 1 of! 20

ipad Set Up Guide: Staff! 1 of! 20 ipad Set Up Guide: Staff! 1 of! 20 Follow the step-by-step directions in this document to activate your ipad; set up Lotus Notes Traveler; install and configure Google Chrome and Google Drive; and set

More information

Sustainability Dashboard Quick Start Guide

Sustainability Dashboard Quick Start Guide Sustainability Dashboard Quick Start Guide The Sustainability Dashboard is a web based energy management system that allows users to track a building s performance, generate reports and identify leaks

More information

ADA Applicant Business Process Guide

ADA Applicant Business Process Guide Objectives ADA Applicant Business Process Guide The purpose of this document is to give you an understanding of how to apply and maintain an applicant account at the American Dental Association (ADA).

More information

IBM Watson Ecosystem. Getting Started Guide

IBM Watson Ecosystem. Getting Started Guide IBM Watson Ecosystem Getting Started Guide Version 1.1 July 2014 1 Table of Contents: I. Prefix Overview II. Getting Started A. Prerequisite Learning III. Watson Experience Manager A. Assign User Roles

More information

Quick Start Guide. Overview

Quick Start Guide. Overview Quick Start Guide UPDATED: JUNE 22, 2012 Overview Onehub makes it easy to securely store, organize, and share files in the cloud. Onehub organizes information in Workspaces, secure spaces that make it

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

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

IBM s Cloud Platform : IBM Bluemix

IBM s Cloud Platform : IBM Bluemix IBM s Cloud Platform : IBM Bluemix IBM Ecosystem Development Instructor : IBM Bluemix Registration Go to bluemix.net and sign up Use your laptop, mobile device or classroom system

More information

AVG Business SSO Partner Getting Started Guide

AVG Business SSO Partner Getting Started Guide AVG Business SSO Partner Getting Started Guide Table of Contents Overview... 2 Getting Started... 3 Web and OS requirements... 3 Supported web and device browsers... 3 Initial Login... 4 Navigation in

More information

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On Installation and Setup of Google Drive for Students on Mac OS X Purpose: This guide will lead you through the Google Drive Installation and Configuration. Pre-requisites: 1) ODU Student Gmail account 2)

More information

How to remotely access your Virtual Desktop from outside the college using VMware View Client. How to guide

How to remotely access your Virtual Desktop from outside the college using VMware View Client. How to guide How to remotely access your Virtual Desktop from outside the college using VMware View Client How to guide Author: ICT Services Version: 1.0 Date: November 2015 Contents What is the VMware View Client?...

More information

Using the Jive for ios App

Using the Jive for ios App Using the Jive for ios App TOC 2 Contents App Overview...3 System Requirements... 4 Release Notes...5 Which Version Am I Using?... 6 Connecting to Your Community... 11 Getting Started...12 Using Your Inbox...13

More information

Managing Existing Mobile Apps

Managing Existing Mobile Apps Adobe Summit 2016 Lab 324: Managing Existing Mobile Apps Adobe Experience Manager Mobile 1 Table of Contents INTRODUCTION 4 GOAL 4 OBJECTIVES 4 MODULE 1 AEM INTRODUCTION 5 LESSON 1 - AEM BASICS 5 OVERVIEW

More information

How to Access Charge Card Training

How to Access Charge Card Training How to Access Charge Card Training Within the Knowledge Center (also known as KC Global, or LMS) is a course catalog, which allows you to quickly locate a specific course and launch it. Step 1. Step 2.

More information

Remote Access End User Reference Guide for SHC Portal Access

Remote Access End User Reference Guide for SHC Portal Access Remote Access End User Reference Guide for SHC Portal Access Version 2.0 6/7/2012 This remote access end user reference guide provides an overview of how to install Citrix receiver, which is a required

More information

ATTENTION: End users should take note that Main Line Health has not verified within a Citrix

ATTENTION: End users should take note that Main Line Health has not verified within a Citrix Subject: Citrix Remote Access using PhoneFactor Authentication ATTENTION: End users should take note that Main Line Health has not verified within a Citrix environment the image quality of clinical cal

More information

Operational Decision Manager Worklight Integration

Operational Decision Manager Worklight Integration Copyright IBM Corporation 2013 All rights reserved IBM Operational Decision Manager V8.5 Lab exercise Operational Decision Manager Worklight Integration Integrate dynamic business rules into a Worklight

More information

IC L05: Email Security.cloud Configuring DLP on to your email flow & Applying security to your Office 365 or Google Apps email deployment Hands-On Lab

IC L05: Email Security.cloud Configuring DLP on to your email flow & Applying security to your Office 365 or Google Apps email deployment Hands-On Lab IC L05: Email Security.cloud Configuring DLP on to your email flow & Applying security to your Office 365 or Google Apps email deployment Hands-On Lab Description This session is for existing customers

More information

Installation Guide and Machine Setup

Installation Guide and Machine Setup Installation Guide and Machine Setup Page 1 Browser Configurations Installation Guide and Machine Setup The first requirement for using CURA is to ensure that your browser is set up accurately. 1. Once

More information

RISKMASTER Business Intelligence Working with Reports User Guide

RISKMASTER Business Intelligence Working with Reports User Guide RISKMASTER Business Intelligence Working with Reports User Guide Statement of Confidentiality This documentation contains trade secrets and confidential information, which are proprietary to Computer Sciences

More information

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET

More information

AC14 App Demo. Download: www.ascd.org/ac14app. 69th ANNUAL CONFERENCE & EXHIBIT SHOW

AC14 App Demo. Download: www.ascd.org/ac14app. 69th ANNUAL CONFERENCE & EXHIBIT SHOW AC14 App Demo Download: www.ascd.org/ac14app Settings Gear With the settings gear you can 1. Log in. 2. Create a profile. Log-In To log in, you need To be registered for the conference to log in. To have

More information

Chromebook Reference Document

Chromebook Reference Document Chromebook Reference Document Introduction A Chromebook is a laptop computer made to browse the web and run web apps. Chromebooks run Chrome OS as the operating system and have an interface similar to

More information

Zoho CRM and Google Apps Synchronization

Zoho CRM and Google Apps Synchronization Zoho CRM and Google Apps Synchronization Table of Contents End User Integration Points 1. Contacts 2. Calendar 3. Email 4. Tasks 5. Docs 3 6 8 11 12 Domain-Wide Points of Integration 1. Authentication

More information

Using the Online ebooks Library. Moray Council Libraries & Information Services. For more information log on to http://moray.libraryebooks.co.

Using the Online ebooks Library. Moray Council Libraries & Information Services. For more information log on to http://moray.libraryebooks.co. Using the Online ebooks Library Moray Council Libraries & Information Services For more information log on to http://moray.libraryebooks.co.uk How does the ebooks Service work? Log in to ebooks website

More information

Quick Start Guide. Installation and Setup

Quick Start Guide. Installation and Setup Quick Start Guide Installation and Setup Introduction Velaro s live help and survey management system provides an exciting new way to engage your customers and website visitors. While adding any new technology

More information

Hadoop Basics with InfoSphere BigInsights

Hadoop Basics with InfoSphere BigInsights An IBM Proof of Technology Hadoop Basics with InfoSphere BigInsights Part: 1 Exploring Hadoop Distributed File System An IBM Proof of Technology Catalog Number Copyright IBM Corporation, 2013 US Government

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

Creating a generic user-password application profile

Creating a generic user-password application profile Chapter 4 Creating a generic user-password application profile Overview If you d like to add applications that aren t in our Samsung KNOX EMM App Catalog, you can create custom application profiles using

More information

IBM Bluemix Tutorial Connecting Eclipse to Bluemix v2.0

IBM Bluemix Tutorial Connecting Eclipse to Bluemix v2.0 IBM Bluemix http://ibm.biz/bluemixph A platform where developers can act like kids in a sandbox except this box is enterprise-grade. This laboratory exercise demonstrates how to connect Eclipse to Bluemix

More information

There are a variety of ways to read ebooks from the Stirling Libraries and Archives ebooks Collection.

There are a variety of ways to read ebooks from the Stirling Libraries and Archives ebooks Collection. 1 Guide Contents Using Stirling Libraries and Archives ebook Service 2 Downloading to Adobe Digital Editions 6 Transferring to an E-Reader from Adobe Digital 7 Editions Downloading to an Apple ipad and

More information

Creating an itunes App Store account without a credit card

Creating an itunes App Store account without a credit card Creating an itunes App Store account without a credit card Summary To create an itunes App Store account on your computer without a credit card, please follow the steps below. In order to create an account

More information

Customize Bluefin Payment Processing app to meet the needs of your business. Click here for detailed documentation on customizing your application

Customize Bluefin Payment Processing app to meet the needs of your business. Click here for detailed documentation on customizing your application STEP 1 Download and install Bluefin Payment Processing app STEP 2 Sign up for a Bluefin merchant account Once you install the application, click the Get Started link from the home page to get in touch

More information

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

Setting up an Apple ID

Setting up an Apple ID Setting up an Apple ID SETUP GUIDE: This setup guide was created for Albany Creek State High school to be used only for the purpose of assisting school staff and students in setting up and configuring

More information

PARK UNIVERSITY. Information Technology Services. VDI In-A-Box Virtual Desktop. Version 1.1

PARK UNIVERSITY. Information Technology Services. VDI In-A-Box Virtual Desktop. Version 1.1 PARK UNIVERSITY Information Technology Services VDI In-A-Box Virtual Desktop Version 1.1 I N F O R M A T I O N T E C H N O L O G Y S E R V I C E S VIRTUAL DESKTOP USER MANUAL Park University 8700 NW River

More information

Server Configuration and Deployment (part 1) Lotus Foundations Essentials

Server Configuration and Deployment (part 1) Lotus Foundations Essentials Server Configuration and Deployment (part 1) Lab Manual Lotus Foundations Essentials Introduction: In this lab, students will configure an IBM Lotus Foundations server using a virtual image to perform

More information

ClickView app for iphone and ipad User manual for admins/teachers

ClickView app for iphone and ipad User manual for admins/teachers ClickView app for iphone and ipad User manual for admins/teachers Table of Contents How to download and install the ClickView app... 3 How to configure Single Sign-On (SSO) on the ClickView app... 5 How

More information

2015 IBM Continuous Engineering Open Labs Target to better LEARNING

2015 IBM Continuous Engineering Open Labs Target to better LEARNING 2015 IBM Continuous Engineering Open Labs Target to better LEARNING (NO COST - not a substitute for full training courses) Choose from one or more of these Self-Paced, Hands-On Labs: DMT 3722 - Learn to

More information

PDF Bookmarks Help Page: When clicking on a Bookmark and Nothing Happens (or sometimes 'File Not Found' Error)

PDF Bookmarks Help Page: When clicking on a Bookmark and Nothing Happens (or sometimes 'File Not Found' Error) PDF Bookmarks Help Page: When clicking on a Bookmark and Nothing Happens (or sometimes 'File Not Found' Error) Causes: Part 1: Acrobat or Adobe Reader has not been enabled to display PDFs in your Browser.

More information

Three Rivers Community College Wireless Network

Three Rivers Community College Wireless Network Three Rivers Community College Wireless Network TRCC s Information Technology Division offers free wireless network connectivity for students. The network grants students high-speed access to the Internet

More information

Getting Started. with VitalSource Bookshelf. How to Access your ebooks Using VitalSource Bookshelf

Getting Started. with VitalSource Bookshelf. How to Access your ebooks Using VitalSource Bookshelf Getting Started with VitalSource Bookshelf How to Access your ebooks Using VitalSource Bookshelf Table of Contents Step 1: Accessing VitalSource Bookshelf Online... 1 Step 2: Configuring Your Account for

More information

WebsiteAlive Operator Panel. A WebsiteAlive How-To Guide

WebsiteAlive Operator Panel. A WebsiteAlive How-To Guide WebsiteAlive Operator Panel A WebsiteAlive How-To Guide TM WebsiteAlive Operator Panel A WebsiteAlive How-To Guide This document will help you familiarize yourself with the WebsiteAlive Operator Panel

More information

NOTE: New directions for accessing the Parent Portal using Single Sign On

NOTE: New directions for accessing the Parent Portal using Single Sign On NOTE: New directions for accessing the Parent Portal using Single Sign On PROCESS STEPS SCREEN SHOTS Launch a web browser (Internet Explorer, Safari, or FireFox) and go to PowerSchool Parent Portal URL:

More information

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion

Initial Setup of Microsoft Outlook 2011 with IMAP for OS X Lion Initial Setup of Microsoft Outlook Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access Protocol

More information

Drobo How-To Guide Drobo Apps - Configuring ElephantDrive

Drobo How-To Guide Drobo Apps - Configuring ElephantDrive The Drobo 5N provides simple and affordable network attached storage for the connected home or small office. ElephantDrive is a cloud-based service that provides real-time protection of all, or a subset

More information

Google Trusted Stores Setup in Magento

Google Trusted Stores Setup in Magento Google Trusted Stores Setup in Magento Google Trusted Stores is a free badging program that can improve your conversion rate and average order size by reassuring potential customers you offer a great shopping

More information

Citrix Remote Access Work Instructions

Citrix Remote Access Work Instructions Work Instructions Version 1.0 15 January 2010 InTACT Shared Services Centre ACT Department of Treasury Quality Management System Service Management Tools Contents Introduction... 3 Purpose... 3 Scope...

More information

This guide is to help you get started with Live Chat Support on your Wix website. If you have any additional questions after reading this guide,

This guide is to help you get started with Live Chat Support on your Wix website. If you have any additional questions after reading this guide, This guide is to help you get started with Live Chat Support on your Wix website. If you have any additional questions after reading this guide, please chat with us at www.socialintents.com or email us

More information

The UC Learning Center: Disabling Pop-Up Blockers

The UC Learning Center: Disabling Pop-Up Blockers The UC Learning Center: Disabling Pop-Up Blockers In order to launch online courses within the UC Learning Center all pop-up blockers must be turned off. This guide will walk you through disabling pop-up

More information

my.scouting Tools Training-Home Trend Chart Training Summary Report

my.scouting Tools Training-Home Trend Chart Training Summary Report my.scouting Tools Training-Home my.scouting Tools is best experienced using the latest version of Google Chrome or Mozilla Firefox. Also works with the latest version of Safari, and Internet Explorer (v11).

More information

Active Directory Integration for Greentree

Active Directory Integration for Greentree App Number: 010044 Active Directory Integration for Greentree Last Updated 14 th February 2013 Powered by: AppsForGreentree.com 2013 1 Table of Contents Features... 3 Options... 3 Important Notes... 3

More information

AWS CodePipeline. User Guide API Version 2015-07-09

AWS CodePipeline. User Guide API Version 2015-07-09 AWS CodePipeline User Guide AWS CodePipeline: User Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may not be used in connection

More information

Recommended Browser Setting for MySBU Portal

Recommended Browser Setting for MySBU Portal The MySBU portal is built using Microsoft s SharePoint technology framework, therefore, for the best viewing experience, Southwest Baptist University recommends the use of Microsoft s Internet Explorer,

More information

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility

INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR. User Guide for the RightFax Fax Service. Web Utility INFORMATION SYSTEMS SERVICE NETWORKS AND TELECOMMUNICATIONS SECTOR User Guide for the RightFax Fax Service Web Utility August 2011 CONTENTS 1. Accessing the Web Utility 2. Change Password 3. Web Utility:

More information