1INCLUDE $TOP/test/config.htb
2
3AUTO_CLOSE on
4
5CLIENT
6_LOOP 2
7_REQ $YOUR_HOST $YOUR_PORT
8__GET /your/path/to/your/resource?your=params HTTP/1.1
9__Host: $YOUR_HOST
10__
11_WAIT
12_END LOOP
13END
14
15SERVER $YOUR_PORT
16_RES
17_WAIT
18__HTTP/1.1 200 OK
19__Content-Length: AUTO
20__Connection: close
21__
22__== OK ==
23_CLOSE
24
25_RES
26_WAIT
27__HTTP/1.1 200 OK
28__Content-Length: AUTO
29__Connection: close
30__
31__== OK ==
32
33END
34
35