Last modified by Pascal Robert on 2012/03/09 15:20

From version 10.1
edited by Pascal Robert
on 2012/03/09 15:20
Change comment: There is no comment for this version
To version 11.1
edited by Pascal Robert
on 2012/03/09 15:20
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,8 +1,8 @@
1 1  {{info}}
2 -A JMeter presentation was made at WOWODC 2010, you can view it at [wocommunity.org|http://www.wocommunity.org/podcasts/wowodc/2010/WOWODC2010JMeter.mov]
2 +A JMeter presentation was made at WOWODC 2010, you can view it at [[wocommunity.org>>url:http://www.wocommunity.org/podcasts/wowodc/2010/WOWODC2010JMeter.mov||shape="rect"]]
3 3  {{/info}}
4 4  
5 -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/]]
5 +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>>url:http://jakarta.apache.org/jmeter/||shape="rect"]]
6 6  
7 7  WebObjects, being less well-known, is not fully supported out-of-the-box, so we will need a bit of help with:
8 8  
... ... @@ -9,7 +9,7 @@
9 9  * URL-stored session IDs
10 10  * instance IDs
11 11  
12 -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:
12 +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:
13 13  
14 14  {{code}}
15 15  
... ... @@ -25,8 +25,8 @@
25 25  
26 26  {{/code}}
27 27  
28 -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 $
29 -sessionid//g1 and the session ID as $sessionid//g2. Your second HTTP Request, for example, might have a URL of:
28 +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 $
29 + {sessionid_g1} and the session ID as ${sessionid_g2}. Your second HTTP Request, for example, might have a URL of:
30 30  
31 31  {{code}}
32 32