RE: using JMeter with PeopleSoft

2009-12-04 Thread Viswanathan Arunachalam
Yes definitely you can use Jmeter to test any HTTP based application and in case you want to test HTTPS application then there is a very tricky workaround which I identified for testing our PeopleSoft HR apps. You can record the test script using an open source tool badboy (http://www.badboy.

Re: Running headless Jmeter

2009-12-04 Thread sebb
For example: jmeter -n -t test.jmx -l test.jtl 2009/12/4 LoD MoD : > Can you post your command? > > On Thu, Dec 3, 2009 at 4:13 PM, sebb wrote: >> On 03/12/2009, LoD MoD wrote: >>> My generate summary results listener doesn't seem to work in command line >>> mode. >> >> Are you sure? It works

Re: Issue with remote server POSTing

2009-12-04 Thread Chuck D'Antonio
I ended up trying to troubleshoot further by manually running the tests on each host, and that lead to an exception on the log. The error turned out to be with parsing the JMX file, and updated to a newer JVM resolved it. Chuck On Fri, Dec 4, 2009 at 2:53 PM, Chuck D'Antonio wrote: > Hi, > > I'

Re: Running headless Jmeter

2009-12-04 Thread LoD MoD
Can you post your command? On Thu, Dec 3, 2009 at 4:13 PM, sebb wrote: > On 03/12/2009, LoD MoD wrote: >> My generate summary results listener doesn't seem to work in command line >> mode. > > Are you sure? It works for me. > >>  Am I using the right listener in my test plan? >> > > Probably. >

Re: Issue with remote server POSTing

2009-12-04 Thread Chuck D'Antonio
I don't know if it helps anyone to further understand the scenario, but the requests were originally recorded. The plan has been moved to a remote system, though, and does run their correctly -- so I don't think it's a missing file. Chuck On Fri, Dec 4, 2009 at 3:05 PM, Chuck D'Antonio wrote: >

Re: Issue with remote server POSTing

2009-12-04 Thread Chuck D'Antonio
Thanks Adrian. Yes, remote testing is working for all GETs. The post data is right in the test plan. The "Content-Length" header is getting set correctly, so it seems to me that the remote servers have the data in hand to send. Chuck On Fri, Dec 4, 2009 at 3:02 PM, Fitzpatrick, Adrian wrote:

RE: Issue with remote server POSTing

2009-12-04 Thread Fitzpatrick, Adrian
Have you ever gotten remote testing to work? If not, then are you sending your post body data from a CSV file or similar? If so you will need (if you havent already) to put the CSV files on the remote machines as well. Hope thats some help -Original Message- From: Chuck D'Antonio [mai

Issue with remote server POSTing

2009-12-04 Thread Chuck D'Antonio
Hi, I'm new to the list since for the most part jMeter has "just worked" when I've used it in the past. I'm running a set of remote tests and having issues with all of the POST requests in my plan. The plan runs locally in the GUI, but when I attempt to run it remotely the body of the POST reque

Re: jmeter usage for form testing

2009-12-04 Thread Deepak Shetty
In firefox use LiveHttpHeaders. In IE you can use HTTPHeadersWatch basic. You can use any proxy like Fiddler with either browser Sometimes you can use the response tab in JMeter and use render response as HTML. You may be able to use the error message , if present, to detect what you are doing wron

Re: jmeter usage for form testing

2009-12-04 Thread Oguz Yarimtepe
On Fri, Dec 4, 2009 at 8:55 PM, Deepak Shetty wrote: > If it works from the browser the problem isnt your application. Your Jmeter > isnt sending exactly the same thing as your browser (it might be a session > id or a cookie which is dynamic, did you add a cookie manager?). You need to I am using

Re: jmeter usage for form testing

2009-12-04 Thread Deepak Shetty
If it works from the browser the problem isnt your application. Your Jmeter isnt sending exactly the same thing as your browser (it might be a session id or a cookie which is dynamic, did you add a cookie manager?). You need to compare each request from the browser with the corresponding request fr

Re: jmeter usage for form testing

2009-12-04 Thread Oguz Yarimtepe
On Fri, 4 Dec 2009 09:04:11 -0800 Deepak Shetty wrote: > All problems of this class answered by > http://wiki.apache.org/jakarta-jmeter/DifferentBehaviour > essentially Compare browser(livehttpheaders, fiddler) to Jmeter(view results After reading the wiki page i checked my code again and re

Re: How to declare a variable at thread level and assign it value in one time controller

2009-12-04 Thread mwolfe38
Is each thready going to test a potentially different IP address? If not then you could put it in a property.. Can you show like a tree view of what your test plan looks like so we can get a better Idea what the problem is.. Just write it like this: -TestPlan - Thread Group - Controller - S

Re: How to use different values from CSV file in a loop

2009-12-04 Thread Deepak Shetty
thread group +while controller ++Request ${url} ++CSV Data set Will cause a new value to be read. what is not working? Various options on the CSV data set control whether the row is shared across threads , what to do when all rows are read etc. regards deepak On Fri, Dec 4, 2009 at 6:03 AM, Harry

Re: kmeter usage for form testing

2009-12-04 Thread Deepak Shetty
All problems of this class answered by http://wiki.apache.org/jakarta-jmeter/DifferentBehaviour essentially Compare browser(livehttpheaders, fiddler) to Jmeter(view results tree listener) , add assertions to your tests to see where it fails... regards deepak On Fri, Dec 4, 2009 at 6:25 AM, Og

Re: How to generetae reports using ant from multiple files

2009-12-04 Thread Deepak Shetty
either make a combined XML file (wrapped with a new root element) and make corresponding changes to the stylesheet or modifyt the XSLT to use the XSLT document function to load multiple documents or use CSV as your output format and concatenate all files and then process as you wish regards deepak

Re: How to declare a variable at thread level and assign it value in one time controller

2009-12-04 Thread Deepak Shetty
Hi you arent clear in what you want. Any JMeter variable is available to the entire thread, whether it is set in One Time Controllers or not . If you need to manage some custom access to variables then beanshell(pre /post processor , sampler , listener) has access to the vars object which has metho

How to generetae reports using ant from multiple files

2009-12-04 Thread Harry_
Hi, I want to generate reports from multiple result files of jmeter. For one file I do it using the following: But as i need to merge results of multiple output files results. How should I do it? Thanks and Regards -- View this message in context: http://old.nab

Re: restrict jmeter to one domain

2009-12-04 Thread Harry_
I was also facing similar problem. I used the following in the Embed URL must match field: http://.*\.online\.org\.uk/.* Used star because we want to use the same regular expression for test on all environments local, test, staging. It is working fine... :) Thanks for the post... Deepak She

Re: How to stop retrieving embedded resourses from particular source within an HTTP Request

2009-12-04 Thread Harry_
The query is already answered at: http://old.nabble.com/restrict-jmeter-to-one-domain-to26631016.html Harry_ wrote: > > Hi, > > I am doing performance test behind proxy server. I am giving http requests > with "Retrieve All embedded Resources from HTML file" option on, > > After some time pr

kmeter usage for form testing

2009-12-04 Thread Oguz Yarimtepe
I was trying to test my simple PHP application. It is composed of two pages. One is listing the image names. When the name is clicked a comment page is being opened. By writing the comment and submiting, it is possible to see all comments at the same page. I followed the steps here to create a

How to use different values from CSV file in a loop

2009-12-04 Thread Harry_
Hi, I want to use loop for iterating over a set of request in a loop. How can we achieve this. In a loop the same request is picked for all the loop cycles. Is there any way of doing it. (Like forcing CSV file to read next value.) This is required because I want to login to server once and t

How to declare a variable at thread level and assign it value in one time controller

2009-12-04 Thread Harry_
Hi, I have made a test plan in which I login in one time controller from one IP which is read from csv file (on a machine having multiple IP's) and then I have to fire requests to server from that IP. But for this I have to store the value of IP in a variable in one time controller and use it

How to stop retrieving embedded resourses within an HTTP Request

2009-12-04 Thread Harry_
Hi, I am doing performance test behind proxy server. I am giving http requests with "Retrieve All embedded Resources from HTML file" option on, After some time proxy starts throwing error for a embedded resources from particular site like: http://xyz.addthis.com/images/smile.gif http://xyz.ad

Re: Accept Terms and Conditions checkbox not working through jMeter

2009-12-04 Thread Ronan Klyne
Harry_ wrote: Thank you so much for looking into the files Deepak. I am sorry I could not reply earlier. I will check about _utmv and will let you know how it worked asap. It's a Google analytics cookie. I've checked the headers you posted, and I note that JMeter is not sending a Host h