Skip to search.
LoadRunner · Discussion of issues related to Mercury Interactive's LoadRunner load testing tool.

Group Information

  • Members: 5279
  • Category: Development
  • Founded: Mar 25, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 2722 - 2751 of 33362   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2722 rsakpal Offline Send Email Jul 1, 2002
7:16 am
Hello, I want to try using some dlls in my load runner script. Has anybody tried using a dll in the script ? If yes, can you share the script and comments ? ...
2723 Euc
pankajbhatte Offline Send Email
Jul 1, 2002
7:21 am
[QUOTE]Originally posted by ilia: [B]For LR7.5: most of the functions from stdlib.h stdio.h time.h are included. Otherwise you should place the header file in...
2724 Amritpal Singh
amritdag8 Offline Send Email
Jul 1, 2002
7:23 am
wht kind of DLL do you want to use. ... From: rsakpal [mailto:rsakpal@...] Sent: Monday, July 01, 2002 12:47 PM To: LoadRunner@yahoogroups.com Subject:...
2725 rsakpal Offline Send Email Jul 1, 2002
9:09 am
Hello ... It could be a any dll, to start with. The intention is to know - how to invoke functions in dll after I load it in LoadRunner script. thanks in...
2726 medha_gharpure06
medha_gharpu... Offline Send Email
Jul 3, 2002
9:20 am
Hello, We are having a application which encrypts the password. So if I record Login to the application as User Name : Medha Password : medha123 Then...
2727 Amritpal Singh
amritdag8 Offline Send Email
Jul 3, 2002
10:23 am
Hi see normally the loadrunner doesnot captures the password... in encryted form its displays as it is .... could just send the piece of code that its rcording...
2728 punekar Offline Send Email Jul 3, 2002
2:14 pm
Yes Rajendra, it works quite well. There are no issues. The related documentation does a great job on it too. Besides, this very issue has been discussed to ...
2729 mfoley
michaelf30189 Offline Send Email
Jul 3, 2002
2:35 pm
Have you talked to your development team about what they are doing to the password?...
2730 rekhachunduri Offline Send Email Jul 3, 2002
9:19 pm
2731 harryw47 Offline Send Email Jul 4, 2002
12:13 am
Does anybody have experience with LDAP scripts?...
2732 mattjjackson Offline Send Email Jul 4, 2002
9:22 am
Hi Im getting completely confused as to how to convert an int inti a string and then into a parameter. Im writing a function that saves some times to...
2733 Colin Griffiths
col_griffiths Offline Send Email
Jul 4, 2002
9:34 am
Hi Matt, To convert your int to a string you can do something like this: char szHours[10]; szHours=itoa(Hours); Not sure how to then put this back into a LR...
2734 Dmitry Shevchenko
DShevchenko@... Send Email
Jul 4, 2002
9:48 am
Consider using lr_save_string() or lr_save_var() to save a string to a parameter. Dmitry. ... From: Colin Griffiths [mailto:colin.griffiths@...] ...
2735 mattjjackson Offline Send Email Jul 4, 2002
10:03 am
Hi I was trying to use the itoa but when I do simple code like: int Hours =10; char szHours[10]; szHours = itoa(Hours); Loadrunner reports an error of: ...
2736 Colin Griffiths
col_griffiths Offline Send Email
Jul 4, 2002
10:16 am
Whoops, Sorry Mat, try this: int Hours =10; char szHours[2]; itoa(Hours,szHours,10); lr_output_message("Value is %s",szHours); Colin ... From: mattjjackson...
2737 mattjjackson Offline Send Email Jul 4, 2002
10:20 am
Its working now, followed by a save string to turn into a parameter int Hours = 5; char szHours[10]; itoa(Hours, szHours, 10); lr_save_string("szHours",...
2738 Guru
guru_ram Offline Send Email
Jul 4, 2002
10:29 am
Hi matt, char str[256]; sprintf( str, "%s", Hours); lr_save_string( str, "param1" ); hope this would help you... thanks, Guru mattjjackson...
2739 julio.vallejolafuente...
mtpjuliovallejo Offline Send Email
Jul 4, 2002
10:30 am
Only at information level, remember: itoa (Integer to ASCII) atoi (ASCII to Integer) Regards, Julio Valejo. "mattjjackson" <mattjjackson@...>...
2740 mattjjackson Offline Send Email Jul 4, 2002
10:47 am
Thanks That seems to work better within the script that the itoa method. ta Matt ... cnverting ... into ... http://docs.yahoo.com/info/terms/ ... It's Free!!...
2741 wbrjmts Offline Send Email Jul 4, 2002
3:20 pm
I been thinking about taking the "LoadRunner Web" Certification exam. I have been working with LR off and on for the past 3 years. Can somebody give me what I...
2742 Mike Wylde
ref93 Offline Send Email
Jul 4, 2002
4:19 pm
This is going to depend on the protocol you're using. If you're using a 2 tier protocol (Oracle, ODBC etc) then it must be your client that is encrypting the...
2743 Amritpal Singh
amritdag8 Offline Send Email
Jul 5, 2002
9:33 am
HI Guys , I need to know the the optimal configuraion of Hardware to install the load runner software . And a supporting proof either a document of mercury or...
2744 Dmitry Shevchenko
DShevchenko@... Send Email
Jul 5, 2002
9:36 am
Have a look at http://www-svca.mercuryinteractive.com/products/loadrunner/technical/ Dmitry. ... From: Amritpal Singh...
2745 Colin Griffiths
col_griffiths Offline Send Email
Jul 5, 2002
9:38 am
Hi, I have comfortably run upto 500 web users with 3 PC's. Controller p3 800 with 256 RAM and 2 injectors p3 800 with 512 RAM. Colin ... From: Amritpal Singh...
2746 Amritpal Singh
amritdag8 Offline Send Email
Jul 5, 2002
9:41 am
thanks man job is done ... From: Dmitry Shevchenko [mailto:DShevchenko@...] Sent: Friday, July 05, 2002 3:06 PM To: LoadRunner@yahoogroups.com Subject:...
2747 rsakpal Offline Send Email Jul 8, 2002
7:50 am
Suresh, Thanks for your guidance. Rajendra. QA TOOLS ENGINEER E-GAIN Communications Pvt. Ltd., Pune, India....
2748 rsakpal Offline Send Email Jul 8, 2002
8:22 am
Pankaj, I have used the following function in LR related to time quite successfully: lr_save_datetime("Time is %H:%M:%S", TIME_NOW, "time"); Please see if the...
2749 medha_gharpure06
medha_gharpu... Offline Send Email
Jul 8, 2002
12:22 pm
Hi, We are facing this issue at two places in two different applications. Both the applications are web based and use HTTP/HTML protocol. The first case is the...
2750 Steve Cheney
socheney Offline Send Email
Jul 8, 2002
1:39 pm
you are going to need to get app development to make all the passwords the same for every user id. if app/dev won't do this, maybe you can use winrunner to...
2751 chinthireddys Offline Send Email Jul 10, 2002
9:44 pm
Can some through some light on "Injector" in LoadRunner....
Messages 2722 - 2751 of 33362   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help