Version 9.1 by Pascal Robert on 2007/09/03 21:21

Hide last authors
Pascal Robert 3.1 1 It is possible to use the JavaPlaybackManager to load test your WO apps, but you will likely be frustrated by bugs and lack of features. A much more robust and feature-full utility is Apache Jakarta's [[JMeter>>http://jakarta.apache.org/jmeter/]]
2
3 WebObjects, being less well-known, is not fully supported out-of-the-box, so we will need a bit of help with:
4
5 * URL-stored session IDs
6 * instance IDs
7
8 Happily, these two critical pieces of information can be retrieved in a single step by adding a Regular Expression Extractor to the first HTTP Request node that hits your application. Use a regular expression like this:
9
Pascal Robert 9.1 10 {{code}}
Pascal Robert 3.1 11
Pascal Robert 9.1 12 /cgi-bin/WebObjects/MyApp.woa/([-0-9]+)/wo/([^/]+)
Pascal Robert 3.1 13
Pascal Robert 9.1 14 {{/code}}
Pascal Robert 3.1 15
16 And a template like this:
17
Pascal Robert 9.1 18 {{code}}
Pascal Robert 3.1 19
Pascal Robert 9.1 20 $1$$2$
Pascal Robert 3.1 21
Pascal Robert 9.1 22 {{/code}}
Pascal Robert 3.1 23
Pascal Robert 9.1 24 Set Match No. to 1 and Default Value to "" (blank). Then, set the Reference Name to whatever name you want to use, for example, "sessionid". The instance number will then be available to future test steps as $
25 sessionid//g1 and the session ID as $sessionid//g2. Your second HTTP Request, for example, might have a URL of:
Pascal Robert 3.1 26
Pascal Robert 9.1 27 {{code}}
Pascal Robert 3.1 28
Pascal Robert 9.1 29 /cgi-bin/WebObjects/MyApp.woa/${sessionid_g1}/wo/${sessionid_g2}/0.0.13.3
Pascal Robert 3.1 30
Pascal Robert 9.1 31 {{/code}}