Query on Response data

2010-05-12 Thread Ragini Thakur
Hi , When I executed test plan and view results in listener 'View Results in Tree' on response data tab "Unknown protocol, only XML or GSP are allowed." Is displayed. Can anyone tell me the reason behind it? Regards, Ragini Thakur

Re: How to extract the hidden values from JSP page??

2010-05-12 Thread Deepak Shetty
>Now they are using JSP and the project id is been displayed in the URL itself. which means it must be in the previous page (on which the link is clicked or it is formed by javascript or being sent as part of a redirect). Inspect the HTML in your browser. On Wed, May 12, 2010 at 10:12 PM, Nithya P

How to extract the hidden values from JSP page??

2010-05-12 Thread Nithya Prakash
I'm working on Jmeter for automating the test process. I have created a project and need to edit the project details. For this i need to extract the project id since i cannot hardcore the project id every time i run the script in jmeter. The scenario is like this : 1. Previously the page was buil

When to use Loop count?

2010-05-12 Thread Roy S.
If I'm running 500 Threads. what would be the advantage of splitting it into 250 Threads and Loop (x2)? assuming that I want to run all my Threads in 1800 seconds. -- View this message in context: http://old.nabble.com/When-to-use-Loop-count--tp28542369p28542369.html Sent from the JMeter -

RE: HTTP Request Sampler configuration for REST

2010-05-12 Thread Renaud, Martin
Hi, Thanks for the quick response. I tried with your suggestion and the received type was still not the one expected by the app. It is good to know that what I'm trying to do is not supported (yet?), I will stop trying and concentrate on the Java Request Sample instead. However if someone found

Re: HTTP Request Sampler configuration for REST

2010-05-12 Thread Deepak Shetty
The HTTPSampler probably can only use the types that form can use are application/x-www-form-urlencoded or multipart/form-data . So I dont think what you want is currently supported The mime type against the file parameter , should be the mime-type of the file - text/xml or whatever not of the ent

Re: Inserting dynamic values in the application

2010-05-12 Thread Deepak Shetty
Create a CSV file which has two columns with the data (acocunt number, mobile number) Use a CSV dataset config element and define the variables here as accountNumber,mobileNumber In your sampler which sends the value use ${accountNumber} or ${mobileNumber} instead of the recorded value Use debug

Inserting dynamic values in the application

2010-05-12 Thread praveen
Hi All, Please go through the following scenario and help me what I need to do, 1)Login to a web application hosted in the server 2)Access Customer Management in my application. 3)Enter the account number an click on search button. Now my application connects to the core bankin

HTTP Request Sampler configuration for REST

2010-05-12 Thread Renaud, Martin
Hi All, I'm trying to use JMeter 2.3.4 to send a request to a REST application without success. I'm using the HTTP Request Sampler. And I cannot find the good configuration for the request to be consumed by my application. More precisely, I cannot get the request sent by JMeter to have the

Re: jMeter - Failed to read CSV in Linux

2010-05-12 Thread sebb
On 12/05/2010, hammer5680 wrote: > > I tried the latest nightly but that give me other problems. Did you copy both the bin and lib archives into the same directory structure? > [jmeter] java.lang.NoClassDefFoundError: > com.thoughtworks.xstream.converters.ConversionException >[jmeter]

Re: jMeter - Failed to read CSV in Linux

2010-05-12 Thread hammer5680
I tried the latest nightly but that give me other problems. [jmeter] java.lang.NoClassDefFoundError: com.thoughtworks.xstream.converters.ConversionException [jmeter] at java.lang.J9VMInternals.verifyImpl(Native Method) test: [jmeter] Executing test plan: /data/hudson/jobs/xxx/*.jmx ==

Re: Comparator of responses of two servers.

2010-05-12 Thread sebb
On 12/05/2010, indireddysankar wrote: >sebb, > Can i do this last step of comparison with Jmeter by bean > shell or regular expression..? manually i can not do this since the csv may > be very big file with 1 lac requests. > > I am struck at the comparison ...I appreciate y

RE: Comparator of responses of two servers.

2010-05-12 Thread Andrey Pohilko
I think you should compare aggregate results, not raw responses. Is it applicable? С уважением, Андрей Похилько -Original Message- From: indireddysankar [mailto:indireddysan...@gmail.com] Sent: Wednesday, May 12, 2010 3:54 PM To: JMeter Users List Subject: Re: Comparator of responses o

Re: Comparator of responses of two servers.

2010-05-12 Thread indireddysankar
sebb, Can i do this last step of comparison with Jmeter by bean shell or regular expression..? manually i can not do this since the csv may be very big file with 1 lac requests. I am struck at the comparison ...I appreciate your help in advance. On Wed, May 12, 2010 at 4:37 P

Re: Replay a recorded load using JMeter

2010-05-12 Thread Gerrie K
Thanks for the replies. Let me first clear this out: the main purpose of my test is to generate load on our server. Preferably exactly the same load as during the stress test: the same request order at the same pace. We monitor performance on the server, not in JMeter, so there is no listener ad

Re: Comparator of responses of two servers.

2010-05-12 Thread sebb
On 12/05/2010, indireddysankar wrote: > ThanQ sebb, > >Please give me more details.. how do i proceed with this > save response file option...can i compare this saved response with another > using any of the available features in jmeter. Run the test plan. Save the output fi

Re: Comparator of responses of two servers.

2010-05-12 Thread indireddysankar
ThanQ sebb, Please give me more details.. how do i proceed with this save response file option...can i compare this saved response with another using any of the available features in jmeter. As i said the servers will differ in few cases and behave similarly in many cas

RE: Replay a recorded load using JMeter

2010-05-12 Thread Andrey Pohilko
Hi, Wes there only one user in jour stress test, or many of them? Also I doubt that creating custom sampler in this situation is the best way. I advise using many threads and standard HTTP Sampler. I see no way to make request and don't wait for full response - it is useless test. Parallel requ

Re: Comparator of responses of two servers.

2010-05-12 Thread sebb
http://jakarta.apache.org/jmeter/usermanual/component_reference.html#Save_Responses_to_a_file On 12/05/2010, indireddysankar wrote: > Hi, > > I want to build urgently on test plan which will just compare the > text response of one server to the text response of another server. > > The

Re: Replay a recorded load using JMeter

2010-05-12 Thread sebb
On 12/05/2010, Gerrie K wrote: > > Hi, > > I'm trying to replay a sequence of HTTP requests that were logged/recorded > on our JBoss application server during a "real user"-based stress test. I've > created a custom Sampler that creates samples based on those HTTP logs. A > custom Timer delay

Comparator of responses of two servers.

2010-05-12 Thread indireddysankar
Hi, I want to build urgently on test plan which will just compare the text response of one server to the text response of another server. The responses will be like "1. siva 2. sankat 3. reddy 4. jyothi" The responses from both will be same in many cases and rarely differs from each ot

Re: jMeter - Failed to read CSV in Linux

2010-05-12 Thread sebb
On 12/05/2010, hammer5680 wrote: > > I'm using JMeter on an AIX Machine. > > jakarta-jmeter-2.3.4 > java full version "JRE 1.6.0 IBM AIX build pap3260sr7-20091215_02 (SR7)" > > Im having the same problem > > > ERROR - jmeter.threads.JMeterThread: Test failed! > java.lang.NullPointerException

Replay a recorded load using JMeter

2010-05-12 Thread Gerrie K
Hi, I'm trying to replay a sequence of HTTP requests that were logged/recorded on our JBoss application server during a "real user"-based stress test. I've created a custom Sampler that creates samples based on those HTTP logs. A custom Timer delays the next sample based on the timestamps in the

Re: jMeter - Failed to read CSV in Linux

2010-05-12 Thread hammer5680
I'm using JMeter on an AIX Machine. jakarta-jmeter-2.3.4 java full version "JRE 1.6.0 IBM AIX build pap3260sr7-20091215_02 (SR7)" Im having the same problem ERROR - jmeter.threads.JMeterThread: Test failed! java.lang.NullPointerException [jmeter] at org.apache.jmeter.config.CSVDataSetBea