IDependOn-Set: 1
IDependOn-Set: 4
IDependOn-Set: 54
IDependOn-Set: 8
LastModifiedSecs: 937683183
Parent: 1
SequenceNumber: 17
Title: Apache JMeter
Part: 0
Author-Set: jon@working-dogs.com
HideAttributions: 1
LastModifiedSecs: 926616219
Type: 
Lines: 1
Apache JMeter may be used to test server performance both on static and dynamic resources (files or CGI, Servlets, Perl scripts). It may well be used to simulate a heavy load on a server or network to test its strength or to analyse overall performance under different load types. You can use it to make a graphical analysis of your server or to test your server/script behavior under heavy concurrent load.
EndPart: 0
Part: 1
Author-Set: alistair@planetauction.net
HideAttributions: 1
LastModifiedSecs: 931795609
Type: 
Lines: 4
If you are behind a proxy server use the following to start JMeter:

java -DproxySet=true -DproxyHost 192.168.10.10 \
-DproxyPort 80 org.apache.jmeter.JMeter
EndPart: 1
Part: 2
Author-Set: wkw@acmetech.com
HideAttributions: 1
LastModifiedSecs: 937683183
Type: html
Lines: 18
<B>Compiling JMeter for MacOS X Server</B>
<P>
Apache JMeter won't run on OSX out of the box since OSX is still using the older Swing classes (not those under javax.swing). I did manage to get it compiled with a few edits last night, but it runs really lousy. The interface essentially goes dead after only a short time of running. Nevertheless, I'll pass along the details of getting it running for OSX.
<P>
Edit all the sources to replace occurrences of 'import javax.swing...' import 'com.sun.java.swing...'
Add 'import com.sun.java.swing.preview.*' to the files JMeter.java and visualizers/FileVisualizer.java.
<P>
At this point you can follow the directions given for compiling JMeter on the Apache JMeter installation page. Make sure you set up your CLASSPATH correctly for MacOS X. 
<P>
The following is the minimal CLASSPATH you'll need to set (I've broken it up to make it more readable here; you'll want to remove line breaks of course):<BR>
/System/Library/Java:
/System/Library/Frameworks/JavaVM.framework/Classes/classes.jar:
/System/Library/Frameworks/JavaVM.framework/Classes/swingall.jar:
/System/Library/Frameworks/JavaVM.framework/Classes/awt.jar
<P>
Start JMeter with (from the JMeter bin directory):
<P>
java -classpath $CLASSPATH:ApacheJMeter.jar org.apache.jmeter.JMeter
EndPart: 2
