JAR:Load Quick Start Guide

Size: px
Start display at page:

Download "JAR:Load Quick Start Guide"

Transcription

1 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

2 QUICK START GUIDE Performance testing for the Web is crucial 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 required. 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.

3 DASHBOARD Figure 1: VU Dashboards Page The Dashboard area is the starting point for load generation. It provides an overview of JAR:Load and is divided into 2 main categories: 1. JAR:Load Status JAR:Load Service Status This displays the current status of the servers and virtual machines within JAR:Load. It will also display the latest information, for example if there is any planned downtime or network outages. JAR:Load Information This area displays the latest blog entries from blog.jartechnologies.com 2. My JAR:Load Resources Summary This area displays the current resources in use, if there are any test plans running, the resources that are currently not in use, if there are any scheduled test plans or if any currently executing. User Summary This area displays the last time a user logged in, the duration of the session before it will time-out and ask the user to log in to continue and the number of projects a user is linked to. Related Links Access to links to different areas of help.

4 BUILD VU SCENARIOS 1 To start you will build a Virtual User Scenario A Virtual User (VU) Scenario is where you can create highly customisable scenarios to test how your target system will function under different stress conditions. To do this please go to the Build VU Scenarios tab and you will be presented with the page below (Figure 2). 2 Add Virtual User Scenario Figure 2: Build VU Scenarios page Click on the plus icon to add a new script. The Add VU Scenario (Figure 3) appears allowing you to customise your VU Scenario. First give the VU Scenario; A scenario name A description Click Add VU Scenario to proceed. Figure 3: Add New VU Scenario

5 Introduction to Scripting The scripting language used in JAR:Load is LUA. It is a lightweight scripting language useful for providing users with an easy way to program the behaviour of virtual users. The advantages to using this type of scripting are: Easy to use Flexible Comprehensive Casestudy - Scenario (Correct as of July 2014) This script goes to YouTube, searches for a video and displays the description of the video to the logs. Below shows the breakdown of the code for the YouTube script. 1. First as the script uses datasets, we must check to make sure the dataset has the values you need in it. The code below first searches the dataset for its length and returns the value to DataSetLength, it then checks to see if it is equal to zero. If it is equal to zero it will give an error message and end the script. -- Get data set size. DataSetLength = Dataset:Get_length( YouTubeSearch ); -- Check to see if there is any values if DataSetLength == 0 then --Found no values so print error message and stop the script. Log:Error( Dataset is empty ); end 2. After the script has made sure there are values in the dataset we must select a row. The row is then saved into the variable DataRow where it will be checked to see if there are any values. If there are no values then the script will give an error message and stop. -- Get a data row from the dataset. DataRow, DataRowErrorCode, DataRowErrorMsg = Dataset:Get ( YouTubeSearch ); -- Check that we got a datarow if DataRowErrorCode ~= 0 then -- Datarow get failed. -- Print error message and stop the script. Log:Error( DataRowErrorMsg ); end-

6 3. Next we must get a search term from the dataset. The search term is the first column in the dataset and we save this to a variable labelled SearchTerm. We must check to see if the script was able to get the SearchTerm if not the script will display an error message and stop. -- Get a search term. SearchTerm, SearchTermErrorCode, SearchTermErrorMsg = DataRow:Get_col(0); -- Check that we got a search term. if SearchTermErrorCode ~= 0 then -- Search term get failed. -- Print error message and stop the script. Log:Error( SearchTermErrorMsg ); end 4. Once the script has a search term from the dataset it will create a NewWebPage() and load it with the YouTube website. Page = Page:LoadWebPage( ); Page:WaitForPageLoad(); 5. When the page has loaded, the script will now find the search box and insert thesearch term into the search box: 1. Find the search box by searching for its css element #masthead-search-term and save it as a variable called Searchbox. -- Find the search box Searchbox = Page:FindFirstElement( #masthead-search-term ); 2. Insert the obtained value into Searchbox -- Insert search terms into the search box. Key:TypeInto(Searchbox, SearchTerm);

7 6. Once the script has inserted the value, it will find the search button, click search and wait until the page has loaded: 1. Find the search button by searching for its css element #search-btn. -- Find searchform. Searchform = Page:FindFirstElement( #search-btn ); 2. Clicking on search -- Submit searchvalue. Mouse:LeftClick(Searchform); 3. Waiting for page to load -- Wait for page to load Page:WaitForPageLoad(); 7. Once the page has fully loaded the script will look at the results of the search and pick out the first video. The script will then click on the first video in the results list and wait for the page to load: 1. The script will first find the #search-results and save it to a variable called SearchResult. SearchResult = Page:FindFirstElement(.item-section ); 2. Looking at the variable SearchResults the script will find the list of results ( li ) and save it as ResultList. ResultList = SearchResult:FindFirstElement( li ); 3. From the ResultList it will next look for the first video (.yt-lockup-content ) and save it as a variable called FindFirstVideo. FindFirstVideo = ResultList:FindFirstElement(.yt-lockup-content );

8 4. Once the script has found the first video it will look for the heading of the video ( h3 ) and save it as a variable called VideoHeading. VideoHeading = FindFirstVideo:FindFirstElement( h3 ); 5. Now the script has found the VideoHeading it will look for the hyperlink ( a ) within the VideoHeading and save it to a variable called LinkToVideo. LinkToVideo = VideoHeading:FindFirstElement( a ); 6. Click on the hyperlink contained within the LinkToVideo. -- Click the first result. Mouse:LeftClick(LinkToVideo); 7. Wait for the page to load. -- Wait for page to load. Page:WaitForPageLoad(); 8. Once the video has loaded the script will find the description, save it to an XML string and then print the string out to the logs found on the Run Monitoring and Results page: 1. Find the description of the video using it s css element ( #eow-description ); and save it as a variable called Information. -- Find information element. Information = Page:FindFirstElement( #eow-description ); 2. Save the description to a XML string called VideoDescription. -- Get the information content. VideoDescription = Information:ToInnerXml(); 3. Print out the XML String called VideoDescription. -- Print it. Log:Print( VideoDescription );

9 Figure 4 below shows what you should have typed into the script area. Figure 4: Example of written script Once you have done this click on the Save Changes button to save the script. Alternatively if you have made changes or errors to the script you can use the Restore Last Saved Values to revert to the last saved point. Before you move away from the Build VU scenarios page 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 5. Script Tool bar Feature The Script Toolbar allows you to: Figure 5: Script Toolbar 1. Play and test the script. 2. Create 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 changes since the last save. 5. Undo the previous action. 6. Redo the previous action. 7. Go to a specific line. 8. Reindent 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.

10 BUILD DATA SETS Figure 6: Example of a Data Set Values You are able to create Data Sets in JAR:Load through which your virtual users are able to access. For example you may require a Virtual User to have a username and password to access a website or you may require them to perform an 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 method means each virtual user will be allocated a unique row. Random This access method means the virtual user will randomly pick a row. If you go to the Build Data Sets table you will see a default CSV already uploaded to JAR:Load. Figure 6 above shows the default values you will use for the YouTube script.

11 BUILD TEST PLANS After creating a VU Scenario you can now build up your load plan 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 Test plan: First click on the Build Test Plan tab at the top of the page. Once loaded go to the left side of the page to the Test Plans panel. This will create a test plan for you to customise: -Enter in the name of the plan -Give it a description and click Add Test Plan. Figure 7: Build Test Plan page

12 Assigning Virtual Users The next step is to assign the Virtual User Script that you generated on the Build VU Scenario page to this test plan. To do this, click the button on the right side of the page, under the heading Assigned VU s. Select the script that you have created and click Select VU Scenario (Figure 8). Figure 8: Add VU Scenario to a test plan. You will see a blank graph, this is where we will supply the load pattern by adding in the amount of 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 number of VU s at that point. Set up your graph by doing the following: 1. Set the duration to 0 hours 10 minutes. 2. Set the Max Users to Set your graph up as displayed below (Figure 9). 4. Save your changes. Figure 9: Example of a Load Pattern Graph

13 SCHEDULE TEST PLANS 1 Now that you have your Test Plan created you are able to run the load generation immediately or schedule it for a future time and date. To start scheduling a test, click on the Schedule Test Plan tab at the top of the page. You will be presented with a calender, from this you will be able to see if there are any scheduled or executing tests within the project (Figure 10). Figure 10: Test Plans Calender 2 You are able to Launch a test now or Schedule on for a later date and time. Each new row in the calender represents 5 minutes, therefore select the time you would like to schedule a test by clicking that position on the calender. Figure 11: Schedule a test plan 3 As you can see the information is taken from what you created in your Test Plan. If you want the test to run for longer than 10 minutes, you can change the duration. However for now leave it at 10 minutes and click Add Schedule. Alternatively you are able to select Launch Now which will present you with the dialogue box as shown in Figure 12. The Schedule a test plan and Launch a test plan boxes appear similar. However when you select the time you would like the test to run and click Launch test now, the test will be launched and you will immediately be moved to the Run Monitoring and Results page. Figure 12: Launch a test plan now

14 RUN MONITORING AND RESULTS This area allows you to analyse, compare and evaluate the results of the load test. This includes viewing graphs and reports to exporting data for your own use. To view your current or previous results from your test plans, click the Run Monitoring and Results tab. Test Plan Monitoring Figure 13 shows the Monitoring area. Here you are able to view the current test plan. You will be able to see when it started, how long it has ran for, the percentage of the test that is completed and if you want, you can abort the test. As well as this you are able to select the drop down box and choose from the previous tests that have been executed. Figure 13: Test Plan Monitoring Total Metrics Here you can view metrics based on virtual users and their requests. Virtual user metrics include the amount that are currently running and the throughput they are generating. The requests metrics include the total requests, the amount the system is handling per second, the average response time and if there are any failed requests. Figure 14: Total Metrics Results and Comparison graph Regardless of whether a test has been completed or is still running, you are able to view the results on the graphs as shown in Figure 15. We have three metrics displayed on the graph. 1. Active Virtual Users 2. Average response Time (ms) 3. Script lines executed 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 16. Figure 15: Results Graph

15 Metrics Available 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 16: Metrics Available JAR:Load stores the results for all tests executed so you are able to compare results on one or more graphs. Figure 17 shows the script that was created above ran 2 separate times, one in the afternoon and the other test in the morning. As well as comparing tests on separate graphs, you are able to compare them on a single graph by clicking on the Executed Test Plan drop down box. Figure 17: Comparing 2 test plans

16 Logs messages Figure 18 shows the Log Messages output. Here you are able to view all log messages from all log functions Log:Print();. You are able to view logs per virtual user by selecting the virtual user from the drop down box, as shown in Figure 18: Figure 18: Example of Log output ABOUT JAR JAR is a leading provider of Web and Application Testing Tools for the Application Performance and Quality Assurance market. With a wide spectrum of experience and expertise from developing the World s first hybrid WAN Emulator to offering cloud based web load testing tools, JAR are committed to providing revolutionary and flexible bespoke solutions for our partners and their customers. JAR Technologies, BT3 Business Centre, 10 Dargan Cresent, Duncrue Road, Belfast, Co Antrim, BT3 9JP T: +44 (0) W: E: general.enquiries@jartechnologies.com

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

QUICK START GUIDE. Cloud based Web Load, Stress and Functional Testing QUICK START GUIDE Cloud based Web Load, Stress and Functional Testing Performance testing for the Web is vital for ensuring commercial success. JAR:Load is a Web Load Testing Solution delivered from the

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

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

Application Performance Testing for Data Centre Relocation

Application Performance Testing for Data Centre Relocation Application Performance Testing for Data Centre Relocation high precision network emulators Background Companies across the world are moving their applications and data servers from centralised servers

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

Mesa DMS. Once you access the Mesa Document Management link, you will see the following Mesa DMS - Microsoft Internet Explorer" window:

Mesa DMS. Once you access the Mesa Document Management link, you will see the following Mesa DMS - Microsoft Internet Explorer window: Mesa DMS Installing MesaDMS Once you access the Mesa Document Management link, you will see the following Mesa DMS - Microsoft Internet Explorer" window: IF you don't have the JAVA JRE installed, please

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

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

Creating and Managing Online Surveys LEVEL 2

Creating and Managing Online Surveys LEVEL 2 Creating and Managing Online Surveys LEVEL 2 Accessing your online survey account 1. If you are logged into UNF s network, go to https://survey. You will automatically be logged in. 2. If you are not logged

More information

mylittleadmin for MS SQL Server Quick Start Guide

mylittleadmin for MS SQL Server Quick Start Guide mylittleadmin for MS SQL Server Quick Start Guide version 3.5 1/25 CONTENT 1 OVERVIEW... 3 2 WHAT YOU WILL LEARN... 3 3 INSTALLATION AND CONFIGURATION... 3 4 BASIC NAVIGATION... 4 4.1. Connection 4 4.2.

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

Utilities. 2003... ComCash

Utilities. 2003... ComCash Utilities ComCash Utilities All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or

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

Decision Support AITS University Administration. EDDIE 4.1 User Guide

Decision Support AITS University Administration. EDDIE 4.1 User Guide Decision Support AITS University Administration EDDIE 4.1 User Guide 2 P a g e EDDIE (BI Launch Pad) 4.1 User Guide Contents Introduction to EDDIE... 4 Log into EDDIE... 4 Overview of EDDIE Homepage...

More information

USER GUIDE for Salesforce

USER GUIDE for Salesforce for Salesforce USER GUIDE Contents 3 Introduction to Backupify 5 Quick-start guide 6 Administration 6 Logging in 6 Administrative dashboard 7 General settings 8 Account settings 9 Add services 9 Contact

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

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

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

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

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA

JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA All information presented in the document has been acquired from http://docs.joomla.org to assist you with your website 1 JOOMLA 2.5 MANUAL WEBSITEDESIGN.CO.ZA BACK

More information

MicroStrategy Desktop

MicroStrategy Desktop MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop is designed to enable business professionals like you to explore data, simply and without needing direct support from IT. 1 Import data from

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

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

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

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

USER GUIDE MANTRA WEB EXTRACTOR. www.altiliagroup.com

USER GUIDE MANTRA WEB EXTRACTOR. www.altiliagroup.com USER GUIDE MANTRA WEB EXTRACTOR www.altiliagroup.com Page 1 of 57 MANTRA WEB EXTRACTOR USER GUIDE TABLE OF CONTENTS CONVENTIONS... 2 CHAPTER 2 BASICS... 6 CHAPTER 3 - WORKSPACE... 7 Menu bar 7 Toolbar

More information

How to Build a SharePoint Website

How to Build a SharePoint Website How to Build a SharePoint Website Beginners Guide to SharePoint Overview: 1. Introduction 2. Access your SharePoint Site 3. Edit Your Home Page 4. Working With Text 5. Inserting Pictures 6. Making Tables

More information

Creating a Website with Google Sites

Creating a Website with Google Sites Creating a Website with Google Sites This document provides instructions for creating and publishing a website with Google Sites. At no charge, Google Sites allows you to create a website for various uses,

More information

Technical Support Set-up Procedure

Technical Support Set-up Procedure Technical Support Set-up Procedure How to Setup the Amazon S3 Application on the DSN-320 Amazon S3 (Simple Storage Service) is an online storage web service offered by AWS (Amazon Web Services), and 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

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc. STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter

More information

Hamline University Administrative Computing Page 1

Hamline University Administrative Computing Page 1 User Guide Banner Handout: BUSINESS OBJECTS ENTERPRISE (InfoView) Document: boxi31sp3-infoview.docx Created: 5/11/2011 1:24 PM by Chris Berry; Last Modified: 8/31/2011 1:53 PM Purpose:... 2 Introduction:...

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

StresStimulus v4.2 Getting Started

StresStimulus v4.2 Getting Started 0 StresStimulus v4.2 Getting Started TABLE OF CONTENTS Getting Started 1 Getting Help... 3 2 Your First Test... 7 2.1 Recording Test Case... 7 2.2 Configuring Test Case... 11 2.3 Configuring Test... 13

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

Anchor End-User Guide

Anchor End-User Guide Table of Contents How to Access Your Account How to Upload Files How to Download the Desktop Sync Folder Sync Folder How to Share a File 3 rd Party Share from Web UI 3 rd Party Share from Sync Folder Team-Share

More information

Salesforce Integration

Salesforce Integration Salesforce Integration 2015 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

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

Creating a Participants Mailing and/or Contact List:

Creating a Participants Mailing and/or Contact List: Creating a Participants Mailing and/or Contact List: The Limited Query function allows a staff member to retrieve (query) certain information from the Mediated Services system. This information is from

More information

Executive Dashboard. User Guide

Executive Dashboard. User Guide Executive Dashboard User Guide 2 Contents Executive Dashboard Overview 3 Naming conventions 3 Getting started 4 Welcome to Socialbakers Executive Dashboard! 4 Comparison View 5 Setting up a comparison

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

Creating Online Surveys with Qualtrics Survey Tool

Creating Online Surveys with Qualtrics Survey Tool Creating Online Surveys with Qualtrics Survey Tool Copyright 2015, Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this

More information

Session Administration System (SAS) Manager s Guide

Session Administration System (SAS) Manager s Guide Session Administration System (SAS) Manager s Guide Blackboard Collaborate 1 Contents SAS Overview... 4 Getting Started... 4 Creating Sessions Using the SAS... 5 Sample Manager Utilities Page... 5 Creating

More information

Site Maintenance. Table of Contents

Site Maintenance. Table of Contents Site Maintenance Table of Contents Adobe Contribute How to Install... 1 Publisher and Editor Roles... 1 Editing a Page in Contribute... 2 Designing a Page... 4 Publishing a Draft... 7 Common Problems...

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

Rapid Assessment Key User Manual

Rapid Assessment Key User Manual Rapid Assessment Key User Manual Table of Contents Getting Started with the Rapid Assessment Key... 1 Welcome to the Print Audit Rapid Assessment Key...1 System Requirements...1 Network Requirements...1

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

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

GETTING STARTED WITH QUICKEN 2010, 2009, and 2008-2007 for Windows. This Getting Started Guide contains the following information:

GETTING STARTED WITH QUICKEN 2010, 2009, and 2008-2007 for Windows. This Getting Started Guide contains the following information: GETTING STARTED WITH QUICKEN 2010, 2009, and 2008-2007 for Windows Refer to this guide for instructions on how to use Quicken s online account services to save time and automatically keep your records

More information

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how:

The Smart Forms Web Part allows you to quickly add new forms to SharePoint pages, here s how: User Manual First of all, congratulations on being a person of high standards and fine tastes! The Kintivo Forms web part is loaded with features which provide you with a super easy to use, yet very powerful

More information

Content Management System

Content Management System OIT Training and Documentation Services Content Management System End User Training Guide OIT TRAINING AND DOCUMENTATION oittraining@uta.edu http://www.uta.edu/oit/cs/training/index.php 2009 CONTENTS 1.

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

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

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 3.0 Part Number:

More information

Introduction to RefWorks

Introduction to RefWorks University of Malta Library Introduction to RefWorks A Guide to Prepare & Submit your Personal Academic Publication List Stefania Cassar Outreach Librarian Email: refworks.lib@um.edu.mt Last updated: 3

More information

Montefiore Portal Quick Reference Guide

Montefiore Portal Quick Reference Guide Montefiore Portal Quick Reference Guide Montefiore s remote portal allows users to securely access Windows applications, file shares, internal web applications, and more. To use the Portal, you must already

More information

My ø Business User guide

My ø Business User guide My ø Business User guide Contents Page 1 Contents Welcome to your My ø Business user guide. It s easy to use. Move your mouse over the page to get to the section you want. Click on the links at the top

More information

Com.X. Call Center Analyser. User Guide

Com.X. Call Center Analyser. User Guide Com.X Call Center Analyser User Guide Version 1.0.1, 21 July 2014 2010 2014 Far South Networks Document History Version Date Description of Changes 1.0.0 21/07/2014 Initial draft M. Knight 1.0.1 29/07/2014

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information

AWEBDESK LIVE CHAT SOFTWARE

AWEBDESK LIVE CHAT SOFTWARE AWEBDESK LIVE CHAT SOFTWARE Version 5.1.0 AwebDesk Softwares Operator s Guide Edition 1.0 April 2012 1 P a g e TABLE OF CONTENTS LOGIN TO OPERATOR AREA..... 3 CHATTING TO SITE VISITORS.. 4 TRANSFERRING

More information

Table of Contents 1. Contents...1

Table of Contents 1. Contents...1 Table of Contents 1. Contents...1 1.1 Introduction/Getting Started...1 1.1.1 Creating an Account...1 1.1.2 Logging In...2 1.1.3 Forgotten Password...2 1.1.4 Creating a New Project...3 1.2 My Projects...3

More information

ClickView Digital Signage User Manual

ClickView Digital Signage User Manual ClickView Digital Signage User Manual Table of Contents 1. What is ClickView Digital Signage?... 3 2. Where do I find ClickView Digital Signage?... 3 2.1. To find ClickView Digital Signage... 3 3. 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

Blackboard 9.1 Basic Instructor Manual

Blackboard 9.1 Basic Instructor Manual Blackboard 9.1 Basic Instructor Manual 1. Introduction to Blackboard 9.1... 2 1.1 Logging in to Blackboard... 3 2. The Edit Mode on... 3 3. Editing the course menu... 4 3.1 The course menu explained...

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

DarwiNet Client Level

DarwiNet Client Level DarwiNet Client Level Table Of Contents Welcome to the Help area for your online payroll system.... 1 Getting Started... 3 Welcome to the Help area for your online payroll system.... 3 Logging In... 4

More information

BackupAgent Management Console 4.0.1 User Manual

BackupAgent Management Console 4.0.1 User Manual BackupAgent Management Console 4.0.1 User Manual May 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes

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

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

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

1. Welcome to QEngine... 3. About This Guide... 3. About QEngine... 3. Online Resources... 4. 2. Installing/Starting QEngine... 5

1. Welcome to QEngine... 3. About This Guide... 3. About QEngine... 3. Online Resources... 4. 2. Installing/Starting QEngine... 5 1. Welcome to QEngine... 3 About This Guide... 3 About QEngine... 3 Online Resources... 4 2. Installing/Starting QEngine... 5 Installing QEngine... 5 Installation in Windows... 5 Installation in Linux...

More information

MXview ToGo Quick Installation Guide

MXview ToGo Quick Installation Guide MXview ToGo Quick Installation Guide First Edition, July 2015 2015 Moxa Inc. All rights reserved. P/N: 18020000000C0 Overview MXview ToGo allows you to use your mobile devices to monitor network devices

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

Xopero Backup Build your private cloud backup environment. Getting started

Xopero Backup Build your private cloud backup environment. Getting started Xopero Backup Build your private cloud backup environment Getting started 07.05.2015 List of contents Introduction... 2 Get Management Center... 2 Setup Xopero to work... 3 Change the admin password...

More information

imanage V2.0 Overview

imanage V2.0 Overview imanage V2.0 Overview What is imanage? 4 Signing up for your free 30 day trial 4 What to do after signing up 4 The Dashboard 5 Customers 6 Customer Profiles 6 Profile Tab 7 Addresses Tab 7 Job Sheets Tab

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

Schools Remote Access Server

Schools Remote Access Server Schools Remote Access Server This system is for school use only. Not for personal or private file use. Please observe all of the school district IT rules. 6076 State Farm Rd., Guilderland, NY 12084 Phone:

More information

Welcome to EMP Monitor (Employee monitoring system):

Welcome to EMP Monitor (Employee monitoring system): Welcome to EMP Monitor (Employee monitoring system): Overview: Admin End. User End. 1.0 Admin End: Introduction to Admin panel. Admin panel log in. Introduction to UI. Adding an Employee. Getting and editing

More information

Student User Guide. Introduction to the Module Management System (MMS) in Philosophy. Logging in; Submitting work; Logging out

Student User Guide. Introduction to the Module Management System (MMS) in Philosophy. Logging in; Submitting work; Logging out Student User Guide Introduction to the Module Management System (MMS) in Philosophy Logging in; Submitting work; Logging out Revised Oct 2008 (version 3.1P) University of St Andrews MMS Student Guide MMS

More information

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.

System Administrator Training Guide. Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger. System Administrator Training Guide Reliance Communications, Inc. 603 Mission Street Santa Cruz, CA 95060 888-527-5225 www.schoolmessenger.com Contents Contents... 2 Before You Begin... 4 Overview... 4

More information

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.

Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices. MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing

More information

Panopto Recording. Click the Panopto Recorder icon found on the Desktop. Click the Log in with Blackboard button. Page 1

Panopto Recording. Click the Panopto Recorder icon found on the Desktop. Click the Log in with Blackboard button. Page 1 Panopto Recording The Panopto Recorder allows for a great deal of flexibility in how and what can be recorded. This guide will cover all aspects of recording with one computer (meaning all presentation

More information

NDSU Technology Learning & Media Center. Introduction to Google Sites

NDSU Technology Learning & Media Center. Introduction to Google Sites NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Introduction to Google Sites Get Help at the TLMC 1. Get help with class projects on a walk-in basis; student learning assistants

More information

Gravity Forms: Creating a Form

Gravity Forms: Creating a Form Gravity Forms: Creating a Form 1. To create a Gravity Form, you must be logged in as an Administrator. This is accomplished by going to http://your_url/wp- login.php. 2. On the login screen, enter your

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

To change title of module, click on settings

To change title of module, click on settings HTML Module: The most widely used module on the websites. This module is very flexible and is used for inserting text, images, tables, hyperlinks, document downloads, and HTML code. Hover the cursor over

More information

How to manage the Adaptive Call Recorder (v.9-50)

How to manage the Adaptive Call Recorder (v.9-50) How to manage the Adaptive Call Recorder (v.9-50) The Adaptive Hybrid Call Recorder records all telephone calls that are made and received. Recording calls provides an audit of what was said in every conversation.

More information

Microsoft OneDrive. How to login to OneDrive:

Microsoft OneDrive. How to login to OneDrive: Microsoft OneDrive The beauty of OneDrive is that it is accessible from anywhere you have an Internet connection. You can access it from a Mac or Windows computer. You can even access it on your Smartphone

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

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux)

Introduction. Installation of SE S AM E BARCODE virtual machine distribution. (Windows / Mac / Linux) Installation of SE S AM E BARCODE virtual machine distribution (Windows / Mac / Linux) Introduction A "virtual machine" is a fake computer within a true one. An underlying software (here VirtualBox) is

More information

Click-n-Print User Guide

Click-n-Print User Guide Click-n-Print User Guide Selecting PDF print module Page 2 Selecting an Email Campaign Page 4 Viewing Campaign Reports and Analysis Page 7 Creating Mailing Lists Page 8 Adding HTML variables Page 9 Searching/Adding

More information

Dashboard Designer. Introduction Guide. Basic step by step guide to creating a Dashboard. June 2012 V1.2

Dashboard Designer. Introduction Guide. Basic step by step guide to creating a Dashboard. June 2012 V1.2 webkpi Dashboard Designer Introduction Guide Basic step by step guide to creating a Dashboard June 2012 V1.2 webkpi Dashboard Designer Introduction Guide Page 1 Table of Contents Introduction... 3 webkpi

More information

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009

State of Michigan Data Exchange Gateway. Web-Interface Users Guide 12-07-2009 State of Michigan Data Exchange Gateway Web-Interface Users Guide 12-07-2009 Page 1 of 21 Revision History: Revision # Date Author Change: 1 8-14-2009 Mattingly Original Release 1.1 8-31-2009 MM Pgs 4,

More information

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS

GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS GOOGLE DOCS APPLICATION WORK WITH GOOGLE DOCUMENTS Last Edited: 2012-07-09 1 Navigate the document interface... 4 Create and Name a new document... 5 Create a new Google document... 5 Name Google documents...

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

Blackboard 1: Course Sites

Blackboard 1: Course Sites Blackboard 1: Course Sites This handout outlines the material covered in the first of four workshops on teaching with Blackboard. It will help you begin building your Blackboard course site. You will learn

More information

System Overview and Terms

System Overview and Terms GETTING STARTED NI Condition Monitoring Systems and NI InsightCM Server Version 2.0 This document contains step-by-step instructions for the setup tasks you must complete to connect an NI Condition Monitoring

More information

Last Revised: 2/16/2010. Microsoft Office SharePoint 2007 User Guide

Last Revised: 2/16/2010. Microsoft Office SharePoint 2007 User Guide Last Revised: 2/16/2010 Microsoft Office SharePoint 2007 User Guide Table of Contents OVERVIEW...3 Accessing SharePoint Site...4 Document Library...5 Viewing a File...5 Uploading File(s)...8 Check Document

More information

SCDOT FTP Server User Guide

SCDOT FTP Server User Guide The new SCDOT File Transfer () solution allows SCDOT employees or customers to upload/download data using either a desktop installed software or a web browser interface. The desktop client can be easily

More information