Cookie manager

2007-10-03 Thread Richard Hubbell
Couple of things with the cookie manager. I'm using Jmeter 2.3. The cookie manager defaults to Cookie policy rfc2109, if I change it, it switches back to rfc2109 and there's no way other than editing the jmx by hand to change it, the gui, switches back to rfc2109. A minor problem. Maybe a java is

Re: Null HTTP Response Code

2007-10-03 Thread Richard Hubbell
--- David Leston <[EMAIL PROTECTED]> wrote: > I was following your advice and trying the other > HTTP Request when I noticed > I had used {} around my variables rather than (). > Fixing this error fixed > my problem. {} are what's required around variables as in ${URI} So maybe you just have you

Re: HTTP Request Defaults in a while loop

2007-10-03 Thread Richard Hubbell
--- Kathy Mitchell <[EMAIL PROTECTED]> wrote: > It seems that the defaults are not gettting set > until after the first > request in each loop is made. Is this the expected > behavior? If so, is > there any way around the problem other than > inserting the information > directly into each reques

Re: leading slash in Http Request Path variable

2007-10-03 Thread Richard Hubbell
--- sebb <[EMAIL PROTECTED]> wrote: > > Wow, may well prevent using jmeter. What if we > need > > to specify 100,000 users for the proxy? > > > > Is there a better way than to have to specify > 100,000 > > jmeter command lines to test 100,000 users? I > guess > > we could auth for one user but t

Re: Null HTTP Response Code

2007-10-03 Thread David Leston
Yep, I jumped the gun. I replaced the braces and here's some more results for you. Here's the info out of my jmeter.log. For brevity, I removed the logs of the other 99 threads starting up, and left just one 404... They're all 404s here, but (null) in the log.jtl specified with the -l command l

Re: HTTP Request Defaults in a while loop

2007-10-03 Thread sebb
How are you reading the file? I'm not sure that you need to use defaults if the values change each time... On 03/10/2007, Kathy Mitchell <[EMAIL PROTECTED]> wrote: > I have a JMeter script that loops through a file and sends requests to > the hostname/port/protocol read from the file. I tried us

Re: Null HTTP Response Code

2007-10-03 Thread sebb
On 04/10/2007, David Leston <[EMAIL PROTECTED]> wrote: > Hi Sebb, > > I was following your advice and trying the other HTTP Request when I noticed > I had used {} around my variables rather than (). Fixing this error fixed > my problem. Variables need {}, not (), e.g. ${VAR}, not $(VAR). > Than

Re: leading slash in Http Request Path variable

2007-10-03 Thread sebb
On 04/10/2007, Richard Hubbell <[EMAIL PROTECTED]> wrote: > > --- sebb <[EMAIL PROTECTED]> wrote: > > > Here's the setup: > > > > > > 1. HTTP Request Default has proxy.example.com as > > the > > > server variable > > > > The proxy needs to be defined on the command-line. > > > > > 2. HTTP Request

Re: Null HTTP Response Code

2007-10-03 Thread sebb
I meant the jmeter.log file. On 04/10/2007, David Leston <[EMAIL PROTECTED]> wrote: > In the file specified in the -l command line option, I only see lines that > look like this: > rc="(null)" rm="unknown/unknown" tn="Thread Group 1-15" dt="text" by="230"/> > > Do you have a suggestion as to a l

Re: Null HTTP Response Code

2007-10-03 Thread David Leston
Hi Sebb, I was following your advice and trying the other HTTP Request when I noticed I had used {} around my variables rather than (). Fixing this error fixed my problem. Thank you for your help. On 10/3/07 3:48 PM, "sebb" <[EMAIL PROTECTED]> wrote: > Any messages in the jmeter log file? >

Re: leading slash in Http Request Path variable

2007-10-03 Thread Richard Hubbell
--- sebb <[EMAIL PROTECTED]> wrote: > > Here's the setup: > > > > 1. HTTP Request Default has proxy.example.com as > the > > server variable > > The proxy needs to be defined on the command-line. > > > 2. HTTP Request has ${url} for the Path variable > > > > But jmeter, incorrectly I believe,

Re: Null HTTP Response Code

2007-10-03 Thread David Leston
In the file specified in the -l command line option, I only see lines that look like this: Do you have a suggestion as to a log level I can set to get more informative logging? I see the -L command line option, but I'm not sure what categories exist to set to DEBUG. On 10/3/07 3:48 PM, "sebb"

Re: leading slash in Http Request Path variable

2007-10-03 Thread sebb
On 03/10/2007, Richard Hubbell <[EMAIL PROTECTED]> wrote: > > --- sebb <[EMAIL PROTECTED]> wrote: > > > On 03/10/2007, Richard Hubbell > > <[EMAIL PROTECTED]> wrote: > > > Using latest jmeter and java. > > > > > > Reading urls from a csv file and passing into the > > Path > > > for the HTTP Request

Re: Null HTTP Response Code

2007-10-03 Thread sebb
Any messages in the jmeter log file? Might be worth trying the other HTTP sampler. On 03/10/2007, David Leston <[EMAIL PROTECTED]> wrote: > I am receiving a Null HTTP response code on nearly all my requests. I spot > checked the URLs I am requesting for validity. Here's one for example: > http:

Re: leading slash in Http Request Path variable

2007-10-03 Thread Richard Hubbell
--- sebb <[EMAIL PROTECTED]> wrote: > On 03/10/2007, Richard Hubbell > <[EMAIL PROTECTED]> wrote: > > Using latest jmeter and java. > > > > Reading urls from a csv file and passing into the > Path > > for the HTTP Request > > > > Each url in the file is like so: > > http://www.example.com/ > > T

Re: leading slash in Http Request Path variable

2007-10-03 Thread sebb
On 03/10/2007, Richard Hubbell <[EMAIL PROTECTED]> wrote: > Using latest jmeter and java. > > Reading urls from a csv file and passing into the Path > for the HTTP Request > > Each url in the file is like so: > http://www.example.com/ The path is supposed to contain just the path; in this case / T

Re: jmeter.bat: Special exit code when test plan run fails?

2007-10-03 Thread pbm-rico
Actually, returning an error code in Java is pretty straight forward: System.exit(123); // or whatever code you want. All you have to do is agree on the error code(s). -Rico Original-Nachricht > Datum: Wed, 3 Oct 2007 22:02:38 +0100 > Von: sebb <[EMAIL PROTECTED]> > An: "JMete

Re: Threads and Sequence of execution

2007-10-03 Thread Christiaan Lamprecht
Please ignore the second half of my previous post (also included at the end of this post). The solution is below. Also, the use of "ramp-up" seems to suggest that creating threads are quite expensive, so still not sure if the solution below is the right approach to control the number of new SSL ses

leading slash in Http Request Path variable

2007-10-03 Thread Richard Hubbell
Using latest jmeter and java. Reading urls from a csv file and passing into the Path for the HTTP Request Each url in the file is like so: http://www.example.com/ The default "HTTP Request Defaults" specify the proxy server that the requests go through. The problem is that jmeter inserts a leadi

Threads and Sequence of execution

2007-10-03 Thread Christiaan Lamprecht
Hi all, Just a simple-ish "sequence of execution" question if anyone can help; Test Plan Thread Group (users 5, ramp 3, count 500) HTTP Request HTTPClient (SSL request - KeepAlive enabled) Uniform Random Timer (Offset 100, dev 5) >From the above nested test plan (and documentation) I ass

Null HTTP Response Code

2007-10-03 Thread David Leston
I am receiving a Null HTTP response code on nearly all my requests. I spot checked the URLs I am requesting for validity. Here's one for example: http://www.ebates.com/search/products.htm?store_name=boat%20seats&page=next What could lead to a null HTTP response code? I'm using JMeter 2.3 (the S

Re: jmeter.bat: Special exit code when test plan run fails?

2007-10-03 Thread sebb
This is a problem with Java applications. In general it is very difficult to return a meaningful code from Java applications. On 03/10/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi all, > > I was wondering if there is a special exit code for jmeter.[bat|sh] and the > like when a test

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread b4d93r
The first tests I was referring to were apparently just hitting the server itself and not the wsdl service. After running a few other attempts today it appears there may be some mis-configuration on the server itself. We are investigating that now. So, the server was replying back that it was ther

jmeter.bat: Special exit code when test plan run fails?

2007-10-03 Thread pbm-rico
Hi all, I was wondering if there is a special exit code for jmeter.[bat|sh] and the like when a test fails. For example if I run this on Windows, the exit code is '0' although some tests failed: c:\jakarta-jmeter-2.3RC4\bin>jmeter.bat -n -t ..\extras\Test.jmx -l shorttest.log Created the

HTTP Request Defaults in a while loop

2007-10-03 Thread Kathy Mitchell
I have a JMeter script that loops through a file and sends requests to the hostname/port/protocol read from the file. I tried using HTTP Request Defaults to set defaults for the items read in each time through the loop. When I look at the URL in the output log my first request in each loop appear

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread sebb
On 03/10/2007, b4d93r <[EMAIL PROTECTED]> wrote: > > The " -" are in there. (mind you I didn't create this script so any info here > would be of great value.) They are not valid XML, so need to be removed. If you display XML in Internet Explorer, then it shows "-" and "+" as handles to allow the

Re: Can any body differentiate LoadRunner and Jmeter & How a Beginner can proceed with JMeter

2007-10-03 Thread b4d93r
Hi Shaik, As for "plug-ins" there are some things out there that are able to be used/integrated with Jmeter. So far the only ones I have found that are very useful to me at this time are http://www.badboy.com.au/ BadBoy a GUI tool that lets you click and record then export them into a JMeter fo

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread b4d93r
The " -" are in there. (mind you I didn't create this script so any info here would be of great value.) As for the line break, I'm not sure. I'll see what we can find out. (Dumb question but I have to ask.) Should I have the Soap header and envelope in that code? I've been wondering about this b

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread sebb
On 03/10/2007, b4d93r <[EMAIL PROTECTED]> wrote: > > Hi sebb-2! > > Sebb-2 said: "Are you talking about an ordinary HTTP request/response here, > or SOAP? " > > I'm trying SOAP.(or at least I think I am!) is there a difference? I was referring to the first request which you said worked. How is tha

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread sebb
I assume the " - " at the beginning of some lines are not in the real data? There's also a line-break in the xsi:schemaLocation attribute which I assume has been added by the mail transport. Apart from these, the data seems to be valid XML, but has no SOAP header or envelope. S. On 03/10/2007, b

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread b4d93r
You know what, I didn't post it like I thought I did. My fault I do apologize! (NOTE: I did change specific info to something more generic, again due to confidentiality reasons.) Here it is... - http://www.w3.org/2001/XMLSchema-instance"; xsi:schemaLocation="urn:companyainc:o-series:tps:4:0

Re: Default header (Still playing with the SOAP stuff)

2007-10-03 Thread b4d93r
Hi sebb-2! Sebb-2 said: "Are you talking about an ordinary HTTP request/response here, or SOAP? " I'm trying SOAP.(or at least I think I am!) is there a difference? sebb-2 said: "Is there a SOAPAction header in the data sent?" Not sure. I'm still kind of fuzzy on this stuff. If it's not in th

alternated parameter

2007-10-03 Thread Fulvio Guglielmelli
Hi, i'm new with Jmeter I have made a Java Request to test my servises Now i want make a loop of 1000 call to my service but the test plan must pass at the java class an integer parameter. It's value could be 1,2 or 3 alternated (1,2,3,1,2,3,1..) thanks FULVIO

RE: Maintaining Session Info

2007-10-03 Thread falciani
Solved. I used the proxy recorder to record my steps. Although, I'm not really sure what it did. -Original Message- From: Falciani, Jeff Sent: Wednesday, October 03, 2007 8:34 AM To: 'jmeter-user@jakarta.apache.org' Subject: Maintaining Sessio

RE: alternated parameter

2007-10-03 Thread Fulvio Guglielmelli
I can use a COUNTER, but i have not understand how it can repeat the valie of couter and how i will read the value into the java class thanks FULVIO Javier Puerto <[EMAIL PROTECTED]> ha scritto: Hi, You can use a counter with the min value to 1 and max value to 3 or maybe an interlaced

RE: alternated parameter

2007-10-03 Thread Javier Puerto
Hi, You can use a counter with the min value to 1 and max value to 3 or maybe an interlaced controller with three http samplers (1,2,3). -Mensaje original- De: Fulvio Guglielmelli [mailto:[EMAIL PROTECTED] Enviado el: miƩrcoles, 03 de octubre de 2007 16:19 Para: jmeter-user@jakarta.apac

Re: Can any body differentiate LoadRunner and Jmeter & How a Beginner can proceed with JMeter

2007-10-03 Thread Shaba
This is the download link http://jakarta.apache.org/site/downloads/ On 10/3/07, Shaik Riyaz <[EMAIL PROTECTED]> wrote: > Hey guys, > I have worked with LoadRunner never on JMeter. > > can any body differentiate both the tools in terms of limitations and > flexibilities > > And can any body guide

Re: can i have the link for new joinees

2007-10-03 Thread Shaba
Hi There, http://jakarta.apache.org/jmeter/ & this is the wiki page http://wiki.apache.org/jakarta-jmeter/ hope this being an aid ... Its better you be more precise as to what you are issues so that people respond. -Shabana On 10/3/07, Shaik Riyaz <[EMAIL PROTECTED]> wrote: > Hey guys can I h

alternated parameter

2007-10-03 Thread Fulvio Guglielmelli
Hi, i'm new with Jmeter I have made a Java Request to test my servises Now i want make a loop of 1000 call to my service but the test plan must pass at the java class an integer parameter. It's value could be 1,2 or 3 alternated (1,2,3,1,2,3,1..) thanks FULVIO

Re: Throughput controller

2007-10-03 Thread sebb
In that case, you don't need the TC. Just use the Timer to set the desired throughput, i.e. 90/hour = 5400/minute. S/// On 03/10/2007, Hugo Melendez <[EMAIL PROTECTED]> wrote: > Hi Sebb, thanks for the answer. > > Im trying to achieve a test with ensures me a total amount of a > certain request,

Re: Throughput controller

2007-10-03 Thread Hugo Melendez
Hi Sebb, thanks for the answer. Im trying to achieve a test with ensures me a total amount of a certain request, ie, 90 times by hour. So, I figured that if I set this TC in 90 total executions, and add a Constant Throughput Timer inside the loop, i can use a different amounts of threads to try di

Can any body differentiate LoadRunner and Jmeter & How a Beginner can proceed with JMeter

2007-10-03 Thread Shaik Riyaz
Hey guys, I have worked with LoadRunner never on JMeter. can any body differentiate both the tools in terms of limitations and flexibilities And can any body guide me in following: 1) How & where could I download JMeter software (I traversed whole the link http://jakarta.apache.org/jmeter/ but

Re: can i have the link for new joinees

2007-10-03 Thread sebb
This is the correct forum. However, please ensure that you start a new message for each new topic, and please use a relevant subject. [as you have done here]. It's much easier to follow a conversation - and find the information later - if the contents of all the messages are related to the initi

can i have the link for new joinees

2007-10-03 Thread Shaik Riyaz
Hey guys can I have the url where new comers of JMeter use to discuss their issues and concerns? Already I posted one query but found the response that this is not a right forum for me?please respond. Thanks in advance. ***

Maintaining Session Info

2007-10-03 Thread falciani
I'm having an issue testing a web app that requires authentication via back-end ldap (not BASIC authentication). I have set up a test case and added a cookie manger, but my session info is being lost between the login http request and subsequent http request. I've also tried to use http url rewrit

Re: recording http problem [SOLVED]

2007-10-03 Thread sebb
Ah, thanks for letting us know. I'd overlooked the URL pattern. .*\.do should match anything ending in ".do", but it won't match if there was anything after the ".do" The pattern .* matches everything, so can be omitted if it is the only include pattern. On 03/10/2007, Strachan, Paul <[EMAIL PR