|
在录制的时候发现:vuser_init.c和Action.c里面各有一个字符串需要关联。
并且他们的左右边界竟然都一样(已经截取相当长了,发现还是一样的)
但毕竟是在两个不同的action里面,我分成:param2和param4
运行的时候提示了:
Action.c(45): Error -26377: No match found for the requested parameter "param4". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 256 bytes, use web_set_max_html_param_len to increase the parameter size [MsgId: MERR-26377]
Action.c(45): web_url("ccapp.trade.pageflow.bondbuyorder.flow") highest severity level was "ERROR", 46387 body bytes, 536 header bytes, 104 chunking overhead bytes [MsgId: MMSG-26387]
然后我在action.c中加入了:web_set_max_html_param_len("10000000");
发现不会报错了,在单笔测试的情况下,通过了。
然后我设置场景,进行压力测试,我发现,偶尔会出现:
Action.c(45): Error -26377: No match found for the requested parameter "param2". Check whether the requested boundaries exist in the response data. Also, if the data you want to save exceeds 10000000 bytes, use web_set_max_html_param_len to increase the parameter size, Snapshot Info [MSH 477 4]
很奇怪的提示,难道压力测试的时候,param2与param4串了?(因为param2只在登录的时候有,后面的压力测试都是在action.c进行提交数据了,并且这个错误不是所有概率不是很高,有时候甚至半个小时的压力测试,一点错误都不会有,有时候确实5分钟内突然报了上千条这样子的error。可能是因为我并发量不大,目前为止,都是报这个错误,即使我进行10多个小时的稳定性测试,也是只报这个错,并且错误率达到了6%左右)
现在我都困扰了,到底这个是什么错误呢?不太明白。。。这个是进入页面产生的一个关联数据(我发现只有进入页面这个事务才有错误,也就是这个错误,其他的点击提交等事务没有任何错误) |
|