HP LoadRunner software tips and tricks for configuration, scripting and execution. White paper

Size: px
Start display at page:

Download "HP LoadRunner software tips and tricks for configuration, scripting and execution. White paper"

Transcription

1 HP LoadRunner software tips and tricks for configuration, scripting and execution White paper

2 Table of contents Abstract About the author Implementing a successful performance testing program Formulating a high-level test plan Tips for scripting Defining the directory structure and naming conventions Recording scripts Creating dynamic scripts through correlation and parameterization Creating transactions Parameterizing and converting itoa (C++) code Date_Time manipulation Get date seven days beyond current date Polling for batch run status Logging messages Scripting checklist Tips for building scenarios Executing tests via HP LoadRunner Controller Scheduling options Tips for data handling Using virtual tables IP spoofing for client with same Netmask IP class and network Parse string based on value Randomize using switch and case Tips for test execution and scheduling HP LoadRunner timeout errors Extended logging code

3 Abstract: This guide provides tips and tricks for HP LoadRunner software configuration, scripting, and execution. It is a conglomerate of lessons learned by HP LoadRunner power user Opral Wisham, including unique code as well as code collected from other testers. This guide is intended to help testers just learning to use HP LoadRunner, as well as to provide new best practices for those who have used HP LoadRunner for many years. About the author: Opral Wisham is currently a senior performance and capacity specialist at Waste Management, Inc., the industry s leading provider of comprehensive waste management services. Headquartered in Houston, Texas, Waste Management protects the quality of life in many communities, providing waste solutions to approximately 25 million residential and 2 million commercial customers in North America. Opral s responsibilities at Waste Management include managing the capacity and performance verification (CPV) processes for all of the company s new applications. In her role as CPV technical manager, Opral has gathered many best practices to coordinate the testing activities of the company s cross-departmental CPV team and expedite the training of new team members. Implementing a successful performance testing program Before you release any new application into production, you must perform extensive capacity and performance validation (CPV) testing. This guide is intended to help new users and seasoned professionals learn new ways to design and implement successful load testing initiatives using HP LoadRunner. Performance testing processes can be divided into four phases: the initial performance testing request, preparation for testing, script development and execution, and test analysis. The following sections of this document describe some of the steps and best practices to follow when designing and conducting an effective performance test program. Table 1. This table illustrates the functional flow of a performance testing execution process, with suggested deliverables for each phase. Description CPV request Meet with CPV lead to overview solution under test Conduct a planning session to outline requirements and resolve issues Reserve test slot with CPV Preparation Secure hardware Configure hardware/software Data explosion Create IDs Business scenarios and test cases Development and execution Create automated scripts Debug automated scripts Run pre-determined load for each test cycle Provide results after each test cycle Provide summary report Analysis Analyze data provided by CPV for each test cycle Identify unacceptable performance Ensure accurate hardware capacity Owner Business owner Business owner administrator(s) CPV Business owner CPV Deliverables Architecture review board approval Performance requirements document (draft) Support staff established Performance requirements document (final) Support staff available Test environment configured and data validated Summary report outlining tuning changes, CPV issues, statistical data Position statement and recommendations Obtain automation tool, if not available 3

4 Formulating a high-level test plan The performance testing team should begin by defining a high-level test plan that describes the timeline for all testing efforts, including what types of tests will be performed (e.g., online and infrastructure stress and load tests, batch performance tests, etc.). The plan should also indicate how the performance testing team will interact with the development, deployment and/or support groups within the enterprise. When possible, it helps to use the actual names and titles of resources when explaining the interaction. The testing team should describe what the tests are intended to measure and/or report. It is important to clarify all terminology that may be at risk of being misunderstood (e.g., Transaction s Response Time may refer to the time it takes to hit the enter button and get a result from the system, or it could indicate the time it takes to perform a function that requires some human intervention). Some metrics for web applications will have different definitions from traditional online and batch applications, like average hits/second, web server throughput, etc. The following checklist can be used when defining the steps of a comprehensive performance testing process: 1. List all testing milestones and deliverables for every phase of the project, including the pilot, code freeze and production phases. 2. Create a comprehensive production physical architecture diagram that shows a very low level of detail, including how each component will be connected. 3. List all hardware and software requirements for the tests. 4. Determine all database data volume requirements. 5. Define all performance objectives. 6. Identify all performance benchmarks, if available. 7. Identify the total number of expected users. 8. Specify the minimum and maximum number of concurrent users. 9. Select five business scenarios (manual scripts), plus actions within each scenario that should be measured (transactions). 10. Determine the user load mix. 11. Define acceptable average response times per transaction. 12. Define the average hits/second or number of transactions within one hour. 13. Define throughput, if applicable. 14. Identify any concurrent batch processes that are running. 15. Identify all lead, technical and functional contact personnel. The following sections will provide examples that will help the performance testing team streamline the processes of scripting, building scenarios, data handling, test execution and test scheduling. 4

5 Tips for scripting Defining the directory structure and naming conventions It is important to establish formal procedures for creating directory structures and establishing naming conventions. The following nomenclature can be used for creating a directory structure (folder names) for new projects: ProjectName LR_Scripts Scenarios TestDoc TestPlanAndReport TestExecution Recommendations Reports LR_Reports Cycle1 Cycle2 HTML_Reports Cycle1 Cycle2 Project and script names should be descriptive and intuitive for new users of the system. For example: ProjectName: Should identify the project or application under test. LR_Scripts: Files should be the name of the saved HP LoadRunner scripts. FunctionName_Type Type: Is func or rpt or qry Scenarios: Files should identify the project and number of Vusers simulated. ProjectName_VuserCount TestDoc: Directory should contain all test documentation. TestPlanAndReport Test Plan Test Cases WorkLoad, etc. Scripter Notes Test Summary TestExecution Execution Progress Log Comparison Log Recommendations Recommendations Recording scripts Whenever possible, the performance testing team should use HP LoadRunner s automatic recording options. This method provides the most efficient way to record scripts for load testing most web-based applications. Creating dynamic scripts through correlation and parameterization The performance testing team can use correlation to retrieve a value before it is needed in a preceding statement, enabling the server to dynamically generate the unknown value. The team can use parameterization when the values are known and they are not available prior to executing the statement. Below is a parameterization example: 1. Parameterize, Source, Currency, Business Unit and Account, using a file. Select next row should be same as Business Unit. Business Unit Select next row should be sequential or random, depending on the duration or number of iterations. 2. Parameterize date as date/time, using %m/%d/%y 3. Parameterize Amount as a random number from 1 to 10, Parameterize Accounting Period as date/time, using %m 5. Parameterize the URL using a file. This will reduce the script changes required when the URL does change. Correlation and parameterization are keys to creating a dynamic, data-driven test. Creating transactions The performance test team should then define the transactions to measure the performance of the server. Each transaction measures the time it takes for the server to respond to specified Virtual User (Vuser) requests. To mark the start of a transaction, the testing team should click the start transaction button from the recording toolbar. Enter a transaction name in the transaction name box. Click OK to accept the transaction name. HP LoadRunner Virtual User Generator (VuGen) will automatically enter a lr_start_transaction statement into the script. Click the end transaction button to end the transaction. VuGen will automatically enter an lr_end_transaction statement into the script. 5

6 Performance testing typically creates transactions for the Log-in and Log-out and every place in the script where a submit appears. More transactions can be included, but all submits must have transactions to measure the response times. Dynamic transactions names are names that change depending upon a parameterized value. If there are several reports that are run randomly, the team can define the transaction name dynamically using the code below: Char rname[10]; sprintf( rname, Run_Report_%s, lr_eval_string( {report} ) ); lr_output_message(rname); lr_start_transaction(rname); lr_end_transaction(rname,2); Parameterizing and converting itoa (C++) code If the team needs to increment a counter and use that counter as a parameter, it will need to convert the integer to a string by using sprintf. After conversion, the string needs to become a parameter. Therefore the string should be saved into a parameter using lr_save_string. Date_Time manipulation The following statements can be inserted to manipulate the date time stamp. In this example, it was necessary for the date in the script to be one day after the current date. The parameter {Tomorrow} is saved where the current date appeared in the script. This parameter insertion results in tomorrow s date being inserted where the current date would have appeared. Action1() { lr_save_datetime( Tomorrow is %m/%d/%y, DATE_NOW + ONE_DAY, Tomorrow ); //lr_output_message(lr_eval_string( {Tomorrow } )); itemdata... * * * Name=PV_REQ_SR_WRK_DUE_DT$0, Value={Tomorrow }, ENDITEM, Get date seven days beyond current date This code will add seven days to the current date. This is useful when a due date is required seven days from the current date: /* M:\Remedy\Test Scripts\Modify an Existing Remedy Help Desk Case */ /* insert before action */ char wid_str[6]; /* 0xFFFF = NULL = 6 */ int i = 0; /* initialize I */ lr_save_datetime( %m/%d/%y, DATE_NOW + ONE_DAY + ONE_DAY + ONE_DAY + ONE_DAY + ONE_DAY + ONE_DAY + ONE_DAY, curr_date ); i = i + 2; /* increment I by 2 or whatever value */ sprintf( wid_str, %d, i ); /* copy integer into string */ lr_save_string(wid_str, wid_num ); /* save into parameter value */ 6

7 Polling for batch run status This example was used in a script that required clicking the refresh button until the run status changed to success. This code provides an automatic refresh until the batch job has been completed. The next step requires the completion of the batch job. int x; // flag will be 0 or 9 char *temp, *temp2; // values to hold strings Action1() { temp2= Success ; //compare string 2 //lr_message( temp2 = %s, temp2);... // set x to 0 x is the success flag x=0; do { web_reg_save_param( RunStatus, LB=<td align= LEFT class= PSLEVEL1GRIDODDROW >\n, RB=\n, Ord=5, Search=body, LAST); web_submit_data( PROCESSMONITOR.PROCESS MONITOR.GBL, Action= PROCESSMONITOR.PROCESSMONITOR.GBL, Method=POST, RecContentType=text/html, Referer= PROCESSMONITOR.PROCESSMONITOR.GBL? Page=PMN_PRCSLIST&Action=U&, Snapshot=t17.inf, Mode=NORESOURCE, ITEMDATA, Name=ICType, Value=Panel, ENDITEM, Name=ICElementNum, Value=0, ENDITEM, Name=ICStateNum, Value={ICStateNum6}, ENDITEM, Name=ICAction, Value=REFRESH_BTN, ENDITEM, Name=ICXPos, Value=0, ENDITEM, Name=ICYPos, Value=0, ENDITEM, Name=ICFocus, Value=, ENDITEM, Name=ICChanged, Value=-1, ENDITEM, Name=ICFind, Value=, ENDITEM, Name=PMN_FILTER_WS_OPRID, Value=CPVID, ENDITEM, Name=PMN_FILTER_PRCSTYPE, Value=, ENDITEM, Name=PMN_FILTER_FILTERVALUE, Value=1, ENDITEM, Name=PMN_FILTER_FILTERUNIT, Value=1, ENDITEM, Name=PMN_FILTER_SERVERNAME, Value=PSUNX, ENDITEM, Name=PMN_FILTER_PRCSNAME, Value=, ENDITEM, Name=PMN_DERIVED_PRCSINSTANCE, Value={Process_Instance}, ENDITEM, Name=PMN_DERIVED_TO_PRCSINSTANCE, Value={Process_Instance}, ENDITEM, Name=PMN_FILTER_RUNSTATUS, Value=, ENDITEM, LAST); // Compare correlation value with character string temp = lr_eval_string(lr_eval_string( {RunStatus} )); // correlation value to variable //lr_message( temp = %s, temp); //compare string 1 if(strcmp(temp,temp2)==0){ // string compare success with correlation value x=9; // set flag to indicate success } }while (x == 0); // do while flag not set Logging messages Vuser messages are sent to the Vuser log and output window by using one of the message functions. The lr_output_message is most commonly used by CPV. Log messages can be used to identify many things about Vusers during script execution, including: 1. Determining if a Vuser reaches a certain point during script execution. 2. Confirming that valid values are passed for parameters. 3. Confirming that passed values appear where they should in the database (by capturing the passed values and knowing what to search for). Scripting checklist HP LoadRunner script testing will occur after creation of each automated script. Scripts can be added to performance test bed when: 1. No scripting errors occur. 2. Looping successfully; replaces parameterization variables with various values. 3. Activity is noted on each system tier. 4. A minimum load of ten users is simulated. 5. Scripts are run on a subsequent day (dates correlated correctly). 7

8 Tips for building scenarios Executing tests via HP LoadRunner Controller The following steps can be used for performance test execution: 1. Add load generators and connect. 2. Add scenario groups: Add one or more scripts to the list of scenarios. 3. Create run-time settings: Pace users based on feedback from business analysts or users. a. Disable Logging b. Determine where to put think time in the script from business analysts or users. Think time can be randomized when a non-random value is in the script. 4. Simulate browser cache: This option instructs the Vuser to simulate a browser with a cache. A cache is used to keep local copies of frequently accessed documents and thereby reduces the time connected to the network. By default, cache simulation is enabled. If you disable this option, all Vusers emulate a browser with no cache available. Note: Unlike a regular browser cache, the cache assigned to a Vuser simulates storage of graphic files only. The cache does not store text or other page contents associated with the webpage. Every Vuser has its own cache every Vuser must save and retrieve images from the cache. When the cache is disabled, HP LoadRunner still downloads each page image only once. 5. Simulate a new user for each iteration: Instructs VuGen to reset all HTTP contexts between iterations to their states at the end of the init section. This setting allows the Vuser to more accurately emulate a new user beginning a browsing session. It resets all cookies, closes all keep-alive connections, clears the cache, and resets the user names and passwords (enabled by default). 6. Schedule by scenario: As the number of users increases, there may be a need to adjust the rampup. Duration should be for one hour on most tests with the exception of stress tests. 7. Schedule by group: Allows testers to stagger the scenarios by group, meaning scenario B can start 10 minutes after scenario A. Ramp-up is how frequently a number of Vusers will log into the system per scenario. Duration is how long a particular scenario group will execute after ramp-up. Testers may manipulate duration to cease testing at a similar time. Scheduling options Sometimes it may be necessary to set up tests to run at later times. This can all be done in the HP LoadRunner controller as well. To set up a test to run at a later time, first set up the test as it should be run. For example, make the run-time setting adjustments on the design screen (just as it would be done with a test that wasn t scheduled). Then select Scenario/Start Time from the menu bar. Enter the amount of time the test should be delayed (for example, if it is 5:00 p.m. now and the test should be run at 7:00 p.m., enter two hours for the delay). 8

9 Figure 1. Setting in Network Neighborhood (On the Load Generator Machine). Tips for data handling Using virtual tables Occasionally, scripts can be used to generate the data that will be required to run other scripts. In these situations, it may be necessary to use virtual tables to accomplish this task (which requires minimal altering to the original script). The HP Virtual Table provides the ability to send information from one script to a virtual table, in order to retrieve the information from the virtual table for the other script. Example: Unzip the package under C:\Program Files and copy vtclient.dll, vtserver.dll and vts2.sh to the appropriate folders. Use regsvr32 and make sure the following files exist: Regsvr32 C:\WINNT\system32\msflxgrd.ocx Regsvr32 C:\WINNT\system32\vtsctls.ocx Make sure that C:\WINNT\system32\COMCTL32.DLL exists. Install the virtual table on the controller and the machine that will be used as the Virtual Table Server. Copy vtclient.dll and vtserver.dll to the lr/bin: folder, then locate the include folder (lr/include:) and insert vts2.h (all found in the product folder on the hard drive). IP spoofing for client with same Netmask IP class and network IP spoofing is used when a unique user IP address is required to identify unique data. 1. Start Menu > LoadRunner > Tools > IP Wizard 2. Check create new settings 3. Enter Web Server IP (i.e ) 4. Enter from assigned IP number addresses (i.e ), number of IPs to add (i.e. 250), and check verify IPs not in use 5. Click Finish. A pop up with where the bat files are located will appear (nt and unix), e.g. C:\temp\unix_routing.sh and C:\temp\nt_routing.bat 6. Check reboot VERIFY IP ADDRESSES ADDED 1. Start Menu > Run > CMD > enter ipconfig. All available IP addresses should be displayed Settings in the Controller: RUN-TIME SETTING RUN AS PROCESS (IN GENERAL TAB) IN THE CONTROLLER TOOLBAR SCENARIOS TAB, ENABLE IP SPOOFER IN THE CONTROLLER TOOLBAR TOOLS TAB, CHECK EXPERT MODE Setting in Network Neighborhood (On the Load Generator Machine): See Figure 1. Also, verify that all of the new IP addresses are on the list in Network Neighborhood / Properties /Protocol/ Advanced. Verify that Wins address and DNS are completed with the correct IP addresses. Note: The IP SPOOFING ADD ROUTE BAT file needs to be run on the target server in order for IP SPOOFING to work. In Script: CODE TO VERIFY IP SPOOF: lr_message ( IP ADDRESS _ %s, lr_get_vuser_ip()); Adding IP Addresses: GO TO IP WIZARD..FOLLOW INSTRUCTIONS AND ADD IP 9

10 Parse string based on value Use the code below to parse a string and use the data in subsequent steps. The string Wisham can be separated into multiple variables such as last name and ssn. Randomize using switch and case Use the switch command to vary transactions. If you are testing multiple reports with significantly different web URLs but all other steps are the same, the user can use the switch statement. char *string; char *first_x; // LASTNAME=Wisham string = lr_eval_string( {LASTNAME} ); //Save value in LASTNAME // lr_output_message( LastName: %s, string); first_x = (char *)strchr(string, 3 ); // Find first occurrence of 3 and save values after // lr_output_message( SSN: %s, first_x); lr_save_var( first_x, 9, 0, SSN ); // Save 9 characters after 3 encountered // lr_output_message( SSN: %s, lr_eval_string( {SSN} )); int num; num = ((rand () % 4 )); switch (num) { case 0: lr_think_time(300); lr_start_transaction( FS_QRY_06_ZAM_ACQ_VERIFY_SEARCH ); : : break; case 1: lr_think_time(300); lr_start_transaction( FS_QRY_06_ZLT_UDP_VERIFY_SEARCH ); : : break; default: lr_output_message( Random Number selected was not between 0 and 1 ); } 10

11 Tips for test execution and scheduling HP LoadRunner timeout errors Use the following steps to prevent HP LoadRunner timeout errors if you need less than 1,000 seconds for a function such as save data to complete: 1. From the Controller go to Run-time Settings > Browser Emulations tab > Advanced 2. Change default timeout settings (should be three) to be a number less than or equal to Click OK 4. Go to Tools > Options > Timeout tab 5. Change Load Generator and VU timeout parameters to be a number less than or equal to Click OK Use the following steps to prevent HP LoadRunner timeout errors if you need greater than 1,000 seconds for a function such as upload to complete: 1. Modify LoadRunner\template\qtweb\default.cfg. Insert the following: [web] ReceiveTimeout= Modify LoadRunner\dat\WebAdvancedOpt.txt. Change: [LIST] 1= T_COMBOBOX;Web;EnableIPCache;DNS caching;save a host s IP address to a cache to conserve time in subsequent calls to the host.;1;yes;<yes;no> 2= T_COMBOBOX;Web;HTTPVer;HTTP version;indicates the version of HTTP used by your application. Select version 1.0 or 1.1.;1;1.1;<1.0;1.1> 3= T_COMBOBOX;Web;KeepAlive;Keep-Alive HTTP connections;allow persistent HTTP connections to enable multiple requests to be sent over the same TCP connection.;1;yes;<yes;no> 4= T_EDIT_NUM;Web;MaxConnections;Concurent connections limit;sets the maximum number of simultaneous keep-alive connections that a Vuser can maintain during script execution;1;4;<0;10> 5= T_EDIT_NUM;Web;ConnectTimeout;Connect timeout (seconds);the maximum amount of time in seconds, that a Vuser waits to connect to a server, before issuing an error.;1;120;<0;10000> 6= T_EDIT_NUM;Web;ReceiveTimeout;Receive timeout (seconds);the maximum amount of time in seconds, that a Vuser waits to receive information from a server, before issuing an error.;1;120;<0;10000> 7= T_EDIT_NUM;Web;NetBufSize;Network buffer size; Sets the maximum number of the network buffer that may be used by the Vuser. The default is bytes.;1;12288;<0;100000> 8= T_COMBOBOX;Web;CacheAlwaysCheckForNewerPages;Cach e-emulate always check for newer pages;;1;yes;<yes;no> 9= T_EDIT_NUM;Web;PageDownloadTimeout;Page download timeout(seconds);;1;120;<0;32000> 3. Use steps 1-6 above to change the Controller GUI parameters. Extended logging code This code turns tracing on to replay a specify part of a script in extended mode without replaying the entire script in extended mode. This reduces the playback time substantially. // TURN FULL TRACE ON lr_set_debug_message(lr_msg_class_extended_log LR_MSG_CLASS_FULL_TRACE LR_MSG_CLASS_RESULT_DATA LR_MSG_CLASS_PARAMETERS, LR_MSG_ON); web_reg_save_param( EMPLID, LB/IC= PSEDITBOX_DISPONLY >, RB/IC=<, Ord=4, Search=body, LAST); // TURN FULL TRACE OF lr_set_debug_message(lr_msg_class_extended_log LR_MSG_CLASS_FULL_TRACE LR_MSG_CLASS_RESULT_DATA LR_MSG_CLASS_PARAMETERS, LR_MSG_OFF); 11

12 For more information on HP LoadRunner or other HP products or services, visit: Copyright 2007 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. 4AA1-2107ENW, May 2007

APPLICATION DELIVERY MERCURY CUSTOMER PERSPECTIVE WHITE PAPER: MERCURY LOADRUNNER TIPS AND TRICKS FOR CONFIGURATION, SCRIPTING, AND EXECUTION

APPLICATION DELIVERY MERCURY CUSTOMER PERSPECTIVE WHITE PAPER: MERCURY LOADRUNNER TIPS AND TRICKS FOR CONFIGURATION, SCRIPTING, AND EXECUTION MERCURY CUSTOMER PERSPECTIVE WHITE PAPER: MERCURY LOADRUNNER TIPS AND TRICKS FOR CONFIGURATION, SCRIPTING, AND EXECUTION ABSTRACT This QuickStart Guide provides tips and tricks for Mercury LoadRunner configuration,

More information

Fundamentals of LoadRunner 9.0 (2 Days)

Fundamentals of LoadRunner 9.0 (2 Days) Fundamentals of LoadRunner 9.0 (2 Days) Quality assurance engineers New users of LoadRunner who need to load test their applications and/or executives who will be involved in any part of load testing.

More information

HP LoadRunner. Software Version: 11.00. Ajax TruClient Tips & Tricks

HP LoadRunner. Software Version: 11.00. Ajax TruClient Tips & Tricks HP LoadRunner Software Version: 11.00 Ajax TruClient Tips & Tricks Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and

More information

HP LoadRunner. Software Version: 12.50. LoadRunner Tutorial

HP LoadRunner. Software Version: 12.50. LoadRunner Tutorial HP LoadRunner Software Version: 12.50 LoadRunner Tutorial Document Release Date: August 2015 Software Release Date: August 2015 Legal Notices Warranty The only warranties for HP products and services are

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

HP LoadRunner: Essentials 11

HP LoadRunner: Essentials 11 coursemonster.com/uk HP LoadRunner: Essentials 11 View training dates» Overview This five-day course introduces students to LoadRunner 11. The course covers topics for the VuGen, the Controller, and Analysis

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Applications Notes Best Practices for Using SolarWinds' ORION to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

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

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

PERFORMANCE TESTING. New Batches Info. We are ready to serve Latest Testing Trends, Are you ready to learn.?? START DATE : TIMINGS : DURATION :

PERFORMANCE TESTING. New Batches Info. We are ready to serve Latest Testing Trends, Are you ready to learn.?? START DATE : TIMINGS : DURATION : PERFORMANCE TESTING We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : Performance

More information

Citrix EdgeSight for Load Testing User s Guide. Citrx EdgeSight for Load Testing 2.7

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

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip

How To Test Your Web Site On Wapt On A Pc Or Mac Or Mac (Or Mac) On A Mac Or Ipad Or Ipa (Or Ipa) On Pc Or Ipam (Or Pc Or Pc) On An Ip Load testing with WAPT: 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. A brief insight is provided

More information

How To Test A Web Server

How To Test A Web Server Performance and Load Testing Part 1 Performance & Load Testing Basics Performance & Load Testing Basics Introduction to Performance Testing Difference between Performance, Load and Stress Testing Why Performance

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

An Introduction to LoadRunner A Powerful Performance Testing Tool by HP. An Introduction to LoadRunner. A Powerful Performance Testing Tool by HP

An Introduction to LoadRunner A Powerful Performance Testing Tool by HP. An Introduction to LoadRunner. A Powerful Performance Testing Tool by HP An Introduction to LoadRunner A Powerful Performance Testing Tool by HP Index Sr. Title Page 1 Introduction 2 2 LoadRunner Testing Process 4 3 Load test Planning 5 4 LoadRunner Controller at a Glance 7

More information

A closer look at HP LoadRunner software

A closer look at HP LoadRunner software Technical white paper A closer look at HP LoadRunner software Table of contents Sizing up the system 2 The limits of manual testing 2 A new take on testing: the HP LoadRunner solution 3 The HP LoadRunner

More information

RTI v3.3 Lightweight Deep Diagnostics for LoadRunner

RTI v3.3 Lightweight Deep Diagnostics for LoadRunner RTI v3.3 Lightweight Deep Diagnostics for LoadRunner Monitoring Performance of LoadRunner Transactions End-to-End This quick start guide is intended to get you up-and-running quickly analyzing Web Performance

More information

Business white paper. Load factor: performance testing for Web applications

Business white paper. Load factor: performance testing for Web applications Business white paper Load factor: performance testing for Web applications Table of contents 3 A look at load testing 3 In the pursuit of predictability 4 Put your apps through the paces 5 Traits of an

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.25 BPM Monitoring Solutions - Best Practices Document Release Date: January 2015 Software Release Date: January 2015 Legal Notices Warranty The only warranties

More information

An introduction to load testing for Web applications. Business white paper

An introduction to load testing for Web applications. Business white paper An introduction to load testing for Web applications Business white paper Table of contents Introduction...3 Grow your business through online exposure...3 Application performance testing prior to going

More information

HP ALM. Software Version: 12.50. Tutorial

HP ALM. Software Version: 12.50. Tutorial HP ALM Software Version: 12.50 Tutorial Document Release Date: December 2015 Software Release Date: December 2015 Legal Notices Warranty The only warranties for HP products and services are set forth in

More information

PC120 ALM Performance Center 11.5 Essentials

PC120 ALM Performance Center 11.5 Essentials PC120 ALM Performance Center 11.5 Essentials Instructor-Led Workshop OVERVIEW This five-day course introduces students to ALM Performance Center 11.5 and the Virtual User Generator (VuGen) application,

More information

Table of contents. Performance testing in Agile environments. Deliver quality software in less time. Business white paper

Table of contents. Performance testing in Agile environments. Deliver quality software in less time. Business white paper Performance testing in Agile environments Deliver quality software in less time Business white paper Table of contents Executive summary... 2 Why Agile? And, why now?... 2 Incorporating performance testing

More information

Business Application Services Testing

Business Application Services Testing Business Application Services Testing Curriculum Structure Course name Duration(days) Express 2 Testing Concept and methodologies 3 Introduction to Performance Testing 3 Web Testing 2 QTP 5 SQL 5 Load

More information

HP Software & Solutions Partner Central and The Learning Center

HP Software & Solutions Partner Central and The Learning Center HP Software & Solutions Partner Central and The Learning Center Overview and access instructions for partners Table of contents Partner Central for HP Software & Solutions overview... 2 Partner Central

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

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

Web Application Testing. Web Performance Testing

Web Application Testing. Web Performance Testing Web Application Testing Web Performance Testing Objectives of Performance Testing Evaluate runtime compliance to performance requirements Check different properties such as throughput (bits/sec, packets/sec)

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

AppLoader 7.7. Load Testing On Windows Azure

AppLoader 7.7. Load Testing On Windows Azure AppLoader 7.7 Load Testing On Windows Azure CONTENTS INTRODUCTION... 3 PURPOSE... 3 CREATE A WINDOWS AZURE ACCOUNT... 3 CREATE A LOAD TESTING ENVIRONMENT ON THE CLOUD... 6 CONFIGURE A WINDOWS AZURE STORAGE

More information

Connectivity Pack for Microsoft Guide

Connectivity Pack for Microsoft Guide HP Vertica Analytic Database Software Version: 7.0.x Document Release Date: 2/20/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Business Availability Center Integration Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only

More information

LR120 LoadRunner 12.0 Essentials

LR120 LoadRunner 12.0 Essentials LR120 LoadRunner 12.0 Essentials Overview This five-day course introduces students to HP LoadRunner 12.0, including the usage of Virtual User Generator (VuGen), Controller and Analysis tools. This course

More information

Automated testing and continuous integration

Automated testing and continuous integration Technical white paper Automated testing and continuous integration Build and test your software at the same time Table of contents Introduction 2 Who should read this document? 2 Build managers 2 Developers

More information

HPE PC120 ALM Performance Center 12.0 Essentials

HPE PC120 ALM Performance Center 12.0 Essentials HPE PC120 ALM Performance Center 12.0 Essentials Overview This five-day course introduces students to ALM Performance Center 12.0 and the Virtual User Generator (VuGen) application, which is a scripting

More information

How to configure MAC authentication on a ProCurve switch

How to configure MAC authentication on a ProCurve switch An HP ProCurve Networking Application Note How to configure MAC authentication on a ProCurve switch Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. Configuring the ProCurve

More information

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE

HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE You can read the recommendations in the user guide, the technical guide or the installation guide for HP EMAIL ARCHIVING SOFTWARE FOR EXCHANGE. You'll find the answers to all your questions on the HP EMAIL

More information

Tutorial: Load Testing with CLIF

Tutorial: Load Testing with CLIF Tutorial: Load Testing with CLIF Bruno Dillenseger, Orange Labs Learning the basic concepts and manipulation of the CLIF load testing platform. Focus on the Eclipse-based GUI. Menu Introduction about Load

More information

HP Operations Smart Plug-in for Virtualization Infrastructure

HP Operations Smart Plug-in for Virtualization Infrastructure HP Operations Smart Plug-in for Virtualization Infrastructure for HP Operations Manager for Windows Software Version: 1.00 Deployment and Reference Guide Document Release Date: October 2008 Software Release

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

HP Connection Manager. Administrator's Guide

HP Connection Manager. Administrator's Guide HP Connection Manager Administrator's Guide Copyright 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Microsoft, Windows, and Windows

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 Citrix XenServer Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty The only warranties

More information

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide

HP Service Manager. Software Version: 9.34 For the supported Windows and UNIX operating systems. Processes and Best Practices Guide HP Service Manager Software Version: 9.34 For the supported Windows and UNIX operating systems Processes and Best Practices Guide Document Release Date: July 2014 Software Release Date: July 2014 Legal

More information

Using Internet or Windows Explorer to Upload Your Site

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

More information

HP essential knowledge series: an introduction to load testing for web applications. White paper

HP essential knowledge series: an introduction to load testing for web applications. White paper HP essential knowledge series: an introduction to load testing for web applications White paper Table of contents Introduction.................................................................... 3 Grow

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Request Management help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Request Management help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP JETADVANTAGE SECURITY MANAGER. Adding and Tracking Devices

HP JETADVANTAGE SECURITY MANAGER. Adding and Tracking Devices HP JETADVANTAGE SECURITY MANAGER Adding and Tracking Devices CONTENTS Overview... 2 General Description... 2 Detailed Description... 4 Resolve IP Address to Hostname... 4 Resolve Hostname/DNS Alias to

More information

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer Survey Utility HP Industry Standard Servers June 2004 HP Insight Diagnostics Online Edition Technical White Paper Featuring Survey Utility and IML Viewer Table of Contents Abstract Executive Summary 3

More information

HP Business Availability Center

HP Business Availability Center HP Business Availability Center for the Windows and Solaris operating systems Software Version: 8.05 Business Process Monitor Administration Document Release Date:September 2010 Software Release Date:

More information

Introducing the BIG-IP and SharePoint Portal Server 2003 configuration

Introducing the BIG-IP and SharePoint Portal Server 2003 configuration Deployment Guide Deploying Microsoft SharePoint Portal Server 2003 and the F5 BIG-IP System Introducing the BIG-IP and SharePoint Portal Server 2003 configuration F5 and Microsoft have collaborated on

More information

HP Web Jetadmin Database Connector Plug-in reference manual

HP Web Jetadmin Database Connector Plug-in reference manual HP Web Jetadmin Database Connector Plug-in reference manual Copyright notice 2004 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation or translation without prior written permission

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Best Practices for Using PRTG Traffic Grapher to Monitor SANiQ Performance Legal Notices Warranty The only warranties for HP products and services

More information

SOFTWARE TESTING TRAINING COURSES CONTENTS

SOFTWARE TESTING TRAINING COURSES CONTENTS SOFTWARE TESTING TRAINING COURSES CONTENTS 1 Unit I Description Objectves Duration Contents Software Testing Fundamentals and Best Practices This training course will give basic understanding on software

More information

Virtual CD v10. Network Management Server Manual. H+H Software GmbH

Virtual CD v10. Network Management Server Manual. H+H Software GmbH Virtual CD v10 Network Management Server Manual H+H Software GmbH Table of Contents Table of Contents Introduction 1 Legal Notices... 2 What Virtual CD NMS can do for you... 3 New Features in Virtual

More information

SSL VPN Technology White Paper

SSL VPN Technology White Paper SSL VPN Technology White Paper Keywords: SSL VPN, HTTPS, Web access, TCP access, IP access Abstract: SSL VPN is an emerging VPN technology based on HTTPS. This document describes its implementation and

More information

Open Source and Commercial Performance Testing Tools

Open Source and Commercial Performance Testing Tools Open Source and Commercial Performance Testing Tools Palla Vinod Kumar Accenture Delivery Center for Technology in India Accenture, its logo, and High Performance Delivered are trademarks of Accenture.

More information

LoadRunner Tutorial. Using Correlation to Troubleshoot Errors When Executing LoadRunner Scripts

LoadRunner Tutorial. Using Correlation to Troubleshoot Errors When Executing LoadRunner Scripts LoadRunner Tutorial Using Correlation to Troubleshoot Errors When Executing LoadRunner Scripts 2 Use correlation in LoadRunner to solve the user login problem. After you ve done all your homework and determined

More information

Performance Testing Process A Whitepaper

Performance Testing Process A Whitepaper Process A Whitepaper Copyright 2006. Technologies Pvt. Ltd. All Rights Reserved. is a registered trademark of, Inc. All other trademarks are owned by the respective owners. Proprietary Table of Contents

More information

HP OpenView AssetCenter

HP OpenView AssetCenter HP OpenView AssetCenter Software version: 5.0 Integration with software distribution tools Build number: 50 Legal Notices Warranty The only warranties for HP products and services are set forth in the

More information

HP Priority Services. Priority Access

HP Priority Services. Priority Access HP Priority Services Online Case Management tool Web-based submission and tracking solutions. The HP Support Case Manager (SCM) provides 24/7 access and enables users to submit and manage support cases

More information

Testhouse Training Portfolio

Testhouse Training Portfolio Testhouse Training Portfolio TABLE OF CONTENTS Table of Contents... 1 HP LoadRunner 4 Days... 2 ALM Quality Center 11-2 Days... 7 HP QTP Training Course 2 Days... 10 QTP/ALM Intensive Training Course 4

More information

HP CloudSystem Enterprise

HP CloudSystem Enterprise HP CloudSystem Enterprise F5 BIG-IP and Apache Load Balancing Reference Implementation Technical white paper Table of contents Introduction... 2 Background assumptions... 2 Overview... 2 Process steps...

More information

SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM

SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM SETTING UP ACTIVE DIRECTORY (AD) ON WINDOWS 2008 FOR DOCUMENTUM @ EROOM Abstract This paper explains how to setup Active directory service on windows server 2008.This guide also explains about how to install

More information

Event Manager. LANDesk Service Desk

Event Manager. LANDesk Service Desk Event Manager LANDesk Service Desk LANDESK SERVICE DESK EVENT MANAGER GUIDE This document contains information that is the proprietary and confidential property of LANDesk Software, Inc. and/or its affiliated

More information

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Executive summary... 2 Audience... 2 Architecture... 3 Prerequisite... 4 Deploying AT servers... 5 Configuring

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management

Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management IBM Tivoli Software Maximo Asset Management Installing and Configuring DB2 10, WebSphere Application Server v8 & Maximo Asset Management Document version 1.0 Rick McGovern Staff Software Engineer IBM Maximo

More information

How to Configure Web Authentication on a ProCurve Switch

How to Configure Web Authentication on a ProCurve Switch An HP ProCurve Networking Application Note How to Configure Web Authentication on a ProCurve Switch Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network diagram... 2 4. Configuring the ProCurve

More information

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services

Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Deployment Guide Deploying the BIG-IP System with Microsoft Windows Server 2003 Terminal Services Deploying the BIG-IP LTM system and Microsoft Windows Server 2003 Terminal Services Welcome to the BIG-IP

More information

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help 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,

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

HP Load Balancing Module

HP Load Balancing Module HP Load Balancing Module Load Balancing Configuration Guide Part number: 5998-2685 Document version: 6PW101-20120217 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P.

More information

HP LoadRunner. Tutorial. Software Version: 12.00. Document Release Date: March 2014

HP LoadRunner. Tutorial. Software Version: 12.00. Document Release Date: March 2014 HP LoadRunner Software Version: 12.00 Tutorial Document Release Date: March 2014 Software Release Date: March 2014 Contents Tutorial 1 Contents 2 Welcome to the HP LoadRunner Tutorial 8 What will you learn

More information

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox

How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox How to use Data Protector 6.0 or 6.10 with Exchange Recovery Storage Groups to restore a single mailbox Introduction... 3 Exchange 2003... 4 Creating a Recovery Storage Group... 4 Restoring the Information

More information

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g

DEPLOYMENT GUIDE Version 1.1. Deploying F5 with Oracle Application Server 10g DEPLOYMENT GUIDE Version 1.1 Deploying F5 with Oracle Application Server 10g Table of Contents Table of Contents Introducing the F5 and Oracle 10g configuration Prerequisites and configuration notes...1-1

More information

Citrix Server: Citrix Server work as a remote connection by users

Citrix Server: Citrix Server work as a remote connection by users PERFORMANCETESTING FOR CITRIXUSINGLOADRUNNER BESTPRACTICES Presented By Rupesh Garg & Saket Bihari Wipro Technologies. ABSTRACT HP s industry standard load testing product Load Runner has been customized

More information

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream

User Manual. Onsight Management Suite Version 5.1. Another Innovation by Librestream User Manual Onsight Management Suite Version 5.1 Another Innovation by Librestream Doc #: 400075-06 May 2012 Information in this document is subject to change without notice. Reproduction in any manner

More information

Cisco UCS Director Payment Gateway Integration Guide, Release 4.1

Cisco UCS Director Payment Gateway Integration Guide, Release 4.1 First Published: April 16, 2014 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883

More information

HP Business Service Management

HP Business Service Management HP Business Service Management Software Version: 9.26 Windows operating system RUM for Citrix - Best Practices Document Release Date: September 2015 Software Release Date: September 2015 RUM for Citrix

More information

How To Test On The Dsms Application

How To Test On The Dsms Application Performance Test Summary Report Skills Development Management System December 2014 Performance Test report submitted to National Skill Development Corporation Version Date Name Summary of Changes 1.0 22/12/2014

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

Using HP System Software Manager for the mass deployment of software updates to client PCs

Using HP System Software Manager for the mass deployment of software updates to client PCs Using HP System Software Manager for the mass deployment of software updates to client PCs Introduction... 2 HP manageability solutions... 2 SSM overview... 3 Software updates... 3 Why not SSM-enabled?...

More information

WEBCONNECT INSTALLATION GUIDE. Version 1.96

WEBCONNECT INSTALLATION GUIDE. Version 1.96 WEBCONNECT INSTALLATION GUIDE Version 1.96 Copyright 1981-2015 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop Business

More information

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools

HP Asset Manager. Software version: 5.20. Integration with software distribution and configuration management tools HP Asset Manager Software version: 5.20 Integration with software distribution and configuration management tools Document Release Date: 01 October 2009 Software Release Date: October 2009 Legal Notices

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Project and Portfolio Management Integration Guide Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

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

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 9.00 HP Operations Manager Incent Web Service Integration Gue Document Release Date: June 2010 Software Release Date: June 2010 Legal Notices Warranty

More information

USB Secure Management for ProCurve Switches

USB Secure Management for ProCurve Switches ProCurve Networking USB Secure Management for ProCurve Switches Introduction... 2 A simple solution with multiple uses... 2 Staged deployment... 2 Remote deployment or upgrade... 3 Troubleshooting... 3

More information

Deploying the BIG-IP System v10 with Oracle Application Server 10g R2

Deploying the BIG-IP System v10 with Oracle Application Server 10g R2 DEPLOYMENT GUIDE Deploying the BIG-IP System v10 with Oracle Application Server 10g R2 Version 1.1 Table of Contents Table of Contents Deploying the BIG-IP system v10 with Oracle s Application Server 10g

More information

IBM RATIONAL PERFORMANCE TESTER

IBM RATIONAL PERFORMANCE TESTER IBM RATIONAL PERFORMANCE TESTER Today, a major portion of newly developed enterprise applications is based on Internet connectivity of a geographically distributed work force that all need on-line access

More information

DEPLOYMENT GUIDE Version 1.2. Deploying F5 with Oracle E-Business Suite 12

DEPLOYMENT GUIDE Version 1.2. Deploying F5 with Oracle E-Business Suite 12 DEPLOYMENT GUIDE Version 1.2 Deploying F5 with Oracle E-Business Suite 12 Table of Contents Table of Contents Introducing the BIG-IP LTM Oracle E-Business Suite 12 configuration Prerequisites and configuration

More information

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training

LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training LoadRunner and Performance Center v11.52 Technical Awareness Webinar Training Tony Wong 1 Copyright Copyright 2012 2012 Hewlett-Packard Development Development Company, Company, L.P. The L.P. information

More information

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System

Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System DEPLOYMENT GUIDE Deploying the BIG-IP LTM with the Cacti Open Source Network Monitoring System Version 1.0 Deploying F5 with Cacti Open Source Network Monitoring System Welcome to the F5 and Cacti deployment

More information

Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014

Radia Cloud. User Guide. For the Windows operating systems Software Version: 9.10. Document Release Date: June 2014 Radia Cloud For the Windows operating systems Software Version: 9.10 User Guide Document Release Date: June 2014 Software Release Date: June 2014 Legal Notices Warranty The only warranties for products

More information

Technical Brief for Windows Home Server Remote Access

Technical Brief for Windows Home Server Remote Access Technical Brief for Windows Home Server Remote Access Microsoft Corporation Published: October, 2008 Version: 1.1 Abstract This Technical Brief provides an in-depth look at the features and functionality

More information

Gómez Script Recorder

Gómez Script Recorder Gómez Script Recorder GETTING STARTED October 2003 Overview The Gómez Performance Network (GPN) measures Web page and transaction performance globally in real-time, enabling organizations to continuously

More information

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report

Xerox Multifunction Devices. Verify Device Settings via the Configuration Report Xerox Multifunction Devices Customer Tips March 15, 2007 This document applies to these Xerox products: X WC 4150 X WCP 32/40 X WCP 35/45/55 X WCP 65/75/90 X WCP 165/175 X WCP 232/238 X WCP 245/255 X WCP

More information