logfile: timestamp

2006-02-01 Thread Ziemerle, Andreas
Hello, in jmeter.property file I use: # legitimate values: xml, csv, db. Only xml and csv are currently supported. # default: jmeter.save.saveservice.output_format=xml jmeter.save.saveservice.output_format=csv # true when field should be saved; false otherwise #

Jmeter distributed testing

2006-02-01 Thread Benny . Rogiers
Hello, I have problems running a Jmeter master (machine where the GUI is present) and Jmeter slave (machine where the test is running) together. It's ok if I don't use JDBC connection configuration in my testplan for database queries. But when I include the JDBC connection configuration, I

Connection refused

2006-02-01 Thread Torsten . Frehe
Hi together, today I want to start my test with 30 threads but I get for 4 threads this exception. java.net.ConnectException: Connection refused: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:350) at

WebService-https problem

2006-02-01 Thread Pablo Pizarro
Hi, I'm testing web services (AXIS), with jmeter, l have reached to get the wsdl, but when i start the test i receive nothing, the log file show this for each thread: 2006/02/01 09:47:47 DEBUG - jmeter.visualizers.GraphAccumModel: Start : addNewSample1 2006/02/01 09:47:47 DEBUG -

Re: logfile: timestamp

2006-02-01 Thread Ziemerle, Andreas
OK. Sorry I got it. The timeformat in the logfile is: unixtimestamp + ms - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Connection refused

2006-02-01 Thread sebb
MOst likely the server cannot handle the additional connection, or the connections are being created too quickly - try increasing ramp-up time On 01/02/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi together, today I want to start my test with 30 threads but I get for 4 threads this

Re: logfile: timestamp

2006-02-01 Thread sebb
Actually it is Java System.currentTimeMillis() http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html#currentTimeMillis() Remember by default it is the END time-stamp. On 01/02/06, Ziemerle, Andreas [EMAIL PROTECTED] wrote: OK. Sorry I got it. The timeformat in the logfile is:

simple plugin example needed

2006-02-01 Thread Lauri Kimmel
Hi I need to write jmeter plugin for testing one particular TCP protocoll and server. One good and simple example would be helpful. I found one tutorial at http://svn.apache.org/viewcvs.cgi/*checkout*/jakarta/jmeter/trunk/xdocs/extending/jmeter_tutorial.pdf but it's not very helpful. I got

Re: Simple data Writer

2006-02-01 Thread jmeter User
I'm not sure what Listener your are referring to. When I run a test with the Simple Data Listener and try to open the file with any other listener (like aggregate) I get the listed error. On 1/31/06, sebb [EMAIL PROTECTED] wrote: On 31/01/06, Jeff Mychasiw [EMAIL PROTECTED] wrote:

Re: Simple data Writer

2006-02-01 Thread sebb
The JTL files saved with any Listener can be opened in any other Listener. The type of Listener does not affect the data that is saved. If the data is not private, please create a Bugzilla issue and then attach the failing data file, as well as jmeter.log. S On 01/02/06, jmeter User [EMAIL

RE: Question Regarding JMeter Testing Through Proxy

2006-02-01 Thread Patrick Clark
Thanks for the assistance, through trial and error I was able to find the problem. It appears that Jmeter will ignore the proxy settings if the target site is local. I was able to get it working by relocating my test site and proxy to another server. I had everything local while I was creating

Re: Simple data Writer

2006-02-01 Thread jmeter User
Thank you for clearing that up. On 2/1/06, sebb [EMAIL PROTECTED] wrote: The JTL files saved with any Listener can be opened in any other Listener. The type of Listener does not affect the data that is saved. If the data is not private, please create a Bugzilla issue and then attach the

Re: Question Regarding JMeter Testing Through Proxy

2006-02-01 Thread sebb
Thanks for the feedback. If you are using the original HTTP Sampler, then this relies on the Java run-time HTTP protocol implementation to handle the proxy. JMeter merely sets the appropriate system properties before opening the connection. So perhaps there is a bug/restriction in the default

Option to Iterate through dataset ONLY once

2006-02-01 Thread Banihali Sadia
Hi Everybody, Do we have any option in Jmeter wherein I can specify all threads to iterate only once through the dataset. Scenario I am testing: Creating Subscribers: The Dataset has a set of subscriber numbers,I do not want the threads to use the rows again after first time as the subscribers

I need HTTP parameters stored in .jmx file in *unencoded* form. Is this possible?

2006-02-01 Thread John Bullock
I construct my test plans without using the JMeter GUI by directly constructing .jmx files. I have just discovered that JMeter assumes that the name and value of each HTTP Argument are URL encoded in the XML file. But I have the parameters in their raw, un-encoded form. Is there a mode or

Splitting on a blank space

2006-02-01 Thread Bill Gosse
Hi Guys, Does anyone know how or if a string can be split on a blank space with the split function. Here's my first attempt that didn't work: ${__split(${username},splitusername, )} The username variable has bill gosse in it. My splitusername_1 variable gets the whole string while

Re: Option to Iterate through dataset ONLY once

2006-02-01 Thread sebb
On 01/02/06, Banihali Sadia [EMAIL PROTECTED] wrote: Hi Everybody, Do we have any option in Jmeter wherein I can specify all threads to iterate only once through the dataset. Set the loop count so there are enough dataset entries to go round. Or have a look at StringFromFile which has a

RE: Option to Iterate through dataset ONLY once

2006-02-01 Thread Banihali Sadia
Thank you so much -Original Message- From: sebb [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 8:32 PM To: JMeter Users List Subject: Re: Option to Iterate through dataset ONLY once On 01/02/06, Banihali Sadia [EMAIL PROTECTED] wrote: Hi Everybody, Do we have any

I need HTTP parameters stored in .jmx file in *unencoded* form. Is this possible?

2006-02-01 Thread John Bullock
I construct my test plans without using the JMeter GUI by directly constructing .jmx files. I have just discovered that JMeter assumes that the name and value of each HTTP Argument are URL encoded in the XML file. But I have the parameters in their raw, un-encoded form. Is there a mode or

Re: I need HTTP parameters stored in .jmx file in *unencoded* form. Is this possible?

2006-02-01 Thread sebb
On 01/02/06, John Bullock [EMAIL PROTECTED] wrote: I construct my test plans without using the JMeter GUI by directly constructing .jmx files. I have just discovered that JMeter assumes that the name and value of each HTTP Argument are URL encoded in the XML file. But I have the parameters

Re: Splitting on a blank space

2006-02-01 Thread sebb
On 01/02/06, Bill Gosse [EMAIL PROTECTED] wrote: Hi Guys, Does anyone know how or if a string can be split on a blank space with the split function. Here's my first attempt that didn't work: ${__split(${username},splitusername, )} No need to quote the space. Try

RE: jtl

2006-02-01 Thread Kim Loh
Is that the same reside in bin folder as JMeter.log? Thanks. -Original Message- From: Loh, Kimberley [mailto:[EMAIL PROTECTED] Sent: Thursday, February 02, 2006 10:57 AM To: 'JMeter Users List' Subject: jtl Hello, May I know what JTL about? How can I set to have jtl after

Re: I need HTTP parameters stored in .jmx file in *unencoded* form. Is this possible?

2006-02-01 Thread John Bullock
I am pretty sure it is JMeter. The example that I am working on is a parameter whose value is a base64-encoded block of text. For example: property name=Argument.value propType=org.apache.jmeter.testelement.property.StringProperty

Regd Number of Threads running

2006-02-01 Thread Alexander S
Hi How can we know the number of started threads at any instance of time, while running the JMeter ??? Thank you in advance. With Regards Alexander - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands,

Out of Memory

2006-02-01 Thread Alexander S
Hi When I am running the JMeter for more number of threads or for longer periods, I am getting the Out of Memory Exception in the console. Can this be handled ? Any fine tuning tips ??? Thank you. With Regards Alexander -

One Scenario

2006-02-01 Thread Alexander S
Hi I am running JMeter from a centralized system, which is connecting to five different remote clients ( which is running JMeter-Server.bat ) In the Test Plan, I have to give an unique number as input in the testing application ( for which I am using a counter function in JMeter ). Since I am

AW: Question Regarding JMeter Testing Through Proxy

2006-02-01 Thread Torsten . Frehe
Hi Patrik, at the beginning of testing Jmeter I got the same problem but it was the incorrect proxy-value in the Internet Explorer. Do you use the alternative Don´t use proxy in the Internet Explorer proxy-values? These request Jmeter can´t listen. I run Jmeter.bat with -H proxyservername -P