Problem with script execution.

2009-06-18 Thread ankush jethi
Hi all, I have recorded a script where I need to enter three accounts . One as primary and others as Owner and Guarantor. Now when I run the script with 10 threads without think time the scripts with creating all three accounts. But when the number of threads are increased to say 15. The scripts

RE: Cookie Manager

2009-06-18 Thread Stromas, Aaron (NIH/OD) [C]
Hi, Yes, the site works. Thanks for explaining and the tip about Live HTTP Headers. I see now that it is the browser that sends the cookie (see below). I haven't expected that at all! And I can also see that the returned cookie is for the correct path. On the other hand, WRT my previous

Very uncommon sampler

2009-06-18 Thread Andrey Larionov
Currently i write custom sampler for IMAP. Main problem what i want to open connection in sampler and don't close it until end of test. Is it possible? Or i should look on another tool. - To unsubscribe, e-mail:

Re: Very uncommon sampler

2009-06-18 Thread sebb
On 18/06/2009, Andrey Larionov anlario...@gmail.com wrote: Currently i write custom sampler for IMAP. Main problem what i want to open connection in sampler and don't close it until end of test. Is it possible? Yes, several of the samplers already keep connections open during a test, for

Re: Very uncommon sampler

2009-06-18 Thread Andrey Larionov
Thanks fot point and quick response On Thu, Jun 18, 2009 at 18:34, sebbseb...@gmail.com wrote: On 18/06/2009, Andrey Larionov anlario...@gmail.com wrote: Currently i write custom sampler for IMAP. Main problem what i want to  open connection in sampler and don't close it until end of test. Is

building a string from a list of values

2009-06-18 Thread illogic
I would like to build a string from a list of numbers. I'm working with the following data (example): testints = 34,495,234,549 However, I don't know ahead of time how many numbers will be in the list. I can split the list with ${__split(${testints},testint)} so I get: testint_1 = 34 testint_2

Re: building a string from a list of values

2009-06-18 Thread Deepak Shetty
hi you are probably better off with a beanshell preprocessor script that formats the string and adds it to the request regards deepak On Thu, Jun 18, 2009 at 8:37 AM, illogic qb...@mailinator.com wrote: I would like to build a string from a list of numbers. I'm working with the following

Re: Problem with script execution.

2009-06-18 Thread Deepak Shetty
Did you check if there were any errors on the server? Did all your samples have correct assertions(e.g. success messages that get displayed when your guarantor is created) to allow you to detect any errors on the Jmeter samplers? Using Results Tree you can verify that the request to create is

Re: Cookie Manager

2009-06-18 Thread Deepak Shetty
Hi the sample you have posted isnt the same as for the one in your earlier emails (here you already have a session and no login request , earlier you had a login request). You will have to record what your browser gets (using livehttpheaders) and when running jmeter, enable View results tree and

Re: building a string from a list of values

2009-06-18 Thread sebb
Or use an external script to create the required data and put in a file which you then read with CSV Dataset. On 18/06/2009, Deepak Shetty shet...@gmail.com wrote: hi you are probably better off with a beanshell preprocessor script that formats the string and adds it to the request

Re: Cookie Manager

2009-06-18 Thread sebb
Also make sure that the browser does not already have a cookie from an existing session. On 18/06/2009, Deepak Shetty shet...@gmail.com wrote: Hi the sample you have posted isnt the same as for the one in your earlier emails (here you already have a session and no login request , earlier you

RE: Cookie Manager

2009-06-18 Thread Stromas, Aaron (NIH/OD) [C]
Yes, livehttpheaders helps a great deal. Firebug did not show all the requests, so I wasn't coding the test plan correctly. There are several redirections (3XX) that livehttpheaders captured, but the Firebug did show. You are correct, the Cookie Manager works fine. -a -Original

RE: Cookie Manager

2009-06-18 Thread Stromas, Aaron (NIH/OD) [C]
Yes, I realized that was what was happening AFTER I posted. -a -Original Message- From: sebb [mailto:seb...@gmail.com] Sent: Thursday, June 18, 2009 12:02 PM To: JMeter Users List Subject: Re: Cookie Manager Also make sure that the browser does not already have a cookie from an

building a string from a list of values

2009-06-18 Thread illogic
I apologize if this posts multiple times, I am having some issues posting. I would like to build a string from a list of numbers. I'm working with the following data (example): testints = 34,495,234,549 I've also got: testint_1 = 34 testint_2 = 495 testint_3 = 234 testint_4 = 549

Re: building a string from a list of values

2009-06-18 Thread sebb
This is a duplicate; there have already been replies to the original posting. Please follow-up in the other thread. On 18/06/2009, illogic subsys...@gmail.com wrote: I apologize if this posts multiple times, I am having some issues posting. I would like to build a string from a list of

Need help using Restlet with JMeter

2009-06-18 Thread Whatis myname
Hello, I am trying to make a client request through the proxy server for Restlets, so that I can use the JMeter Proxy Server to record it and play back. I was able to do some tweaking around to be able to do this for SOAP requests, but am unable to find anything for Restlets. Does anyone have any

Re: Need help using Restlet with JMeter

2009-06-18 Thread Deepak Shetty
you should be able to specify proxyHost and port in the Eclipse window where you run junit (there is a text box for system parameters - under where you can specify command line arguments -Dhttp.proxyHost=*proxyhost* [-Dhttp.proxyPort=*portNumber*] regards deepak On Thu, Jun 18, 2009 at

Re: Need help using Restlet with JMeter

2009-06-18 Thread Whatis myname
Thanks for the reply. I tried that before and that did not work. This is what I did: Right clicked on the junit test name - Run as - Run Configurations Clicked on Arguments tab In the program arguments text box, I typed in: -Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=8080 This did not work. I