51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

查看: 1305|回复: 0
打印 上一主题 下一主题

LoadRunner:Getting values from Winsock Buffers

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2006-10-30 14:10:53 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Description

      How to grab values identified by the \ null character while using Winsock.


Solution

      While using the Web/Winsock or plain Winsock method it becomes an issue to capture the right values from the send/rcvd buffers. However, some ansi c functions come in to play and help one out accomplishing the task.
Lets say if you have a value which you are receiving in buf88 you have captured the offset and defined the string length accurately. Now, you want to get rid of the junk characters around it and put it in a variable.
Here is how we do it:

// In code below we are verifying if the buffer is coming back with customer id and we are resolving that through the code.

/* get Customer Id */

lrs_save_param("socket3",NULL, "Cust_id", 0, -1);

strcpy(sActualBuffer1, lr_eval_string("{Cust_id}"));

nl = 0;

nm = 0;

do

{

//I am searching for "t" since it is available in word customer
if (sActualBuffer1[nl] == 't')

{

break;

}

nl++;

}

while(sActualBuffer1[nl] != '\0');

nm = nl+25;

nl = 0;

while(sActualBuffer1[nm] != '\\')

{

sCustid[nl++] = sActualBuffer1[nm++];


}
How we get rid of the unwanted values characters is given below.

lrs_get_last_received_buffer("socket23", & Mybuffer, & Ourbytes);

lrs_save_param_ex("socket23", "user", Mybuffer, 32, 10, "ascii", "Istvalue");

secondval = lr_eval_string("{Istvalue}");

lr_output_message("Value is : %s", secondval);

// Null character \"
symbol = "\"";

Thirdval = strtok(secondval, symbol);

Thirdval[strlen(secondval)-1]='\0';

lr_save_string(Thirdval,"ConidNumb");

custid = lr_eval_string("{CstidNumb}");

lr_output_message("%s", custid);

I hope this would help someone who is working with sockets. It helped me though.
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-5-8 03:28 , Processed in 0.062176 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表