1INCLUDE $TOP/test/config.htb
2
3CLIENT
4# "unix|windows"
5_SSL:TRACE
6_ERROR "The timeout specified has expired|Unknown error"
7_TIMEOUT 2000
8_REQ $YOUR_HOST SSL:$YOUR_PORT
9__POST /your/path/to/your/resource?your=params HTTP/1.1
10__Host: $YOUR_HOST
11__Content-Length: 10
12__
13_WAIT
14_END ERROR
15
16END
17
18SERVER SSL:$YOUR_PORT
19_RES
20_SLEEP 4000
21# send something back to distinguish error on windows
22__HTTP/1.1 200 OK
23__
24END
25