|
我在服务器上有个test.jsp的文件,内容如下:
hello <%=request.getParameter("username")%> and time is: <%=request.getParameter("time")%>
我想通过lr发一个post请求,包括用户名和时间,现在我想捕获响应信息的用户名,lr的代码如下:
Action()
{
char* username;
web_reg_save_param("uname",
"Notfound=warning",
"LB=hello ",
"RB= and time",
"Search=All",
LAST);
web_custom_request("用户名时间参数请求",
"Method=POST",
"URL=http://localhost:8080/uname/test.jsp",
"Resource=0",
"RecContentType=text/html",
"EncType=text/html",
"Mode=HTML",
"Body=username=vincent&time=20140827",
LAST);
username=lr_eval_string("{uname}");
lr_output_message(username);
return 0;
}
但是最后捕获不到,显示null,不知道是哪里的问题,对于body的写法我不太清楚,是这样写吧?还是别的什么地方有问题,有哪位高人麻烦给看看? |
|