lunahaha527 发表于 2013-12-24 10:17:36

求助,有关LR26366的棘手问题

各位:
    协议:WEBSERVICE
      单脚本回放,成功,无误。
    执行50 次时,有两次失败。在网上查了很多有关LR26366的解决方法,都未解决。
    参数相关的表,也检查了,未看出问题。贴出脚本,请各位帮忙看下。不胜感激!
Action()
{
char * reslutcode88;

   lr_start_transaction("conm_case");

    web_set_max_html_param_len("99999999");
        web_reg_find("Fail=NotFound",
                "Search=Body",
                "SaveCount=conm001",
                "Text=Transaction success",
                LAST);
   
web_custom_request("HTTPRequest",
                "URL=http://192.168.1.1:6080/notify/m/z/conm",
                "Method=POST",
                "Resource=0",
                "RecContentType=text/xml",
                "Referer=",
                "Mode=HTML",
                "EncType=text/xml; charset=utf-8",
                "Body=<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
                "<Request>\n"
                "<Type>M</Type>\n"
                "<StoreId>888</StoreId>\n"
                "<TrxId>{NewParam_2}</TrxId>\n"
          "<StoreTrxId>{NewParam_1}</StoreTrxId>\n"
      "<DeliveryResponse>1</DeliveryResponse>\n"
                "<Timestamp>66</Timestamp>\n"
      "<Signature>1</Signature>\n"
                "</Request>",
                LAST);

    reslutcode88 = (lr_eval_string("{conm001}"));

    if(strcmp(reslutcode88 ,"1")==0)
           {
       lr_output_message("服务器返回结果为成功,此条脚本通过!");
       lr_end_transaction("conm_case", LR_PASS);
               }
               else
             {
       lr_error_message("由于服务器返回码非成功,此条脚本失败!");
       lr_end_transaction("conm_case", LR_FAIL);
               }
return 0;
}

云层 发表于 2013-12-25 10:05:56

负载的时候,由于服务器的处理能力,是会出现类似问题的

我是真不会 发表于 2013-12-28 10:49:29

web_reg_find()好像没太有意义,可以直接捕获到服务器的返回码,为什么还做检查点呢?服务器后台成功,应该就没什么问题了吧。个人看法
页: [1]
查看完整版本: 求助,有关LR26366的棘手问题