Generating Automated Test Scripts for AltioLive using QF Test

Size: px
Start display at page:

Download "Generating Automated Test Scripts for AltioLive using QF Test"

Transcription

1 Generating Automated Test Scripts for AltioLive using QF Test Author: Maryam Umar

2 Contents 1. Introduction 2 2. Setting up QF Test 2 3. Starting an Altio application 3 4. Recording components 5 5. Performing checks 6 6. Testing Altio components 7 7. Testing business logic in QF Test script 8 8. Jython scripting 9 9. Use of procedures and structuring the Test Script Testing various areas of AltioLive Studio Enterprise 12 Introduction This document describes how to use QF Test for generating test scripts for AltioLive Client. QF Test can be used in multiple ways for this purpose: o Record and playback o Using Jython scripts Both these methodologies will be discussed here. Further detail can be found in the QFtest user manual and reference guides ( Setting up QF Test QF Test is a testing tool which enables testing of Java applications. It can be used to create automated regression and load tests for Swing based applications, Eclipse plug ins and Java applets. Page 2 of 15

3 Browser QF-Test Launch app SUT (1) SUT (2) Connect using RMI Uses custom eventqueue Figure 1 Connection of applications in QF Test When the System Under Test (SUT) is started by QF Test, Java applications are run in separate Java Virtual Machines (JVM). An extra layer of code is executed to set up an RMI connection to QF Test and to install a custom EventQueue before control is handed to the SUT itself. The EventQueue is needed to keep track of all the GUI components in the SUT and to record events. To achieve this connection with the SUT, the JDK on the host machine should be instrumented in QF Test. When QF Test is replaying a test sequence, the event data is sent together with the data for the target component via the RMI connection to the extra layer in the SUT. A robust algorithm for component recognition is used to determine the component that should receive the event. Starting an Altio Application To test any Altio application, we first need to ensure that the Altio application has a valid username, password, view file name and htmltemplate specified. To do so, use the Altio login manager to provide a generic username/password e.g. admin/admin for the Altio application you are interested in testing. Also specify the view.xml file which the user requires to run in addition to the htmltemplate file which will be used to specify the parameters for the application. To launch any Java applet, QF Test requires the URL used for running that applet. In this scenario, we need the URL to launch the Altio application in running mode. To launch an application from QF Test: 1. Start QF Test; by default there will be a Test suite created in it. 2. Expand the Test node and right click on it. Page 3 of 15

4 3. From the popup menu, select Insert node > Dependencies > Setup. 4. A window will popup asking the user to enter some parameters for the node. Simply specify a name for the node e.g. startup application and click Ok. 5. Now, expand the Setup node and right click on it. 6. From the popup menu, select Insert node > Process nodes > Start SUT client 7. Specify the following values in the popup window: a. In the ʺClientʺ Field, enter the name of the SUT. This will be used as a reference to the application by QF Test. This can be any name, but the same name will be used to reference the SUT in other nodes, so this name should be used consistently. In this example, we will use ChartDemo as client name. b. In the Executable field, the executable program used to launch the SUT in will be specified. For Altio, this will be the file path for the browser you want to use to launch your application in. In this example, we will use C:/Program Files/Internet Explorer/IEXPLORE.EXE c. In the Parameters field, the command line arguments for the executable can be specified. Each parameter should be specified on a separate line. For Altio, this will be the URL used to launch the Altio application along with its APPID, username and password i.e. dmin&password=admin&app_id=chart For testing various other Altio applications, the same URL will be used. Only the username, Password and APPID fields will change. You also need to ensure that whichever application you want to test is deployed on your Altio installation. Page 4 of 15

5 Figure 2 Starting Altio application from QF Test 8. After specifying the Start SUT client node, we also need to setup a Wait for client node. This node ensures that QF Test waits for successful connection of the Altio application with the tool. To do so: a. Right click on Start SUT Client b. From the popup menu, select Insert node > Process nodes > Wait for client. c. Specify ChartDemo as the client name and click Ok Now the setup node is complete. This node will be the same across various test scripts for Altio applications. The only difference will be in the URL for the username, password and APPID. Recording components Now to launch the Altio application, select the Setup node just created and click on Page 5 of 15

6 the Play button on the top menu bar. The Altio application will launch in a new browser window as specified in the Start SUT client node. When the Record button becomes enabled, it means that the Altio application has successfully launched and connected with QF Test. The user can now record various components in the application and perform some tests. To record a simple sequence, simply click on the Record button. Switch to the application window of the SUT. Every mouse and keyboard action performed within the SUT window now will be recorded. Click on some controls and switch back to your QF Test test suite window. Press Stop recording button. Youʹll find the recorded sequence placed under Extras node on the left side of the main window, as seen below: Figure 3 Recorded sequence of events in QF Test You can replay this recording by selecting the sequence node and clicking on the Play button. You will notice that exactly the same sequence of mouse and keyboard events are replayed within the SUT window. This sequence can be copied under the Setup node to include it in the main test suite. To do this: 1. Select sequence node. 2. Right click and select copy. 3. Now collapse the Setup node. 4. Right click and paste. The recorded sequence will be pasted under the setup node. Page 6 of 15

7 It s important to remember that when the test script is played back, only events under the test suite node will be executed. No events under the Extras node will be replayed. Performing checks QF Test allows a user to perform various checks on the components available in the SUT. To demonstrate how to do so, close the browser window running the SUT and replay the Setup sequence. To begin recording of a check, click on the Record a check button. Switch to the Chart window. Now when you move your mouse over the components they invert their colour. To record a check, move to the component of interest, in this case, the list control, and right click. Youʹll then see a popup menu appear which gives you the choice of several checks, starting with Cell and The Cell s selected state, as seen below: Figure 4 Recording checks for a list control in QF Test This sequence of checks can also be copied into the main test suite in the same fashion as we copied the previous recorded sequence. Page 7 of 15

8 Figure 5 Recorded sequence of checks in QF Test All the components recorded in any sequence can be located under the Windows and Components node in QF Test. Right click a node and select Locate Component to locate a component in the hierarchy. This will help a user find out what kind of Java swing component a particular component is recognized as. QF Test provides various types of checks depending on the component selected at run time. However, for some components like charts, gif animator, etc. only image checks are available. To test such components in greater detail, Jython scripting can be used. Testing Altio components AltioLive has a number of controls which can be tested in various ways in QF Test. Below are outlined the checks available in QF Test on the various controls: 1. Label control User can check the label s text or enabled state. 2. Text control User can perform text value checks as well as tests to check the editable and enabled state of a text control. Since the text part of the combo Page 8 of 15

9 box and date picker control is similar to the text control, the same tests can be performed on these as well. 3. Button control QF Test can be used to perform check text and check enabled state tests on this control. 4. Checkbox and Radio button control User can test for the selected state, enabled state or text of these controls. 5. Combo box and date picker controls QF Test does not record checks for popup controls like select and date picker. For this purpose, the user can make use of Jython scripting. Various API functions can be used to interrogate the items in the dropdown list. 6. Menu control for a menu control, a user can test the text value and the enabled state. 7. List control a number of tests can be performed on the list control. User can check a cell s value as well as its selected state and editable state. Tests can also be performed on a column, a column which has been selected and the enabled state of the list. 8. Treeview control Like the list control, multiple tests can be performed on the treeview control. Test nodes can be created to check for the text value of a node or a node s selected state. Checks can be performed for the text value of all nodes or all nodes with their selection as well. 9. Image control simple image checks can be performed. QF Test takes screenshots of the image for this particular test and tries to match the image pixel by pixel during playback. 10. Tab control Checks can be performed for one tab or all tabs in a single test node. Text value checks for the selected tab, this tab and all tabs can be performed. In addition, this tab s selected state, this tab s enabled state and the tabbed control s enabled state can be tested as well. Tests are also available to perform image checks and geometry checks on all components. In addition to these tests, user can also perform Jython scripting to interrogate the components further. Testing business logic in a QF Test script We can test various parts of business logic in Altio applications. As an example, let s Page 9 of 15

10 take the list control in the application we are trying to test. Assume that this is an auto column list. For our test case, we want to check that every time the application is run, all the data comes back i.e. there a certain number of columns that should be visible in the list. QFtest can be used to perform an All Titles check on the list header. This is another test which will help us ensure that all the columns appear every time we run the application. An All Titles check can be recorded as: Figure 6 Recording checks for All Titles in a list For regression purposes, if at any time, any change in the Altio application which changes the data coming back into the list, the number of columns will change and the above recorded check will fail. Depending on the change, a decision can be made as to whether a bug has been introduced or the test script requires re factoring. We can also perform checks in the test script which ensure correct functionality of our Altio application by introducing a causal connection between some actions of the user which leads to a reaction from the application. For this, we can generate a sequence which performs that action and then record a check for responding event. These checks can either be recorded or performed by the use of a Jython script. Page 10 of 15

11 Jython scripting As opposed to other GUI testing tools, QF Test allows a user to embed Jython scripts within a test suite. Jython is a java implementation of python in the sense that it runs python in a JVM. Jython provides the user with the flexibility of either using Java or Python libraries to generate automated test scripts. To create a Jython script for your test suite, do the following: 1. Right click on a sequence node. 2. Select Insert node > Control Structures > SUT script This will open a window where a user can type in the script. Alternatively, you can also specify an external editor for the same purpose. QF Test provides a special environment for all the components in the SUT in which a local variable named rc is bound. This variable represents the run context which encapsulates the current state of the execution of the test. It provides an interface for accessing QF Testʹs variables, for calling QF Test ʹProceduresʹ and can be also be used to add messages to the run log. For ʹSUT scriptsʹ, it also provides access to the actual Java components of the SUTʹs GUI. This proves beneficial for Altio applications because of the usage of Swing components. Common functions provided consist of: Component getcomponent(string id, int timeout= 1, boolean hidden=false) This function allows us to find a component or a component s sub item using QF Test s component recognition mechanism. void check(boolean condition, String msg, int level=rc.error) This function allows us to check that a condition is true and log a message according to the result. void logmessage(string msg, boolean dontcompactify=false) This function allows us to add a plain text message to the run log. String callprocedure(string name, dictionary parameters=none) This function allows us to call a Procedure in a test suite. An example of a typical Jython script looks like this: # get components panel = rc.getcomponent($(getpanel)) chart = panel.getchart() # get type of plot Page 11 of 15

12 plot = chart.getplot() #rc.logmessage(plot.tostring()) type = plot.getplottype() rc.logmessage(type) #get dataset for the plot dataset = plot.getdataset() rc.logmessage(dataset.tostring()) #get row keys and column keys colkeys = dataset.getcolumnkeys() rc.logmessage(colkeys.tostring()) rowkeys = dataset.getrowkeys() rc.logmessage(rowkeys.tostring()) #get the number of rows & columns for the dataset rowcount = dataset.getrowcount() rc.logmessage(rowcount.tostring()) colcount = dataset.getcolumncount() rc.logmessage(colcount.tostring()) for x in range(rowcount): rc.logmessage("series: %i" %x) for y in range(colcount): valuedata = dataset.getvalue(x,y) numvalue = valuedata.intvalue() rc.logmessage(numvalue.tostring()) Use of Procedures and structuring the Test Script Like in most programming languages, QF Test also provides the flexibility of creating procedures. A user can pass variable values through procedure calls to the concerned procedure. Before creating a procedure call, you need to create a procedure: 1. Right click on Procedures node 2. Click on Insert node > Procedure nodes > Procedure In the pop up window, a user can specify a procedure name and parameters in the Page 12 of 15

13 parameters list. You can then record a sequence and add it to the body of the procedure/function. To call a procedure from the test suite, do the following: 1. Right click on a sequence node in the test suite. 2. Click on Insert node > Procedure nodes > Procedure call 3. User can select procedures from the current test suite or other test suites which might be open as shown below: Figure 6 Making a procedure call in QF Test Any parameters required for the called procedure will also be copied over hence ensuring that the user provides valid arguments for them. For Altio testing, a QF Test script can be setup which will function as a library. Common procedures which can be created are for Startup and Cleanup nodes. Variables can be used to specify APPIDs for various Altio applications in the setup Page 13 of 15

14 node. Similarly, procedures can be created for various other repetitive tests. For a well structured test suite, it s imperative that there are one or more test cases contained in it. Every test case should effectively just have one piece of functionality being tested on. Every test suite should also have at least one startup and cleanup node to successfully launch and close down the Altio application, respectively. Testing various areas of AltioLive Studio Enterprise In addition to testing various Altio applications, QF Test can also be used to test various other modules of AltioLive. This includes the Designer and Application Manager. All you need is the URL to launch them. For example, to test the Designer, we can modify the Start SUT client node created above with this URL SSWORD=admin&APP_ID=Chart&TYPE=DESIGNER. Doing so will launch the view.xml file for the Chart application in the Designer. User can then record various sequences for adding components to window, changing their properties and saving the view. Furthermore, QF Test also provides the use of local or global variables and data drivers. Variables can be helpful when certain components or their values need to be accessed out of the scope of a procedure. Data drivers are useful when you need to perform checks regarding data coming from a database. This will also help avoid creation of long Jython scripts for checking multiple values coming back in the Altio application at runtime. Conclusion Our use of QF Test with Altio applications has proved beneficial. We have successfully been able to test various components in the applications by using the simple record/check playback methodologies. Jython has allowed testing of various complicated components like the list control and the datepicker. The availability of Java and Python APIs has provided greater flexibility in testing. Page 14 of 15

15 Contact Information Integra SP Ltd 1 Liverpool Street London EC2M 7QD maryam.umar@altio.com Page 15 of 15

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8

Citrix EdgeSight for Load Testing User s Guide. Citrix EdgeSight for Load Testing 3.8 Citrix EdgeSight for Load Testing User s Guide Citrix EdgeSight for Load Testing 3.8 Copyright Use of the product documented in this guide is subject to your prior acceptance of the End User License Agreement.

More information

Network Probe User Guide

Network Probe User Guide Network Probe User Guide Network Probe User Guide Table of Contents 1. Introduction...1 2. Installation...2 Windows installation...2 Linux installation...3 Mac installation...4 License key...5 Deployment...5

More information

Customizing Confirmation Text and Emails for Donation Forms

Customizing Confirmation Text and Emails for Donation Forms Customizing Confirmation Text and Emails for Donation Forms You have complete control over the look & feel and text used in your donation confirmation emails. Each form in Sphere generates its own confirmation

More information

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc.

EVALUATION ONLY. WA2088 WebSphere Application Server 8.5 Administration on Windows. Student Labs. Web Age Solutions Inc. WA2088 WebSphere Application Server 8.5 Administration on Windows Student Labs Web Age Solutions Inc. Copyright 2013 Web Age Solutions Inc. 1 Table of Contents Directory Paths Used in Labs...3 Lab Notes...4

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

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

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

MONAHRQ Installation Permissions Guide. Version 2.0.4

MONAHRQ Installation Permissions Guide. Version 2.0.4 MONAHRQ Installation Permissions Guide Version 2.0.4 March 19, 2012 Check That You Have all Necessary Permissions It is important to make sure you have full permissions to run MONAHRQ. The following instructions

More information

Selenium Automation set up with TestNG and Eclipse- A Beginners Guide

Selenium Automation set up with TestNG and Eclipse- A Beginners Guide Selenium Automation set up with TestNG and Eclipse- A Beginners Guide Authors: Eevuri Sri Harsha, Ranjani Sivagnanam Sri Harsha is working as an Associate Software Engineer (QA) for IBM Policy Atlas team

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Chapter 15: Forms. User Guide. 1 P a g e

Chapter 15: Forms. User Guide. 1 P a g e User Guide Chapter 15 Forms Engine 1 P a g e Table of Contents Introduction... 3 Form Building Basics... 4 1) About Form Templates... 4 2) About Form Instances... 4 Key Information... 4 Accessing the Form

More information

Desktop, Web and Mobile Testing Tutorials

Desktop, Web and Mobile Testing Tutorials Desktop, Web and Mobile Testing Tutorials * Windows and the Windows logo are trademarks of the Microsoft group of companies. 2 About the Tutorial With TestComplete, you can test applications of three major

More information

Pcounter Web Administrator User Guide - v2014-09-08. Pcounter Web Administrator User Guide Version 1.0

Pcounter Web Administrator User Guide - v2014-09-08. Pcounter Web Administrator User Guide Version 1.0 Pcounter Web Administrator User Guide - v2014-09-08 Pcounter Web Administrator User Guide Version 1.0 Table of Contents Table of Contents... 2 Overview... 3 Installation Prerequisites and Requirements...

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later

for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later for Networks Installation Guide for the application on the server July 2014 (GUIDE 2) Lucid Rapid Version 6.05-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

CloudCTI Recognition Configuration Tool Manual

CloudCTI Recognition Configuration Tool Manual CloudCTI Recognition Configuration Tool Manual 2014 v1.0 Contents Recognition Configuration Tool... 2 Welcome to the Recognition Configuration Tool... 2 Getting started... 2 Listed applications... 4 Other

More information

Practical Example: Building Reports for Bugzilla

Practical Example: Building Reports for Bugzilla Practical Example: Building Reports for Bugzilla We have seen all the components of building reports with BIRT. By this time, we are now familiar with how to navigate the Eclipse BIRT Report Designer perspective,

More information

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later

for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later for Networks Installation Guide for the application on the server August 2014 (GUIDE 2) Lucid Exact Version 1.7-N and later Copyright 2014, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

E-mail Listeners. E-mail Formats. Free Form. Formatted

E-mail Listeners. E-mail Formats. Free Form. Formatted E-mail Listeners 6 E-mail Formats You use the E-mail Listeners application to receive and process Service Requests and other types of tickets through e-mail in the form of e-mail messages. Using E- mail

More information

INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL...

INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 NAVIGATION PANEL... INTRODUCTION TO ATRIUM... 2 SYSTEM REQUIREMENTS... 2 TECHNICAL DETAILS... 2 LOGGING INTO ATRIUM... 3 SETTINGS... 4 CONTROL PANEL... 4 ADDING GROUPS... 6 APPEARANCE... 7 BANNER URL:... 7 NAVIGATION... 8

More information

account multiple solutions

account multiple solutions Quick Start Guide 1 Our easy to use guide will get you up and running in no time! The guide will assist you with: Generating your Sage Pay login Navigation Creating contacts Creating system users Setting

More information

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

Data Warehouse Troubleshooting Tips

Data Warehouse Troubleshooting Tips Table of Contents "Can't find the Admin layer "... 1 "Can't locate connection document "... 3 Column Headings are Missing after Copy/Paste... 5 Connection Error: ORA-01017: invalid username/password; logon

More information

Eclipse installation, configuration and operation

Eclipse installation, configuration and operation Eclipse installation, configuration and operation This document aims to walk through the procedures to setup eclipse on different platforms for java programming and to load in the course libraries for

More information

QAS Small Business for Salesforce CRM

QAS Small Business for Salesforce CRM INTRODUCTION This document provides an overview of integrating and configuring QAS for Salesforce CRM. It will take you through the standard integration and configuration process and also provides an appendix

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

Troubleshooting Guide. 2.2 Click the Tools menu on Windows Explorer 2.3 Click Folder Options. This will open a dialog box:

Troubleshooting Guide. 2.2 Click the Tools menu on Windows Explorer 2.3 Click Folder Options. This will open a dialog box: Listed below are errors you could possibly encounter when trying to log into Business Online after upgrading to the latest version of Java. Click on the link for a full explanation of the error and the

More information

Orientation Course - Lab Manual

Orientation Course - Lab Manual Orientation Course - Lab Manual Using the Virtual Managed Workplace site for the lab exercises Your instructor will provide the following information before the first lab exercise begins: Your numerical

More information

SOA Software API Gateway Appliance 7.1.x Administration Guide

SOA Software API Gateway Appliance 7.1.x Administration Guide SOA Software API Gateway Appliance 7.1.x Administration Guide Trademarks SOA Software and the SOA Software logo are either trademarks or registered trademarks of SOA Software, Inc. Other product names,

More information

TIBCO Spotfire Automation Services 6.5. User s Manual

TIBCO Spotfire Automation Services 6.5. User s Manual TIBCO Spotfire Automation Services 6.5 User s Manual Revision date: 17 April 2014 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

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

Perceptive Intelligent Capture Solution Configration Manager

Perceptive Intelligent Capture Solution Configration Manager Perceptive Intelligent Capture Solution Configration Manager Installation and Setup Guide Version: 1.0.x Written by: Product Knowledge, R&D Date: February 2016 2015 Lexmark International Technology, S.A.

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code.

The full setup includes the server itself, the server control panel, Firebird Database Server, and three sample applications with source code. Content Introduction... 2 Data Access Server Control Panel... 2 Running the Sample Client Applications... 4 Sample Applications Code... 7 Server Side Objects... 8 Sample Usage of Server Side Objects...

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

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

Online Statements. About this guide. Important information

Online Statements. About this guide. Important information Online Statements About this guide This guide shows you how to: View online statements, including CommBiz Activity Statements (Billing summaries) and online statements for Transaction Accounts, Credit

More information

SharePoint Integration Framework Developers Cookbook

SharePoint Integration Framework Developers Cookbook Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook Rev: 2013-11-28 Sitecore CMS 6.3 to 6.6 and SIP 3.2 SharePoint Integration Framework Developers Cookbook A Guide

More information

Content Management System User Guide

Content Management System User Guide CWD Clark Web Development Ltd Content Management System User Guide Version 1.0 1 Introduction... 3 What is a content management system?... 3 Browser requirements... 3 Logging in... 3 Page module... 6 List

More information

FioranoMQ 9. High Availability Guide

FioranoMQ 9. High Availability Guide FioranoMQ 9 High Availability Guide Copyright (c) 1999-2008, Fiorano Software Technologies Pvt. Ltd., Copyright (c) 2008-2009, Fiorano Software Pty. Ltd. All rights reserved. This software is the confidential

More information

Marcum LLP MFT Guide

Marcum LLP MFT Guide MFT Guide Contents 1. Logging In...3 2. Installing the Upload Wizard...4 3. Uploading Files Using the Upload Wizard...5 4. Downloading Files Using the Upload Wizard...8 5. Frequently Asked Questions...9

More information

Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above

Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above Pcounter CGI Utilities Installation and Configuration For Pcounter for Windows version 2.55 and above About this document The core Pcounter application contains a number of CGI extension applications which

More information

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein

PROJECTIONS SUITE. Database Setup Utility (and Prerequisites) Installation and General Instructions. v0.9 draft prepared by David Weinstein PROJECTIONS SUITE Database Setup Utility (and Prerequisites) Installation and General Instructions v0.9 draft prepared by David Weinstein Introduction These are the instructions for installing, updating,

More information

for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later

for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later for Networks Installation Guide for the application on a server September 2015 (GUIDE 2) Memory Booster version 1.3-N and later Copyright 2015, Lucid Innovations Limited. All Rights Reserved Lucid Research

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

SilkTest Workbench. Getting Started with.net Scripts

SilkTest Workbench. Getting Started with.net Scripts SilkTest Workbench Getting Started with.net Scripts Borland Software Corporation 4 Hutton Centre Dr., Suite 900 Santa Ana, CA 92707 Copyright 2010 Micro Focus (IP) Limited. All Rights Reserved. SilkTest

More information

Rational Quality Manager. Quick Start Tutorial

Rational Quality Manager. Quick Start Tutorial Rational Quality Manager Quick Start Tutorial 1 Contents 1. Introduction... 2 2. Terminology... 3 3. Project Area Preparation... 4 3.1 Adding Users and specifying Roles... 4 3.2 Managing Tool Associations...

More information

QUICK START GUIDE RESOURCE MANAGERS. Last Updated: 04/27/2012

QUICK START GUIDE RESOURCE MANAGERS. Last Updated: 04/27/2012 QUICK START GUIDE RESOURCE MANAGERS Last Updated: 04/27/2012 Table of Contents Introduction... 3 Getting started... 4 Logging into Eclipse... 4 Setting your user preferences... 5 Online help and the Eclipse

More information

3dCart Shopping Cart Software V3.X Affiliate Program Guide

3dCart Shopping Cart Software V3.X Affiliate Program Guide INTRODUCTION 2 SETUP THE AFFILIATE MENU LINK 2 UPLOAD BANNERS 4 ENABLE THE AFFILIATE PROGRAM 6 REGISTRATION PROCESS 7 APPROVE AFFILIATES 11 MANAGE ORDERS 12 MANAGE COMMISSION PAYOUTS 13 END YOU VE REACHED

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

Enter your User Name and Password (you can tab or left mouse click between these two fields) and click the Log On Button.

Enter your User Name and Password (you can tab or left mouse click between these two fields) and click the Log On Button. ACCESSING THE NORFOLK HOSTED SIMS SERVICE ADMINISTRATORS GUIDE 1. URL and Login Credentials In order to access the Norfolk Hosted SIMS Service you will be given a unique URL for your organisation. This

More information

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved.

User Guide. Version 3.2. Copyright 2002-2009 Snow Software AB. All rights reserved. Version 3.2 User Guide Copyright 2002-2009 Snow Software AB. All rights reserved. This manual and computer program is protected by copyright law and international treaties. Unauthorized reproduction or

More information

Lab 0 (Setting up your Development Environment) Week 1

Lab 0 (Setting up your Development Environment) Week 1 ECE155: Engineering Design with Embedded Systems Winter 2013 Lab 0 (Setting up your Development Environment) Week 1 Prepared by Kirill Morozov version 1.2 1 Objectives In this lab, you ll familiarize yourself

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

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

HP Business Process Monitor

HP Business Process Monitor HP Business Process Monitor For the Windows operating system Software Version: 9.23 BPM Monitoring Solutions Best Practices Document Release Date: December 2013 Software Release Date: December 2013 Legal

More information

Content Management System User Guide

Content Management System User Guide Content Management System User Guide support@ 07 3102 3155 Logging in: Navigate to your website. Find Login or Admin on your site and enter your details. If there is no Login or Admin area visible select

More information

Parent Online Payment Manual. Updated 09/14/2011. Contents. Logging In for the First Time... 2. Logging In... 4. Viewing Ledger Card...

Parent Online Payment Manual. Updated 09/14/2011. Contents. Logging In for the First Time... 2. Logging In... 4. Viewing Ledger Card... 1 Parent Online Payment Manual Updated 09/14/2011 Contents Logging In for the First Time... 2 Logging In... 4 Viewing Ledger Card... 5 Making a Payment with your Credit Card or ACH/Electronic Check...

More information

To begin, visit this URL: http://www.ibm.com/software/rational/products/rdp

To begin, visit this URL: http://www.ibm.com/software/rational/products/rdp Rational Developer for Power (RDp) Trial Download and Installation Instructions Notes You should complete the following instructions using Internet Explorer or Firefox with Java enabled. You should disable

More information

WorldExtend IronDoor 3.5 Publishing a Terminal Services Application

WorldExtend IronDoor 3.5 Publishing a Terminal Services Application WorldExtend IronDoor 3.5 Publishing a Terminal Services Application WorldExtend, LLC. Published: September 2008 Abstract This guide will walk you through the steps required to publish a terminal services

More information

DocAve 6 Service Pack 1 Job Monitor

DocAve 6 Service Pack 1 Job Monitor DocAve 6 Service Pack 1 Job Monitor Reference Guide Revision C Issued September 2012 1 Table of Contents About Job Monitor... 4 Submitting Documentation Feedback to AvePoint... 4 Before You Begin... 5

More information

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide

Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide Page 1 of 243 Team Foundation Server 2010, Visual Studio Ultimate 2010, Team Build 2010, & Lab Management Beta 2 Installation Guide (This is an alpha version of Benjamin Day Consulting, Inc. s installation

More information

Studio 5.0 User s Guide

Studio 5.0 User s Guide Studio 5.0 User s Guide wls-ug-administrator-20060728-05 Revised 8/8/06 ii Copyright 2006 by Wavelink Corporation All rights reserved. Wavelink Corporation 6985 South Union Park Avenue, Suite 335 Midvale,

More information

How To Use Query Console

How To Use Query Console Query Console User Guide 1 MarkLogic 8 February, 2015 Last Revised: 8.0-1, February, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Query Console User

More information

GUIDE. Web Client Application. Model: ER 4.0. Release 4.0.00 / Version No.: 1.01

GUIDE. Web Client Application. Model: ER 4.0. Release 4.0.00 / Version No.: 1.01 8e6R Enterprise Reporter USER GUIDE Web Client Application Model: ER 4.0 Release 4.0.00 / Version No.: 1.01 ii 8E6 TECHNOLOGIES, ENTERPRISE REPORTER WEB CLIENT USER GUIDE 8E6 ENTERPRISE REPORTER WEB CLIENT

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

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Kaldeera Workflow Designer 2010 User's Guide

Kaldeera Workflow Designer 2010 User's Guide Kaldeera Workflow Designer 2010 User's Guide Version 1.0 Generated May 18, 2011 Index 1 Chapter 1: Using Kaldeera Workflow Designer 2010... 3 1.1 Getting Started with Kaldeera... 3 1.2 Importing and exporting

More information

Batch Scanning. 70 Royal Little Drive. Providence, RI 02904. Copyright 2002-2011 Ingenix. All rights reserved.

Batch Scanning. 70 Royal Little Drive. Providence, RI 02904. Copyright 2002-2011 Ingenix. All rights reserved. 70 Royal Little Drive Providence, RI 02904 Copyright 2002-2011 Ingenix. All rights reserved. Updated: December 13, 2011 Table of Contents 1 Batch Scanning... 1 1.1 Installing the CareTracker Client...

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

Ansur Test Executive. Users Manual

Ansur Test Executive. Users Manual Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About

More information

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0

Charter Business Phone. Online Control Panel Getting Started Guide. Document Version 1.0 Charter Business Phone Online Control Panel Getting Started Guide Document Version 1.0 Table of Contents 1 About This Guide...4 2 Overview...5 2.1 Online Control Panel and Call Manager... 5 3 Manual and

More information

CPM 5.2.1 5.6 release notes

CPM 5.2.1 5.6 release notes 1 (18) CPM 5.2.1 5.6 release notes Aditro Oy, 2014 CPM Release Notes Page 1 of 18 2 (18) Contents Fakta version 5.2.1. version 1.2.1... 3 Fakta version 5.2.1.1038 sp1 version 1.2.1.300 sp1... 4 Fakta version

More information

Personal Call Manager User Guide. BCM Business Communications Manager

Personal Call Manager User Guide. BCM Business Communications Manager Personal Call Manager User Guide BCM Business Communications Manager Document Status: Standard Document Version: 04.01 Document Number: NN40010-104 Date: August 2008 Copyright Nortel Networks 2005 2008

More information

Forms Printer User Guide

Forms Printer User Guide Forms Printer User Guide Version 10.51 for Dynamics GP 10 Forms Printer Build Version: 10.51.102 System Requirements Microsoft Dynamics GP 10 SP2 or greater Microsoft SQL Server 2005 or Higher Reporting

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

User Manual Web DataLink for Sage Line 50. Version 1.0.1

User Manual Web DataLink for Sage Line 50. Version 1.0.1 User Manual Web DataLink for Sage Line 50 Version 1.0.1 Table of Contents About this manual...3 Customer support...3 Purpose of the software...3 Installation...6 Settings and Configuration...7 Sage Details...7

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

Learning Management System (LMS) Quick Tips. Contents LMS REFERENCE GUIDE

Learning Management System (LMS) Quick Tips. Contents LMS REFERENCE GUIDE Learning Management System (LMS) Quick Tips Contents Process Overview... 2 Sign into the LMS... 3 Troubleshooting... 5 Required Software... 5 Mobile devices are not supported... 5 Using the Check System

More information

Installation & Configuration Guide Professional Edition

Installation & Configuration Guide Professional Edition Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

REGISTER OF COMPANIES, ENTERPRISES AND BUSINESS

REGISTER OF COMPANIES, ENTERPRISES AND BUSINESS RWANDA BUSINESS REGISTRY PROJECT REGISTER OF COMPANIES, ENTERPRISES AND BUSINESS NAMES USER MANUAL Online user Version: 1.0 March 9 th 2010 NORWAY REGISTERS DEVELOPMENT AS TABLE OF CONTENTS 1 INTRODUCTION...

More information

CHARTER BUSINESS custom hosting faqs 2010 INTERNET. Q. How do I access my email? Q. How do I change or reset a password for an email account?

CHARTER BUSINESS custom hosting faqs 2010 INTERNET. Q. How do I access my email? Q. How do I change or reset a password for an email account? Contents Page Q. How do I access my email? Q. How do I change or reset a password for an email account? Q. How do I forward or redirect my messages to a different email address? Q. How do I set up an auto-reply

More information

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

IBM. Implementing SMTP and POP3 Scenarios with WebSphere Business Integration Connect. Author: Ronan Dalton

IBM. Implementing SMTP and POP3 Scenarios with WebSphere Business Integration Connect. Author: Ronan Dalton IBM Implementing SMTP and POP3 Scenarios with WebSphere Business Integration Connect Author: Ronan Dalton Table of Contents Section 1. Introduction... 2 Section 2. Download, Install and Configure ArGoSoft

More information

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites

... Asbru Web Content Management System. Getting Started. Easily & Inexpensively Create, Publish & Manage Your Websites Asbru Ltd Asbru Ltd wwwasbrusoftcom info@asbrusoftcom Asbru Web Content Easily & Inexpensively Create, Publish & Manage Your Websites 31 March 2015 Copyright 2015 Asbru Ltd Version 92 1 Table of Contents

More information

Getting Started with Mamut Online Desktop

Getting Started with Mamut Online Desktop // Mamut Business Software Getting Started with Mamut Online Desktop Getting Started with Mamut Online Desktop Contents Welcome to Mamut Online Desktop... 3 Getting Started... 6 Status... 23 Contact...

More information

Active Directory Integration for Greentree

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

More information

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO:

INTRODUCTION: SQL SERVER ACCESS / LOGIN ACCOUNT INFO: INTRODUCTION: You can extract data (i.e. the total cost report) directly from the Truck Tracker SQL Server database by using a 3 rd party data tools such as Excel or Crystal Reports. Basically any software

More information

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc.

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Objectives At the end of this chapter, participants should be able to: Understand basic WebLogic Server architecture Understand the

More information

Remote Viewer Recording Backup

Remote Viewer Recording Backup Remote Viewer Recording Backup Introduction: In this tutorial we will explain how to retrieve your recordings using the Web Service online. Using this method you can backup videos onto your computer using

More information

Inteset Secure Lockdown ver. 2.0

Inteset Secure Lockdown ver. 2.0 Inteset Secure Lockdown ver. 2.0 for Windows XP, 7, 8, 10 Administrator Guide Table of Contents Administrative Tools and Procedures... 3 Automatic Password Generation... 3 Application Installation Guard

More information

Kentico CMS 7.0 Intranet Administrator's Guide

Kentico CMS 7.0 Intranet Administrator's Guide Kentico CMS 7.0 Intranet Administrator's Guide 2 Kentico CMS 7.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

Using the IPMI interface

Using the IPMI interface Using the IPMI interface The T800, T1600 and T3200 server models are equipped with an IPMI interface with KVM / IP functionality. This enables you to access the server console if it becomes inaccessible

More information

CommandCenter Secure Gateway User Guide Release 6.0

CommandCenter Secure Gateway User Guide Release 6.0 CommandCenter Secure Gateway User Guide Release 6.0 Copyright 2014 Raritan, Inc. CC-0X-v6.0-E April 2014 255-80-3100-00 This document contains proprietary information that is protected by copyright. All

More information