Re: Not able to run the script for more than 200 users

2009-10-05 Thread Mark Rotteveel
I don't deny that. I even know that it is unwise. But your claim that you can't run JMeter with -Xmx1024M on a system with only 1 GB of memory is technically false: it will run, badly probably, but it will run! So from that aspect, you won't be able to tell that it is a bad decision to assign

RE: JMeter and Citrix

2009-10-05 Thread Sweth
Hi all, I am trying to record a script using Citrix connection butThe events are not being recorded.. Even wen tried with Badboy the script is not replaying correctly...The scripts that have been working fine in local environment stopped working when executed in Production(Citrix Environment)

Retrieve Testcase name in test

2009-10-05 Thread Marco Pas
Hi i was wondering is it is possible to retrieve the Testcase name automatically or the filename of the current running test this to enable dynamic naming of the different samplers. I have a couple of different files that contain different test and when running jmeter on all those test it would be

Re: Retrieve Testcase name in test

2009-10-05 Thread Noel O'Brien
Hi, Any of the beanshell elements will give you access to a ctx object ( org.apache.jmeter.threads. JMeterContext), so I think the following should work: ctx.getCurrentSampler() .getName(); Regards, Noel - Marco Pas marco.paso...@gmail.com wrote: Hi i was wondering is it is

JMeter sends requests slower and slower

2009-10-05 Thread Jazzdabbler
Hi all I have a performance problem with JMeter I created a plan for JMeter, which consistently makes the login to the site and make requests to servlets and using BeanShell makes parsing sent values. The problem is that even with 100 threads instead of fixed delay of 5 seconds between requests

Re: JMeter sends requests slower and slower

2009-10-05 Thread Jazzdabbler
Some additioanal Jmeter enviroment #java -version java version 1.6.0 OpenJDK Runtime Environment (build 1.6.0-b09) OpenJDK Server VM (build 1.6.0-b09, mixed mode) JMeter startup options: -server -Xms512m -Xmx512m -Xss256k -XX:NewRatio=5 -XX:NewSize=96m -XX:MaxTenuringThreshold=2

Re: JMeter sends requests slower and slower

2009-10-05 Thread Jazzdabbler
Problem solved: replace OpenJDK with SunJDK -- View this message in context: http://www.nabble.com/JMeter-sends-requests-slower-and-slower-tp25749293p25750221.html Sent from the JMeter - User mailing list archive at Nabble.com.

Re: Integrating Monitoring stuff

2009-10-05 Thread Tony Lotts
Sending the data back to JMeter, and running an RMI server on the SUT will add overhead to the SUT in addition to DTrace. Why not just coordinate the times with the times from Jmeter after the test? On Mon, Oct 5, 2009 at 9:09 AM, Gokulakannan Somasundaram gokul...@gmail.com wrote: I started

Re: Not able to run the script for more than 200 users

2009-10-05 Thread Deepak Shetty
agreed, it was an incorrect statement. Most of my experience is with running java server side where we never exceed the amount of physical RAM(not because it cant be done) On Sun, Oct 4, 2009 at 11:55 PM, Mark Rotteveel m...@pluton.nl wrote: I don't deny that. I even know that it is unwise. But

Mail Reader Sampler specify port

2009-10-05 Thread Neil W. Hunt
Hello, I am using the JMeter Mail Reader Sampler. It works quite well for me locally where I have my mail server running POP3 on port 110. However, on some of our development servers we use different ports for our POP3 mailboxes. I don't see any way to specify a port # in the Mail Reader

Re: Mail Reader Sampler specify port

2009-10-05 Thread Deepak Shetty
Sorry my mistake , these are properties on the session not System properties (I shouldnt rely on memory) regards deepak On Mon, Oct 5, 2009 at 11:59 AM, Deepak Shetty shet...@gmail.com wrote: I believe this sampler uses java mail in which case you should be able to specify this as a system