Search the site

Blogs

Vugen Custom Function: xstrcat

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Brian Wilson - TechSouth, LLC
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// xstrcat()
// more efficient version of strcat
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
char *xstrcat( char *dest, char *src )
{
while (*dest) dest++;
while (*dest++ = *src++);
return --dest;
}

Vugen: Replace Special Characters

This function (called EncodeText) may be a bit out of date, but can be used to replace special characters and use different encoding. You could put this in the very top of the vuser_init section of your script, or in the globals.h or other include file.

//------begin code---------------

We Need Your Feedback About LoadRunner Analysis

 

We are doing a survery to try and find out who is using the Crystal Reports features LoadRunner Analysis. Do you use it? Have you ever used it? What if they pulled it from the product?

Please take our survey (once per person please) and provide any addtional feedback about this LoadRunner feature by filling out the form located here: 

http://www.loadtester.com/survey-do-you-use-crystal-reports-loadrunner-analysis

 Thanks!

Scott

Vugen RTE Protocol: Autogenerate Transactions

/*

This custom RTE function will auto generate a transaction timing for every TE_wait_text. Paste this code into the top of your script, or use as an include file. Replace TE_wait_text with this function called TE_custom_wait_text using the search and replace tool.

*/

int TE_custom_wait_text ( char * text, int timeout)

{

int rtnCode = 0;
char myTransName[24];
char spacelessText[24];
char * spacePointer;

memset ( spacelessText, '\0', sizeof(spacelessText));

{

Vugen: Using Undocumented Functions

From James Pulley:

----------------------

Loadtester is Web 2.0 Friendly!

Just a quick note to let you know that we are on Twitter and Facebook. Follow us on Twitter to keep up with the latest Blog updates:

 http://twitter.com/loadtester

You can use my email address at Facebook to connect up with me. You can do the same for LinkedIn.com

If you do not know my email address, fill out the contact form on this page and I can send it to you. Although - it's pretty easy to guess. :)

Web Click and Script actually works!

On my latest engagement, I needed a web script to go with all of the Citrix scripts I am creating. The web script was giving me some issues with correlation and NT authentication, so I decided to give Web Click and Script a try. I didn't have much expectation since neither I nor my colleagues have been able to get it to work in the past, but I thought that it would be worth a try in 9.5. Imagine my surprise when it actually worked! This could partly be because the javascript is minimal. That seems to be where C&S hangs.

LoadRunner 9.1 Memory Footprints

Someone asked me for these the other day and I thought I would make them available to everyone. Download from the link on this blog entry page.

Enjoy!

Scott

Vugen: Measure transaction timings in milliseconds

Let's say you are testing a web application and the service level agreement of response times for each web page is 1.5 seconds or below. You might want to automatically fail any transaction that comes back in a longer amount of time. You will need to measure the number of milliseconds in the transaction, and see exceeds this amount. You might need to set something like this up for any transaction where timing for milliseconds is crucial.

Vugen 9.1 or 9.5 Crashing? Try this...

I saw this on the LinkedIn.com discussion boards today. Someone was asking about troubleshooting Vugen 9.1 and 9.5 crashing when performing operations. Michael Weinstock of COLES IT in Melbourne, Australia responded:

Subscribe to Our Podcasts
Our Clients Include…
  • Deloitte Services
  • Coventry Healthcare
  • CSX
  • Fifth Third Bank
  • HealthStream
  • Kroger
  • Max Technical Training
  • MPS Group
  • Sarasota Memorial Hospital
  • Take Charge America
  • Streamline Health Inc.
Our Contributors
Click Name for Full Profile