|
以下是已录制好的一段脚本,印射到业务层面是,用户(参数)以密码(参数)登录,其中不管失败(xxxx)或者成功(0000)均会返回一个
transStatus,因为并发量较大,需要在并发的交易中打出失败的,即transtatus!=0000的日志行,麻烦知道处理方法的同志帮忙一下,
谢谢!
Action()
{
web_service_call( "StepName=issueCard_101",
"SOAPMethod=CardAdminServer.CardAdminServerPortType.issueCard",
"ResponseParam=response",
"WSDL=http://192.168.10.217:8080/icard/services/CardAdminServer?wsdl",
"UseWSDLCopy=1",
"Snapshot=t1230194888.inf",
BEGIN_ARGUMENTS,
"in0={用户名}",
"in1={密码}",
END_ARGUMENTS,
BEGIN_RESULT,
"out/transStatus=Param_transStatus",
END_RESULT,
LAST);
lr_think_time(3);
return 0;
} |
|