Re: [OpenSTA-users] Can a script wait until the end of a HTTPBinaryfile download completes before c
Brought to you by:
dansut
|
From: Bernie V. <Ber...@iP...> - 2007-05-23 12:17:15
|
Tam, >I tried the LOAD RESPONSE_INFO only because I thought that way I could >see how much of the body I was getting. I could only get (log) the >first 5 bytes of the file. But the 64Kbytes limitation might mean that I >was shooting myself in the foot with that idea. I will try not using >the LOAD RESPONSE_INFO. The largest string variable in your version of OpenSTA is 64K bytes. If you do a load response_info body into a variable, the entire download completes but the output is truncated to the size of the string variable. Both the load response_info and the synchronize commands cause the script to pause until the request completes. Since you were at one point using both, removing one should have no effect on the pacing of your script. As I wrote before, I suspect the file is not being returned and examining the status of the completed request should tell you why. -Bernie www.iPerformax.com |