QUICK START GUIDE. Cloud based Web Load, Stress and Functional Testing

Size: px
Start display at page:

Download "QUICK START GUIDE. Cloud based Web Load, Stress and Functional Testing"

Transcription

1 QUICK START GUIDE Cloud based Web Load, Stress and Functional Testing

2 Performance testing for the Web is vital for ensuring commercial success. JAR:Load is a Web Load Testing Solution delivered from the Cloud for organisations across the globe. This revolutionary, ultra fast, highly scalable solution is accessible anywhere, anytime, and from any device, allowing tests to be created and implemented in minutes with no download. JAR:Load allows you to build, execute, and analyze performance tests on its powerful, intuitive platform. Use the Cloud functionality to scale your tests to any load testing requirement, across any geographical location. Process Driven Testing JAR:Load s process driven user interface offers users a step-by-step guide on how to plan, create and execute load tests instantly. Suitable for both novice and experienced performance engineers, users can create simple tests without code, or use intuitive LUA scripting to build highly customised, data-driven tests with ease. Design This section allows you to design and create scripts, load profiles, datasets, etc. Deploy Add in your cloud or behind the firewall servers to spread the load (not configurable in the trial). Schedule You can schedule any test (or launch now) from this section. Run This section provides reporting and analysis of your live or previously executed tests.

3 QUICK START GUIDE Dashboard Figure 1: Dashboard Panel The Dashboard area is the starting point for your load generation, it gives an overview of what is happening within JAR:Load. It is split up into widgets which are outlined in the next page.

4 Quick links jump right in In this widget you can quickly jump to specific parts of the application, each link is outlined below: Create a script This link will take you to the Scripts sub panel under Design. You will be able to access knowledge base articles on all areas of the sub panel as well as tutorials on how to create a script. Recording Wizard This link will take you directly to the recording wizard. If you are not familiar with LUA scripting the wizard will take you through step by step to create and record a script. Create a data-set This link will take you to the datasets area, here you can upload CSV files containing information that the virtual users can use during the load tests. Figure 2: Quick Links Widget Create a load profile If you have already created a script you can use this link to take you straight through to creating a load profile which describes when to create virtual users and how many virtual users to create. Configure load generators This link will take you the Deploy section where you can use either static (behind the firewall) servers or cloud servers to create the load on. View test summary This link will take you through to the Scheduling area where you can view your currently executing tests or your pending tests. Launch a test now This link will take you through to the Launch now sub panel of the calendar where you can launch a test right away. View the results This link will take you through to the Run area where you can view results from the currently executing test plan or view results from previously executed test plans.

5 QUICK START GUIDE JAR:Load service status This widget displays the current status of JAR:Load. Service Status Displays information regarding the servers and virtual machines within the JAR:Load environment. Pending Events News such as upcoming releases, pending maintenance or updates regarding downtime will be displayed in this section. Figure 3: JAR:Load Service Status Widget Project Resources Summary This widget displays the following: Resources currently in use Shows the amount of virtual users in use by currently executing tests. Resources currently not in use Shows the amount of virtual users not in use, if you have any executing test plans this will be the number of virtual on your account minus the virtual users in use. Load Profile Summary This area shows you how man Load Profiles you have currently scheduled or executing. Figure 4: Project Resources Summary Widget User Summary This widget displays information for the user such as: The last time a user logged in The duration of the session before it will time out, expire and ask the user to log in The number of projects that a user is linked to. Figure 5: User Summary Widget

6 Getting started with JAR:Load This widget will allow you to follow Learn more links for information on the following topics: Load This will open an article explaining how to get started with generating load and stress on your application. Functional This will open an article allowing you to understand how JAR:Load gives you functional testing for free! AJAX without any work! This will open an article on how our real browsers mean no more AJAX scripting Recording This will open an article explaining our recording mechanism as well as taking you to a dedicated tutorial. Figure 6: Getting started with JAR:Load

7 QUICK START GUIDE Find out more This widget will display the latest information from various sources from the JAR:Load support section and the JAR:Load Website. Figure 7: Find out more

8 Training Videos This widget will contain links to videos that will explain the different areas of JAR:Load. We have the following videos on the dashboard: Figure 8: Training Videos Getting Started A tour around the application that will show you how to create a script, create a load profile and execute the test. An in-depth look at real browser testing This video will explain why JAR:Load uses real browsers and the benefits it can bring to giving a true representation of how your website/web Application acts. Load and functional testing with one script This video will explain how you can functionally test your site along with load testing it at the same time. Recording a website This video will explain step-by-step guide on how to use the recording feature in JAR:Load to help create your script. Understanding load profiles This video will explain how load profiles will work and show an example on how to create one. This is only a small section of our videos, a full range of videos can be found within our Knowledge Base.

9 QUICK START GUIDE How do I? This widget will contain links to articles that will explain the following: Getting stated with JAR:Load in 5 minutes A Guide that will take you through the process on creating a script, creating a load profile, launching a test to viewing the results. Record a VU script This will open an article explaining our recording mechanism as well as taking you to a dedicated tutorial. Pricing An article explaining ways you can find out about our pricing guide for JAR:Load. Figure 9: How do I

10 Getting Support This widget will contain links to knowledge base articles that will explain the following: How do I access JAR:Load live support? This article will provide information on how to enable the live support tab on various panels. Can I speak with a support engineer? This article will provide information on how to get in contact with our support engineers. How do I create a support ticket? This article will provide information on how to create a support ticket on our dedicated ticket system ( if you have an issue or spot a bug. Figure 10: Getting Support

11 QUICK START GUIDE Building a Simple VU Script A Virtual User (VU) Script is where you can create highly customisable scenarios to test how your target system will function under different conditions. Navigate to the Design > Scripts tab and follow the instructions below: Above the Scripts sub panel you will see the New Script button (Figure 11), clicking this will create a new script for you to customise. Figure 11: Create a new script Under Design > Scripts > Properties enter in the following details as show in Figure 12. Figure 12: Properties Panel Once you have entered in the properties of the script, you can now move onto the LUA Script tab. You should see the tab open along the Sub Menu. If the tab is not open, click on the add tab button, select Script Editor and click Add Tab. Figure 13: Add a new tab...

12 The scripting language used in JAR:Load is LUA, it is a lightweight scripting language useful for providing users an easy way to program the behaviour of virtual users. The advantages to using this type of scripting are: It is easy to use Flexible Comprehensive Example BBC Example Script (Correct as off July 2015) This script goes to BBC, searches for the top headline on the BBC News page, extracts the text from the link, prints the text and lastly clicks the top headline. Below is a breakdown of the code: 1. First we must create a New Browser, by default it will load Chrome 24.0 however in this tutorial we have added the User Agent String for Firefox create a web page WebPage = Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/ Firefox/29.0 ); 2. We then call LoadWebPage and enter in -- load the page WebPage:LoadWebPage( ); 3. Next we call WaitForPageLoad so the Virtual User knows not to do anything until the page loads. This API call waits until all the network requests are completed. WebPage:WaitForPageLoad(); Figure 14 shows how your script should currently look: Figure 14: Current Script

13 QUICK START GUIDE 4. Once the Page Loads we must search for the Top Story on the Page. To do this we must find the ID of the element on the page, using either Chrome s Development tools or Firebug load up the BBC webpage in a New Tab. Find the top story TopstoryElement = WebPage:GetElementById( comp-pattern-library ); 5. We have found the top story, we must find the headline from the topstory. Find the headline HeadlineElement = TopstoryElement:FindFirstElement( h3 ); 6. Now that we have found the headline we must get the contents of this element in XML form so we can print it to the logs area. --Get the text from the title HeadlineValue = HeadlineElement:ToInnerXml(); 7. We Print the Headline using the API call Log:Print. --Print the top headline Log:Print( HeadlineValue ); 8. We now click the Headline as it is a link. --Click the TopHeadline Mouse:LeftClick(HeadlineElement); 9. A click has been made so we call WaitForPageLoad so the Virtual User knows not to do anything until the page loads. WebPage:WaitForPageLoad(); 10. A sleep call to tell the virtual user to wait for 5 seconds --sleep for the length of time since the last action Utility:Sleep(5);

14 Figure 14: Finished Script Once you have done this click on the Save Changes button to save the script. Before you move away from the Scripts panel you may want to test your script to make sure there are no errors. You can do this by using the toolbar shown in Figure 15. Figure 15: Script Toolbar You can: 1. Play and test the script 2. Settings to test the script once through (Single shot) or for a time between 5 minutes and 4 hours. 3. Save the script. 4. Revert any chances since the last save. 5. Undo the previous action. 6. Redo the previous action. 7. Go to a specific line 8. Re-indent the script. 9. Search the script for a specific string. 10. Search and replace one instance of a specific string. 11. Search and replace all instances of a string.

15 QUICK START GUIDE Data Sets A Dataset is a collection of data used by the virtual users. Usually datasets contain input data for the target service. Instead of all virtual users having the same input data statically written in the script, virtual users can request input data from the dataset. For example you may require a Virtual User to have a username and password to access a website or you may require them to do individual search. Each dataset is created in a CSV file and then uploaded to JAR:Load. You can set a default access on each data set, there are 3 different modes these are: Linear This access method means the virtual user will go through the dataset row by row. Unique This access mode will guarantees that each request to the dataset will return an unique row, if all rows have been used it will start from the beginning. Random This access mode will return a random row from the dataset. If you go to the Design > Data sets > Values tab you will see a default csv already uploaded to JAR:Load, Figure 16 shows the default values you will use for the YouTube Figure 16: Example of Data Set Values

16 Building a Load Profile After creating a VU Script you can now build up your load profile by specifying the amount of users you want and how you want the load applied by using the time line facility. To start building your Load Profile, navigate to Design > Load Profiles. Click on the New Load Profile button. This will create a load profile for you to customise, on the properties sub tab type in the name of the plan, give it a description, select 10 minutes for the duration, enter 10 for the maximum number of virtual users you want to use and then switch to Design > Load profiles > Load profiles. Figure 17 shows you what you are presented with: Figure 17: A Load Pattern graph The next step is to assign the Virtual User Script that you generated on the VU Scripts tab to this load profile, to do this under the heading VU selection on the left hand side of the tab click the button. Select the script that you have created and click Add script. Figure 18: Add VU Script to a test plan.

17 QUICK START GUIDE You will see a blank graph, this is where we will supply the load pattern by adding in how many virtual users we are going to use. If you move your mouse over the graph you will see that it shows you the time and the percentage of VU s at that point. You can add points to the graph by double clicking the left button on your mouse. The graph works using drag and drop or you can right click on a point and go to settings. Figure 19 shows a point s settings and figure 20 shows an example load pattern graph. Figure 19: Example of a Load Pattern Graph Figure 20: Example of a Load Pattern Graph

18 Launch a Load Profile Now that you have your Load Profile created you are able to run the load generation immediately or schedule it for a future time and date. In this guide we will be launching the test immediately. To start navigate to Schedule you are presented with a summary tab. On this tab you can view any running tests or view information on upcoming scheduled tests. Next navigate to the Schedule > Calendar > Launch Now subtab. On this tab you can select the load profile you want to launch as well as selecting the duration of the test. If you are a trial user the test can only run up to 10 minutes. Figure 20: Example of a Load Pattern Graph As you can see the information for the selected load profile is taken from what you set in the Design > Load Profile > Properties panel. Once you have confirmed the details click Launch now!

19 QUICK START GUIDE Run Monitoring and Results This is the area where you will get the most out of your load generation, from viewing graphs and reports to exporting data for your own use. To view your current or previous results from your test plans click on the Run Monitoring and Results tab. Figure 21 shows the test plan log's area, here you are able to view the current load profile and when it was started, how long it has ran for, the percentage of the test that is completed and you can choose to abort the test. As well as this you are able to select the drop down box and choose from the previous test that have been executed. Figure 21: Test Plan Logs Figure 22 shows the total metrics, this area is shown when a test is running, you are able to see how many virtual users are running, the total throughput that the virtual users are generating, the amount of requests the system is handling a second, the average response time of the requests, the total requests and if any of the requests failed. Figure 22: Total Metrics Regardless of whether a test has been completed or is still running you are able to view the results on the graphs such as the one below (Figure 23), in the example below we have three metrics displayed on the graph, you can have up to a maximum of 5 metrics on one graph. The metrics that are available are shown on the table in Figure 24.

20 Figure 23: Results Graph Metric Received bytes per second Transmitted bytes per second Requests per second Average response time (ms) Active virtual users Total requests Total bytes received Total bytes transmitted Transmitted transactions Received transactions Successful transactions Failed requests Script lines executed Explanation Shows the amount of bytes that have been received per second Shows the amount of bytes that have been transmitted per second Shows the amount of requests made per second Shows the average reponse time from the website Shows the amount of virtual users that are active Shows the total requests Shows the total amount of bytes received Shows the total amount of bytes transmitted Shows the amount of transactions transmitted. A transaction is a function where you would group a piece of code in Figure 4. An example would be grouping the login code together. Shows the amount of transactions received Shows the amount of the requests that were successful Shows the amount of the requests that failed Shows the amount of lines of script that were executed Figure 24: Metrics Available

21 QUICK START GUIDE JAR:Load stores the results for all tests executed so you are able to compare results on one or more graphs. Figure 25 shows the script that was created above ran 2 separate times, one in the afternoon and the other test ran in the morning. As well as comparing test on separate graphs, you are able to compare them on the one graph by clicking on the Executed Test Plan drop down box. Figure 25: Comparing 2 test plans Lastly we look at the Logs output, here you are able to view the log messages from your script. You are able to view logs per virtual user by selecting the virtual user from the drop down box as shown in Figure 26: Figure 26: Example of the Log output

22 JAR Technologies, BT3 Business Centre, 10 Dargan Crescent, Duncrue Road, Belfast, Co Antrim, BT3 9JP T: +44 (0) W: E:

JAR:Load Quick Start Guide

JAR:Load Quick Start Guide Application and Web Load Testing PERSONAL TECHNICAL SUPPORT CONTACT JAR:Load Quick Start Guide Please note: this Quick Start Guide is for informational purposes only. Plan Create Load Analyse Respond QUICK

More information

Application and Web Load Testing. Datasheet. Plan Create Load Analyse Respond

Application and Web Load Testing. Datasheet. Plan Create Load Analyse Respond Application and Web Load Testing Datasheet Plan Create Load Analyse Respond Product Overview JAR:load is an innovative web load testing solution delivered from the Cloud* for optimising the performance

More information

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning

Livezilla How to Install on Shared Hosting http://www.jonathanmanning.com By: Jon Manning Livezilla How to Install on Shared Hosting By: Jon Manning This is an easy to follow tutorial on how to install Livezilla 3.2.0.2 live chat program on a linux shared hosting server using cpanel, linux

More information

Terminal Four. Content Management System. Moderator Access

Terminal Four. Content Management System. Moderator Access Terminal Four Content Management System Moderator Access Terminal Four is a content management system that will easily allow users to manage their college web pages at anytime, anywhere. The system is

More information

Web Load Stress Testing

Web Load Stress Testing Web Load Stress Testing Overview A Web load stress test is a diagnostic tool that helps predict how a website will respond to various traffic levels. This test can answer critical questions such as: How

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

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

Getting Started with WPM

Getting Started with WPM NEUSTAR USER GUIDE Getting Started with WPM Neustar Web Performance is the cloud-based platform offering real-time data and analysis, helping to remove user barriers and optimize your site. Contents Getting

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca!

Quick Start Guide. Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! Quick Start Guide Cerberus FTP is distributed in Canada through C&C Software. Visit us today at www.ccsoftware.ca! How to Setup a File Server with Cerberus FTP Server FTP and SSH SFTP are application protocols

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

More information

Getting Started with PRTG Network Monitor 2012 Paessler AG

Getting Started with PRTG Network Monitor 2012 Paessler AG Getting Started with PRTG Network Monitor 2012 Paessler AG All rights reserved. No parts of this work may be reproduced in any form or by any means graphic, electronic, or mechanical, including photocopying,

More information

email-lead Grabber Business 2010 User Guide

email-lead Grabber Business 2010 User Guide email-lead Grabber Business 2010 User Guide Copyright and Trademark Information in this documentation is subject to change without notice. The software described in this manual is furnished under a license

More information

Wireless Guest Server User Provisioning Instructions

Wireless Guest Server User Provisioning Instructions Introduction The wireless guest server solution provides a simple means of utilizing the University s network resources while securing access to critical network areas. Guests of the University who require

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

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

Setup Guide for PrestaShop and BlueSnap

Setup Guide for PrestaShop and BlueSnap Setup Guide for PrestaShop and BlueSnap This manual is meant to show you how to connect your PrestaShop store with your newly created BlueSnap account. It will show step-by-step instructions. For any further

More information

RDS Migration Tool Customer FAQ Updated 7/23/2015

RDS Migration Tool Customer FAQ Updated 7/23/2015 RDS Migration Tool Customer FAQ Updated 7/23/2015 Amazon Web Services is now offering the Amazon RDS Migration Tool a powerful utility for migrating data with minimal downtime from on-premise and EC2-based

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

Sage CRM 2014 R2 Welcome to your new Sage CRM experience

Sage CRM 2014 R2 Welcome to your new Sage CRM experience Welcome to your new experience Introducing a simpler and faster way to navigate and use your every day Contents 01 A fresh new look 02 Getting started 03 New Main menu 04 Quick Access toolbar 05 Finding

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

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

OPTAC Fleet Viewer. Instruction Manual

OPTAC Fleet Viewer. Instruction Manual OPTAC Fleet Viewer Instruction Manual Stoneridge Limited Claverhouse Industrial Park Dundee DD4 9UB Help-line Telephone Number: 0870 887 9256 E-Mail: optac@stoneridge.com Document version 4.0 Part Number:

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

SMS for Outlook. Installation, Configuration and Usage Guide

SMS for Outlook. Installation, Configuration and Usage Guide SMS for Outlook Installation, Configuration and Usage Guide INTRODUCTION Installing TxTStream s SMS for Outlook is easy and will only take a minute or two. We will be using screen shots from a Windows

More information

INTRODUCTION TO THE LS360 LMS

INTRODUCTION TO THE LS360 LMS INTRODUCTION TO THE LS360 LMS LEARNER MODE QUICKSTART GUIDE CONTENTS INTRODUCTION... 3 Overview... 3 YOUR FIRST LOGIN... 4 Username, Password, and Logging In... 4 Visual Guide... 4 A note about regulated

More information

Manual Wireless Extender Setup Instructions. Before you start, there are two things you will need. 1. Laptop computer 2. Router s security key

Manual Wireless Extender Setup Instructions. Before you start, there are two things you will need. 1. Laptop computer 2. Router s security key 1 Manual Wireless Extender Setup Instructions Before you start, there are two things you will need. 1. Laptop computer 2. Router s security key Setting up LAN Static IP on PC We need to set up a Static

More information

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved

Manual. Netumo NETUMO HELP MANUAL WWW.NETUMO.COM. Copyright Netumo 2014 All Rights Reserved Manual Netumo NETUMO HELP MANUAL WWW.NETUMO.COM Copyright Netumo 2014 All Rights Reserved Table of Contents 1 Introduction... 0 2 Creating an Account... 0 2.1 Additional services Login... 1 3 Adding a

More information

CloudCall for Salesforce- Quick Start Guide. CloudCall for Act! CRM Quick Start Guide

CloudCall for Salesforce- Quick Start Guide. CloudCall for Act! CRM Quick Start Guide CloudCall for Salesforce- Quick Start Guide CloudCall for Act! CRM Quick Start Guide 26/01/2015 Plugin Overview About SYNETY SYNETY is a leading cloud- based software and communications company that develops

More information

CFD-FX Trading platform Software User Guide. May 2006

CFD-FX Trading platform Software User Guide. May 2006 CFD-FX Trading platform Software User Guide May 2006 CONTENTS Introduction........................................................1 Installing the trading platform........................................1

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

Colligo Email Manager 6.0. Offline Mode - User Guide 6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint

More information

User Manual. Version 1.0.0.0. Yeastar Technology Co., Ltd.

User Manual. Version 1.0.0.0. Yeastar Technology Co., Ltd. User Manual Version 1.0.0.0 Yeastar Technology Co., Ltd. Table of Contents 1 Introduction 3 2 Installing MySMS Software 4 3 Managing MySMS 9 3.1 Accessing MySMS 9 3.2 Multi-User Accounts 10 3.3 Managing

More information

Portal Recipient Guide

Portal Recipient Guide Portal Recipient Guide Lindenhouse Software Limited 2015 Contents 1 Introduction... 4 2 Account Activation... 4 3 Forgotten Password... 9 4 Document signing... 12 5 Authenticating your Device & Browser...

More information

Guide to Managing Your Online Account

Guide to Managing Your Online Account Guide to Managing Your Online Account Contents 1 Introduction 3 1.1 Downloading your security certificate 3 1.2 Accessing your Online Account 3 1.3 What is a Security Certificate? 5 1.4 Saving your Security

More information

Xythos on Demand Quick Start Guide For Xythos Drive

Xythos on Demand Quick Start Guide For Xythos Drive Xythos on Demand Quick Start Guide For Xythos Drive What is Xythos on Demand? Xythos on Demand is not your ordinary online storage or file sharing web site. Instead, it is an enterprise-class document

More information

Comodo Endpoint Security Manager SME Software Version 2.1

Comodo Endpoint Security Manager SME Software Version 2.1 Comodo Endpoint Security Manager SME Software Version 2.1 Quick Start Guide Guide Version 2.1.111114 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Endpoint Security Manager - SME Quick

More information

Community Edition 3.3. Getting Started with Alfresco Explorer Document Management

Community Edition 3.3. Getting Started with Alfresco Explorer Document Management Community Edition 3.3 Getting Started with Alfresco Explorer Document Management Contents Copyright... 3 Introduction... 4 Important notes...4 Starting with Explorer... 5 Toolbar... 5 Sidebar...6 Working

More information

Software Licensing Management North Carolina State University software.ncsu.edu

Software Licensing Management North Carolina State University software.ncsu.edu When Installing Erdas Imagine: A.) Install the Intergraph License Administration Tool because this provides you with the license for the product so that it can actually run on your machine B.) Secondly,

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

Finance Reporting. Millennium FAST. User Guide Version 4.0. Memorial University of Newfoundland. September 2013

Finance Reporting. Millennium FAST. User Guide Version 4.0. Memorial University of Newfoundland. September 2013 Millennium FAST Finance Reporting Memorial University of Newfoundland September 2013 User Guide Version 4.0 FAST Finance User Guide Page i Contents Introducing FAST Finance Reporting 4.0... 2 What is FAST

More information

Strategic Asset Tracking System User Guide

Strategic Asset Tracking System User Guide Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data

More information

USING MS OUTLOOK. Microsoft Outlook

USING MS OUTLOOK. Microsoft Outlook USING MS OUTLOOK In this tutorial you will learn how to use Microsoft Outlook with your EmailHosting.com account. You will learn how to setup an IMAP account, and also how to move your emails and contacts

More information

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode.

The data between TC Monitor and remote devices is exchanged using HTTP protocol. Monitored devices operate either as server or client mode. 1. Introduction TC Monitor is easy to use Windows application for monitoring and control of some Teracom Ethernet (TCW) and GSM/GPRS (TCG) controllers. The supported devices are TCW122B-CM, TCW181B- CM,

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

USING MS OUTLOOK WITH FUSEMAIL

USING MS OUTLOOK WITH FUSEMAIL USING MS OUTLOOK WITH FUSEMAIL In this tutorial you will learn how to use Microsoft Outlook with your FuseMail account. You will learn how to setup an IMAP account, and also how to move your emails and

More information

InventoryControl for use with QuoteWerks Quick Start Guide

InventoryControl for use with QuoteWerks Quick Start Guide InventoryControl for use with QuoteWerks Quick Start Guide Copyright 2013 Wasp Barcode Technologies 1400 10 th St. Plano, TX 75074 All Rights Reserved STATEMENTS IN THIS DOCUMENT REGARDING THIRD PARTY

More information

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook

USING OUTLOOK WITH ENTERGROUP. Microsoft Outlook USING OUTLOOK WITH ENTERGROUP In this tutorial you will learn how to use Outlook with your EnterGroup account. You will learn how to setup an IMAP or POP account, and also how to move your emails and contacts

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Welcome to CINcompass

Welcome to CINcompass TABLE OF CONTENTS 14-Day Trial Overview...2 Getting Started...3 The Dashboard...4 The Main Menu Toolbar...5 Setup Wizard...6 Create a New Client...7 Navigate through a Matter...8 Help...9 FAQ...10 Welcome

More information

For further support information, refer to the Help Resources appendix. To comment on the documentation, send an email to support@tk20.com.

For further support information, refer to the Help Resources appendix. To comment on the documentation, send an email to support@tk20.com. Technical Support and Product Information tk20.com Tk20 Corporate Headquarters 10801 MoPac Expressway, Suite 740, Austin, Texas 78759 USA Tel: 512-401-2000 For further support information, refer to the

More information

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Sverview Trust between SharePoint 2010 and ADFS 2.0 Use article Federated Collaboration with Shibboleth 2.0 and SharePoint 2010 Technologies

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

GeneSys. Unit Six.Two: Administering a 360 Project. genesysonline.net. psytech.com

GeneSys. Unit Six.Two: Administering a 360 Project. genesysonline.net. psytech.com GeneSys Unit Six.Two: Administering a 360 Project genesysonline.net Unit Six.Two: Objectives Add & Administer Sessions in a 360 Project Adding Individual 360 Sessions Bulk Importing 360 Sessions SELF Specified

More information

COURSE NAVIGATOR DEMO QUICK GUIDE

COURSE NAVIGATOR DEMO QUICK GUIDE COURSE NAVIGATOR DEMO QUICK GUIDE INTRODUCTION The Course Navigator is a web-based learning management system that contains the EHR Navigator activities and assessments, as well as flash cards, quizzes,

More information

How To Load Data Into An Org Database Cloud Service - Multitenant Edition

How To Load Data Into An Org Database Cloud Service - Multitenant Edition An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...

More information

Intelligent Office: Web Optimisation Guide. Published Date: 06/11/2015. Version: 3.3

Intelligent Office: Web Optimisation Guide. Published Date: 06/11/2015. Version: 3.3 Intelligent Office: Web Optimisation Guide Published Date: 06/11/2015 Version: 3.3 Table of Contents System Requirements:... 3 Introduction... 3 Difficulties Logging on to Intelligent Office (io)... 3

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

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

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

MyMathLab/MyStatLab Student User Guide

MyMathLab/MyStatLab Student User Guide MyMathLab/MyStatLab Student User Guide Copyright Notice Copyright 2012 by Pearson Education. All rights reserved. No part of the contents of this book may be reproduced or transmitted in any form or by

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Open Internet Explorer (or other internet browser) and enter the following website into the Address Bar http://www.esit.com.

Open Internet Explorer (or other internet browser) and enter the following website into the Address Bar http://www.esit.com. Open Internet Explorer (or other internet browser) and enter the following website into the Address Bar http://www.esit.com.au/support 1. Once the site has loaded you should have something as follows 2.

More information

Web Dashboard User Guide

Web Dashboard User Guide Web Dashboard User Guide Version 10.2 The software supplied with this document is the property of RadView Software and is furnished under a licensing agreement. Neither the software nor this document may

More information

With a wide variety of drag and drop widgets, adding and updating information on your website will be a snap!

With a wide variety of drag and drop widgets, adding and updating information on your website will be a snap! The Website Builder Bonzi s Website Builder is an easy to use website management tool that allows anyone, from first time web users to advanced coding gurus, to quickly and efficiently manage the content

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

WebEx Meeting Center Tutorial

WebEx Meeting Center Tutorial VIRGINIA TECH WebEx Meeting Center Tutorial Getting Started Guide Instructional Technology Team, College of Engineering Last Updated: Fall 2014 Contents Introduction 2 Minimum System Requirements 2 How

More information

Pearson Onscreen Platform (POP) Using POP Offline testing system guide

Pearson Onscreen Platform (POP) Using POP Offline testing system guide Pearson Onscreen Platform (POP) Version 1.0 October 2014 02 What s in this guide? Contents 1 Before you start 2 Download a test 3 Play test 4 Upload response Read more Read more Read more Read more 03

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

Load Manager Administrator s Guide For other guides in this document set, go to the Document Center

Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager Administrator s Guide For other guides in this document set, go to the Document Center Load Manager for Citrix Presentation Server Citrix Presentation Server 4.5 for Windows Citrix Access

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

itunes Store Publisher User Guide Version 1.1

itunes Store Publisher User Guide Version 1.1 itunes Store Publisher User Guide Version 1.1 Version Date Author 1.1 10/09/13 William Goff Table of Contents Table of Contents... 2 Introduction... 3 itunes Console Advantages... 3 Getting Started...

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13

WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13 WEBSITE CONTENT MANAGEMENT SYSTEM USER MANUAL CMS Version 2.0 CMS Manual Version 1.0 2-25-13 CONTENTS Things to Remember... 2 Browser Requirements... 2 Why Some Areas of Your Website May Not Be CMS Enabled...

More information

QualysGuard WAS. Getting Started Guide Version 3.3. March 21, 2014

QualysGuard WAS. Getting Started Guide Version 3.3. March 21, 2014 QualysGuard WAS Getting Started Guide Version 3.3 March 21, 2014 Copyright 2011-2014 by Qualys, Inc. All Rights Reserved. Qualys, the Qualys logo and QualysGuard are registered trademarks of Qualys, Inc.

More information

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë

14.1. bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë 14.1 bs^ir^qfkd=obcib`qflk= Ñçê=emI=rkfuI=~åÇ=léÉåsjp=eçëíë bî~äì~íáåö=oéñäéåíáçå=ñçê=emi=rkfui=~åç=lééåsjp=eçëíë This guide walks you quickly through key Reflection features. It covers: Getting Connected

More information

Using ELMS with TurningPoint Cloud

Using ELMS with TurningPoint Cloud Using ELMS with TurningPoint Cloud The ELMS (Canvas) integration enables TurningPoint Cloud users to leverage response devices in class to easily collect student achievement data. Very simply one can load

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

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

Web based training for field technicians can be arranged by calling 888-577-4919 These Documents are required for a successful install:

Web based training for field technicians can be arranged by calling 888-577-4919 These Documents are required for a successful install: Software V NO. 1.7 Date 9/06 ROI Configuration Guide Before you begin: Note: It is important before beginning to review all installation documentation and to complete the ROI Network checklist for the

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

SECTION 1 STAFF LOGIN...

SECTION 1 STAFF LOGIN... ONLINE DIARY USER GUIDE Preparing to use the Online Diary...3 SECTION 1 STAFF LOGIN... Logging On to the Online Diary...4 Staff Diary...5 Creating, Moving and Opening Appointments...6 Other Features and

More information

Magaya Software Installation Guide

Magaya Software Installation Guide Magaya Software Installation Guide MAGAYA SOFTWARE INSTALLATION GUIDE INTRODUCTION Introduction This installation guide explains the system requirements for installing any Magaya software, the steps to

More information

System requirements 2. Overview 3. My profile 5. System settings 6. Student access 10. Setting up 11. Creating classes 11

System requirements 2. Overview 3. My profile 5. System settings 6. Student access 10. Setting up 11. Creating classes 11 Table of contents Login page System requirements 2 Landing page Overview 3 Adjusting My profile and System settings My profile 5 System settings 6 Student access 10 Management Setting up 11 Creating classes

More information

Oracle BI Extended Edition (OBIEE) Tips and Techniques: Part 1

Oracle BI Extended Edition (OBIEE) Tips and Techniques: Part 1 Oracle BI Extended Edition (OBIEE) Tips and Techniques: Part 1 From Dan: I have been working with Oracle s BI tools for years. I am quite the Discoverer expert (a free tool now from Oracle Corp OBISE standard

More information

Before You Begin Your Computer Must Meet the System Requirements to Access Cloud9

Before You Begin Your Computer Must Meet the System Requirements to Access Cloud9 Before You Begin Your Computer Must Meet the System Requirements to Access Cloud9 If you are not working from a Windows 7 or 8 computer, you will need to update: Windows XP to Service Pack 3 Windows Vista

More information

Revu Tutorial: Studio Projects

Revu Tutorial: Studio Projects Revu Tutorial: Studio Projects Built into Bluebeam Revu, Studio Projects provides a simple Document Management System in the cloud. With Projects you can upload an unlimited number of PDFs and any other

More information

CISCO WebEx Guide for Host/Meeting Organiser. Unified Communications

CISCO WebEx Guide for Host/Meeting Organiser. Unified Communications Unified Communications CISCO WebEx Guide for Host/Meeting Organiser Version: November 2014 TABLE OF CONTENTS Introducing WebEx... 2 How to create a WebEx account... 3 The first time you log into WebEx...

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

Installing OGDI DataLab version 5 on Azure

Installing OGDI DataLab version 5 on Azure Installing OGDI DataLab version 5 on Azure Using Azure Portal ver.2 August 2012 (updated February 2012) Configuring a Windows Azure Account This set of articles will walk you through the setup of the Windows

More information

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval

Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval Copyright Texthelp Limited All rights reserved. No part of this publication may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language, in any form, by any

More information

Cloud Services. Lync. IM/ Web Conferencing Admin Quick Start Guide

Cloud Services. Lync. IM/ Web Conferencing Admin Quick Start Guide Cloud Services Lync IM/ Web Conferencing Admin Quick Start Guide 10/14/2014 ACTIVATION LETTER An activation letter will be sent to the email account of your administrator contact. Please look for the following

More information

User Guide. Version R91. English

User Guide. Version R91. English AuthAnvil User Guide Version R91 English August 25, 2015 Agreement The purchase and use of all Software and Services is subject to the Agreement as defined in Kaseya s Click-Accept EULATOS as updated from

More information

System Administration Training Guide. S100 Installation and Site Management

System Administration Training Guide. S100 Installation and Site Management System Administration Training Guide S100 Installation and Site Management Table of contents System Requirements for Acumatica ERP 4.2... 5 Learning Objects:... 5 Web Browser... 5 Server Software... 5

More information

User Guide for Archie and Review Manager 5. The Cochrane Airways Group

User Guide for Archie and Review Manager 5. The Cochrane Airways Group User Guide for Archie and Review Manager 5 The Cochrane Airways Group 1 Contents Introduction to User Guide... 3 Preliminary details... 4 Managing your contact details... 5 Principles of Review Manager

More information

Fax User Guide 07/31/2014 USER GUIDE

Fax User Guide 07/31/2014 USER GUIDE Fax User Guide 07/31/2014 USER GUIDE Contents: Access Fusion Fax Service 3 Search Tab 3 View Tab 5 To E-mail From View Page 5 Send Tab 7 Recipient Info Section 7 Attachments Section 7 Preview Fax Section

More information

Personal Portfolios on Blackboard

Personal Portfolios on Blackboard Personal Portfolios on Blackboard This handout has four parts: 1. Creating Personal Portfolios p. 2-11 2. Creating Personal Artifacts p. 12-17 3. Sharing Personal Portfolios p. 18-22 4. Downloading Personal

More information

My Store. Quick Startup Guide. DIY online store builder

My Store. Quick Startup Guide. DIY online store builder Quick Startup Guide My Store DIY online store builder Thank you for selecting Netregistry to create your online presence. In this guide we will run you through the basic steps to get online. Call 1300

More information