|
回放脚本时,有这个提示:
Mismatch in buffer's length (expected 77 bytes, 86 bytes actually received, difference in 9 bytes)
脚本是关于ftp上传的,倒是文件创建,可是内容却是空的!
希望各位大侠能帮忙解决下!
附脚本如下:
/*********************************************************************
* Created by Mercury Interactive Windows Sockets Recorder
*
* Created on: Fri Sep 25 17:46:55
*********************************************************************/
#include "lrs.h"
Action()
{
lr_start_transaction("put_file");
lr_think_time(15);
lrs_send("socket0", "buf5", LrsLastArg);
lrs_receive("socket0", "buf6", LrsLastArg);
lrs_send("socket0", "buf7", LrsLastArg);
lrs_receive("socket0", "buf8", LrsLastArg);
lr_end_transaction("put_file", LR_AUTO);
return 0;
} |
|