web_custom_request("upload_file") 的问题,各位大侠帮忙看看
我是用400虚拟用户集合到400时同时模仿web上传动作——————————————————————————————
回放结果如下:
虚拟用户脚本已启动
正在开始操作 vuser_init。
Web Turbo 重播 LoadRunner 8.1.0 for WINXP; Web 内部版本 4788
运行时设置文件: "C:\Documents and Settings\load\桌面\服务器测试\测试脚本\upload_1470k_12_23haha\\default.cfg"
正在结束操作 vuser_init。
正在运行 Vuser...
正在开始迭代 1。
正在开始操作 Action。
Action.c(7): web_url("test") 已成功,1625 个正文字节,611 介标头字节
Action.c(17): 集合 run
Action.c(18): 警告 -26491: “\”之后未跟随 x、X 或“\”
Action.c(18): web_custom_request("upload_file") 最高严重级别为“warning”,192 个正文字节,183 个标头字节
正在结束操作 Action。
正在结束迭代 1。
正在结束 Vuser...
正在开始操作 vuser_end。
正在结束操作 vuser_end。
Vuser 已终止。
————————————————————————————————————
脚本如下:
#include "web_api.h"
Action()
{
web_url("test",
"URL=http://192.168.100.15/index.php/test",
"Resource=0",
"RecContentType=text/html",
"Referer=",
"Snapshot=t1.inf",
"Mode=HTML",
LAST);
lr_think_time(7);
lr_rendezvous("run");
web_custom_request("upload_file",
"URL=http://192.168.100.15/index.php/gallery/api/upload_file",
"Method=POST",
"Resource=0",
"RecContentType=text/html",
"Referer=http://192.168.100.15/index.php/test",
"Snapshot=t2.inf",
"Mode=HTML",
"EncType=multipart/form-data; boundary=---------------------------7d91f427100262",
body_variable_1,
LAST);
return 0;
}
_------------------------------------------------------------------------------------------------------------
请问这两行到底是怎么回事呢,
Action.c(18): 警告 -26491: “\”之后未跟随 x、X 或“\”
Action.c(18): web_custom_request("upload_file") 最高严重级别为“warning”,192 个正文字节,183 个标头字节
谢谢大家,祝大家元旦快乐!
沉底了
看来大侠们都过元旦了,这贴沉底了,哎~~ 我觉得应该脚本中缺少提交文件的头信息,web_add_header 函数,上传的文件头里面会有好多信息,这些信息在提交的时候也得一并提交给服务器。
页:
[1]