Quantcast
Channel: LoadRunner Practitioners Forum topics
Viewing all 3978 articles
Browse latest View live

TE session using VUGen RTE Protocol against a Linux server

$
0
0

I recorded a TE session using VUGen RTE Protocol against a Linux server. The issue is as follows:
While running the script opens the Power Term window and will not connect. Once I press enter, the script starts running fine. Is there a way for the script to strt running without me pressing 'Enter' on the power term window. Any help is appreciated.

I have done this against the Unix Server without any Replay Issue however the above issue occuring when replaying against Linux Server, I have tried all other Display types none has solved this problem that I am facing.

Thanks in advance!


Exception was raised when calling per-thread-init function in extension parameng.dll

$
0
0

I am working on the script in Vugen. its working fine but after few hours when am replaying script its throwing the below error. Please advice me for the following issue

Note: I am using Loadrunner 11.52

I thought its Loadrunner installation issue so i used Virtual machine where loadrunner does not have any issue.

But after couple of days when i am again replaying the script after adding some parameterization values , its throwing the error

Error:

Error: Exception was raised when calling per-thread-init function in extension parameng.dll: System Exceptions: EXCEPTION_ACCESS_VIOLATION
Error: Vuser failed to initialize extension parameng.dll.
Error: Exception was raised when calling per-thread-init function in extension parameng.dll: System Exceptions: EXCEPTION_ACCESS_VIOLATION
Error: Vuser failed to initialize extension parameng.dll.
Warning: Extension flexreplay.dll reports error -1 on call to function ExtPerThreadTerminate
Warning: Vuser failed to terminate extension.

I have checked the parameng.dll file too. But could not rectify the issue. Please suggest on this

 

TruClient Firefox error : VuGen could not start Firefox to enable you to develop your script

$
0
0

Hi Experts,

I have VuGen 12.02 installed in my machine and using TC ff protocol for my script development.

I am getting the below error when I clicked on Develop script button : 

"VuGen could not start Firefox to enable you to develop your scripts"

I also tried running VuGen as admin, but no luck & getting the same error.

When I clicked on TruClient General Settings, I am getting this error  

"Firefox failed to start.System.ComponentModel.Win32Exception(0x80004005): ... "

Screenshots attached.

Regards,

Ronak

can MI listener be installed on PC server or LG?

$
0
0

can MI listener be installed on PC server or LG

how to edit the Truclient script

$
0
0

I am new to this tool.

I have recorded a script throgh truclient in Loadrunner.

i am not able to edit it, so can't we edit the truclient script once recorded?

i want to comment some line of code in that script so that if i run that it will skip it and move further.

is there any settings i have to make to edit the truclient script.

Thanks in advance

 

 

Handle Save window popup

$
0
0

I have recorded one script through HTTP

My need is to open a website and navigate it some page and one download link is there.

i have to click that and some popup will open that will ask me to save the file or to open it

i want to save that file.

Can loadrunner handle the client side activities?

I want a peice of code to save that document to my local drive.

I guess i explained my requirement well so that u can understand.

Please do help.

Thanks in advance.

Force 64-bit LR to use 32-bit IE

$
0
0

Hi All,

I have an AUT that for one business process will not complete in 64-bit Internet Explorer and will in 32-bit Internet Explorer.

My controller, dev machine and VM Drones are all 64-bit, so when I play back from VuGen they are failing. I haven't been able to find anywhere to force LR to use the 32-bit IE.

Does anyone have any suggestions?

Problem with Truclient Script Development

$
0
0

i have a truclient firefox script that i developed in vugen 12.02. the script has been working fairly well in BPM, but i need to make some changes to it.

i made the changes (added a wait for object step) and saved the script, even exited vugen. when i re-open the script, it displays the new script view in vugen, with the changes listed. but, when i click the Develop script button to view and replay the script, it shows the old script code! why would this be?


Protocol for SAP HANA BusinessBy Design and SucessFactors?

$
0
0

Hi,

Which Vugen protocol supports Cloud SAP BusinessbyDesign. The web application is acccessed turough browser and uses Microsoft Silverlight. Does SAP Web protocol supports this , or some other protocol is to be used?

Which protocol is to be used for SuccessFactors?

Regards

Shinu

Unable to generate Flex corelatted DSID using xpath function

$
0
0

We tried the below approach:


1.    We tried scripting in the java1.6 version. The script was recorded in binary form and we faced problem while correlating.
2.    We tried to record the scripts in multiprotocol and used different recording options like using serializable objects.
3.    Used the jar files provided by the ADM team.
4.    We also tried to set the classpath of java1.7 version, but even this approach didn’t help as we do not have admin rights to set the classpath.

Thanks

Gagan

Correlation Rules - Not Applied to web_add_header function

$
0
0

In my application, there is a header "key" which is sent for every web_url request. For example,

web_add_header("key","quwjkajhsiduyqiwhdkjhsduq")

web_url(.....

I created a correlation rule for capturing value of "key" but when i record/regenerate script, it does not replace value of key with correlation parameter. I am very sure that my rule is correct as i tested the rule. Please help on this.

Why Digital LoadRunner Servers are trying to communicate with HP public IP 131.124.92.175

$
0
0

Digital LoadRunner Servers are trying to communicate with outside HP IP 131.124.92.175 on port 443 which is denied on firewall as no firewall rule exists.

Can anyone please let me know why the Load runner servers are connecting to public IP of HP.

Prompt response is appreciated.

 

Thanks in advance

Sanjib 

How tp record Siebel OpenUI Application in normal mode of Chrome ?

$
0
0

Hi,

i am recording siebel OpenUI application using loadrunner 12.05 in chome browser but as i start recording using chrome, it always open in incognito mode in which page won't get load properly. Even after refresh same problem.

But when i try to open application manually in normal mode of chrome, it opens in proper way but not in incognoto mode.

So want i know how can i record application in normal mode of chrome using loadrunner 12.05 ?

Chrome is only recommended for this application by one of my client.

Kindly help.

Thanks

 

Finding largest value from the list of values

$
0
0

Hello All,

I have a scenario .. where i need to capture all the rate card data and find the largest value (Select) and move to next page.

To find all the list of values i did correlation .. ord=all,i could see all the list of values in correlation parameter function.

Below is code where im facing an issue.

Please help me where im wrong.. 

//initilization

char arr[10];
int y[100][100];
int location=1, maximum;

//Storing values in array

n= atoi(lr_eval_string("{Correlation1_count}"));

for(i=1;i<=n;i++)
{
sprintf(arr,"{Correlation1_%d}",i);
sprintf(y[i],"%d",atoi(lr_eval_String(arr)));
}

//finding highest value from array
maximum = atoi(lr_eval_string(y[1]));

for(i=1;i<=n;i++)
{
if (y[i]>maximum)
{
maximum= y[i];
location =i+1;
}
}

 Thanks in advance.!!!!

Regards,

sai

VUGen using 64-bit JRE- Not able to record via Java over HTTP - App does not start

$
0
0

Hi All,

 

Am trying to record a Java Application, however the VUGen is starts recording in 64-bit mode -

[API Trapper (14cc: 7cc)] Recording in 32-bit mode: D:\Users\<Username>\Downloads\<AppName>.exe
[API Trapper ( 534: 928)] Recording in 64-bit mode: C:\Program Files\Java\jre1.8.0_60\bin\javaw.exe

 

It is working on the other machine where it uses a 32-bit JRE.

 

Have tried out by changing the Path and Class path variables to include the desired 32-bit JDK.

Also changed the Recording Options -> Java VM, however it is not working.

 

Thanks and Regards,

Suresh.


Install latest version of flash player plugin while recording using LR 12.01

$
0
0

I am facing issue while recording application in load runner 12.01 using tru client Ajax- Firefox protocol and the recording window shows" Please install latest version of flash player".

Have also tried to record using Ajax tru client-IE11 but the application functionality doesnot work correct.

 

 

Can you please help on how to overcome this flash player plugin issue.

Request per sec?

$
0
0

Hi,

How do i have acheive X amount of Requests per sec for a certain scenario using loadrunner controller?? Is it same as using goal orieneted scenario with goal type as Transaction per sec and reach goal of X TPS.

Please  clarify if Request per sec is same as TPS.

How to create a controller scenario with NFR

$
0
0

Hi,

I have a non functional requirements as below. How can a load test scenario be generated from it. Please guide.

1)Number of users:
Peak amount of normal users, 85% of employee base for company
Peak amount of editors, 85% of editors

2)Requests:
During working hours, peak load of 180 000 requests to webserver during 1 hour (so peak 3000 per minute).
Average request to webserver per day during a 6 month period is 726 000. So average to webserver during one hour is 30 250 (505 per minute)

3)Visits:
Peak visits 150 00 in one hour

3)Response times (this metric collected remotely, at several centers and illustrates the client side view):
83ms for the start page (average).
310ms for the start page (peak)


Non-functional requirements:
1)Render start page with response time 85ms or better, with a background load of 85% of employees generating 3000 requests per minute.
2)Render start page with response time of 310ms or better, with a background load of 85% editors performing update.

 Rgds,

Jaggs

ContractFilter mismatch error encountered while executing Silverlight based script

$
0
0

Hi,

I have recorded a silverlight based application using silverlight based application where after recording the script, i got the following code for the silverlight based calls:

Request:

==============================

/* Unable to automatically locate WSDL file. */

web_add_header("Content-Type", "text/xml; charset=utf-8");


silverlight_soap_request("StepName=GetCurrentEmployeeDetails",
"URL=http://fundoxgr/FundoxServiceHost.svc",
"SOAPEnvelope="
"<s:Envelope xmlns:s=\"http://schemas.xmlsoap.org/soap/envelope/\">"
"<s:Body>"
"<GetCurrentEmployeeDetails xmlns=\"http://tempuri.org/\"></GetCurrentEmployeeDetails>"
"</s:Body>"
"</s:Envelope>",
"Snapshot=t3.inf",
"ResponseParam=response",
LAST);

/* Unable to automatically locate WSDL file. */

===============================

After replaying the script, its failing to execute the silverlight request and throws the following error:

 

Response:

============

Action.c(116): Warning:HTTP status code 500 returned by the server

Action.c(116): Error:The reason for the SOAP fault is: "The message with Action '' cannot be processed at the receiver, due to a ContractFilter mismatch at the EndpointDispatcher. This may be because of either a contract mismatch (mismatched Actions between sender and receiver) or a binding/security mismatch between the sender and the receiver. Check that sender and receiver have the same contract and the same binding (including security requirements, e.g. Message, Transport, None)."

Action.c(116): Error:SOAP request "GetCurrentEmployeeDetails" execution failed

=================

How to resolve this issue. any idea?

Thanks,

Ajit

LR_Seibel_Error while playback

$
0
0

Dear All,

Greeting..

Finding this below error while playing back LR script (working on seibel technology).

Done maximum RnD, to resolve the issue...still finding the same..

Looking for your kind n quick suggestions...

Thank you..

Ifty

 

Action.c(324): Error -26372: ContentCheck Rule "Status_Error1" in Application "Siebel" triggered. Text "`Status`Error`" matched (count=1) [MsgId: MERR-26372]
Action.c(324): web_submit_data("start.swe_26") highest severity level was "ERROR", 4799 body bytes, 272 header bytes [MsgId: MMSG-26388]

Viewing all 3978 articles
Browse latest View live




Latest Images