Webserver Stress Tool - User Manual

function and sub declaration

Declaration of functions nd subs are similar to basic. In functions to return function values, use implicited declared variable which has the same name of the function. Parameters by reference can also be used, using BYREF directive.

Some examples:

SUB HelloWord

  (**Some code here**)

END SUB

 

SUB UpcaseMessage(Msg)

  (**Some code here**)

END SUB

 

FUNCTION TodayAsString

  TodayAsString = DateToStr(Date)

END FUNCTION

 

FUNCTION Max(A,B)

  IF A>B THEN

    MAX = A

  ELSE

    MAX = B

  END IF

END FUNCTION

 

SUB SwapValues(BYREF A, B)

  DIM TEMP

  TEMP = A

  A = B

  B = TEMP

END SUB

 

What is Webserver Stress Tool?

Webserver Stress Tool is a powerful HTTP-client/server test application designed to pinpoint critical performance issues in your web site or web server that may prevent optimal experience for your site's visitors.

Learn more, Freeware Download

 

Webserver Stress Tool - Manual - Table of Content

Welcome

Introduction: Testing Basics

Webserver Stress Tool Features

Installation

Configuring Webserver Stress Tool

Performance Tips&Tricks

Running the Test

Reviewing Logfile Results

Analyzing Graphical Results

Creating Reports

Additional Features

Appendix

Software License and Contact Information

More Information about Paessler Products