vuser_init.c(26): Error -27728: Step download timeout (120 seconds) has expired when downloading non-resource(s)
vuser_init.c(26): Error -27728: Step download timeout (120 seconds) has expired when downloading non-resource(s)
是不是我访问的系统太慢的原因??作者: Zee 时间: 2007-5-24 10:07
你只抛出一个问题,是很难定位的。猜是猜不到的。
看看结果分析一下。作者: hbxtly 时间: 2007-5-24 10:10
我也遇到这个问题了,好象得从 脚本的 Setting 中修改默认超时时间.作者: andywang 时间: 2007-5-24 10:11
可能是网络超时 或者服务器那边的资源占用问题作者: Zee 时间: 2007-5-24 10:14
遇到问题,去具体的分析就会清楚了。猜测是一种思路,要证实猜测就要去实际动手。作者: huazi1026 时间: 2007-5-24 11:53 标题: 回复 #1 stevenhappy 的帖子 是不是 没有资源啊sdlkfj6作者: shanxi 时间: 2007-5-24 12:02
你先试试调时间:
For LoadRunner 7.6 or above:
1. Go to Run-Time settings
2. Go to Internet Protocol:Preferences -> Select 'Options' button
3. Increase the desired timeout
The maximum value you can set for these timeouts via the Run-Time setting is as follow:
Connect timeout -> 1000 seconds
Receive timeout -> 1000 seconds
Step download timeout -> 32000 seconds
There is another function, web_set_timeout() that can be added to the script to alter the connect and receive timeout.
Example:
web_set_timeout(CONNECT, "xx");
web_set_timeout(RECEIVE, "xx");
web_set_timeout(STEP, "xx");
Note: use web.set_timeout for Java or Javascript Vuser
This function allows you to change the timeout on all the web calls after the statement. It is also not tied to the limit as you would find in the Run-Time setting's UI. For more information about this function, please refer to LoadRunner's function help references.
______________________________________________________________