1<testcase> 2<info> 3<keywords> 4HTTP 5HTTP GET 6</keywords> 7</info> 8 9# Server-side 10<reply> 11<data nocheck="yes"> 12HTTP/1.1 200 OK 13Server: thebest/1.0 14Content-Type: text/plain 15Content-Length: 6 16 17first 18</data> 19<data1 nocheck="yes"> 20HTTP/1.1 200 OK 21Server: thebest/1.0 22Content-Type: text/plain 23Content-Length: 7 24 25second 26</data1> 27</reply> 28 29# Client-side 30<client> 31<server> 32http 33</server> 34 <name> 35HTTP --dump-header - with two URLs 36 </name> 37 <command> 38http://%HOSTIP:%HTTPPORT/want/1066 http://%HOSTIP:%HTTPPORT/want/10660001 --dump-header - 39</command> 40</client> 41 42# Verify data after the test has been "shot" 43<verify> 44<strip> 45^User-Agent:.* 46</strip> 47<protocol> 48GET /want/1066 HTTP/1.1 49Host: %HOSTIP:%HTTPPORT 50Accept: */* 51 52GET /want/10660001 HTTP/1.1 53Host: %HOSTIP:%HTTPPORT 54Accept: */* 55 56</protocol> 57<stdout> 58HTTP/1.1 200 OK 59HTTP/1.1 200 OK 60Server: thebest/1.0 61Server: thebest/1.0 62Content-Type: text/plain 63Content-Type: text/plain 64Content-Length: 6 65Content-Length: 6 66 67 68first 69HTTP/1.1 200 OK 70HTTP/1.1 200 OK 71Server: thebest/1.0 72Server: thebest/1.0 73Content-Type: text/plain 74Content-Type: text/plain 75Content-Length: 7 76Content-Length: 7 77 78 79second 80</stdout> 81</verify> 82</testcase> 83