How to access different files from formdb in a single TCP by Avalanche?
Knowledge Base - FAQ
How to access different files from formdb in a single TCP by Avalanche?
Here is an example to access different files from the same server within 1 TCP connections, the files are stored in Avalanche formdb.
(1) Form_0001
a.gif
b.gif
c.gif
d.gif
e.gif
f.gif
g.gif
(2) Action
LOOP aaa start count=7
ASSIGN VARIABLE
1 get http://192.168.1.1/ myfile1>
LOOP aaa stop
(3) Enable HTTP 1.1 persistence, and make sure the maximum requests per connection is larger than 7.
(4) The reult would be like
syn...
get /a.gif
get /b.gif
...
get /g.gif
fin...