Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
Can we have like this: Based on the requirement per min the execution is like this: 1. One HTTP Get Sampler to execute every 15 secs This happens 4 times in a minute 2. Six HTTP Get Samplers to execute every 20 secs This happens 3 times in a minute 3. One HTTP Get Samplers to execute every

Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
All my 8 threads are using the same cookie to get the data. If in JMeter i have to have these requests in different threads and if these threads receive different cookies and use them , then this is not what the actual web browser does to my Web App. I want to have: 1. One HTTP Get Sampler to

Re: Concurrent Controllers Execution

2009-09-16 Thread Deepak Shetty
You have 8 threads making a single request . the first time they make the request , they will each get a(different) session id and associated cookie. The next time each thread makes another request the same id will be used. But note that thread1 always makes request1 , thread2 makes 1 out of a poss

Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
Ok , let me be more elaborate. I have to access my Web App which is done only though HTTPS and not HTTP. So i feel (though i may be wrong) that cookies that have the JSESSIONID will be used for each query made to the server. So initially when i access the Web app i receive a cookie which has th

Re: Regarding captcha image

2009-09-16 Thread M.Vijaya Bhaskar
Hi Deepak, Thank you for your quick reply. On Thu, Sep 17, 2009 at 10:59 AM, Deepak Shetty wrote: > if its a good captcha , you can't . > > Unless you can change your application code to either disable captcha or > provide a known set of images or have some server side code that can be > quer

Re: Concurrent Controllers Execution

2009-09-16 Thread Deepak Shetty
No if you dont really care about cookies , then keep it the way it. Currently each thread makes the same request and you dont really need to bother about it. If you needed to change so that a thread makes multiple requests and you need the cookie to be the same then you'd have to change this to use

Re: Regarding captcha image

2009-09-16 Thread Deepak Shetty
if its a good captcha , you can't . Unless you can change your application code to either disable captcha or provide a known set of images or have some server side code that can be queried to tell you the value. regards deepak On Wed, Sep 16, 2009 at 10:21 PM, M.Vijaya Bhaskar < vijayabhaska...@

Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
Thats a good question. I am not much aware of the cookies. But when i tried to sniff the HTTP headers while i access my Web App , All the requests were using the same cookie. Or should i say that they were sharing the same cookie. If this is the case is it fine to put the Cookie manager in eac

Re: Concurrent Controllers Execution

2009-09-16 Thread Deepak Shetty
It depends on what you want to do , 8 parallel requests will each have their own set of cookies , it depends on whether you need the same cookie between requests in the same thread . For the request set you posted in your first mail , whats the cookie behavior you want.. regards deepak On Wed, Se

Regarding captcha image

2009-09-16 Thread M.Vijaya Bhaskar
Hi All, In my application Registration form i have a CAPTCH image,This image is changing for every request, Can any one give me the solution how to get the values of CAPTCH image and how can i pass another request Thanks Vijay

Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
So should i add the cookie managers into each Thread groups. That should work right?? Thanks Jatin Deepak Shetty wrote: Hi I should just add that cookies wont be shared between threads. regards deepak On Wed, Sep 16, 2009 at 10:04 PM, Jatin Davey wrote: Many Thanks. I tired with differ

Re: Concurrent Controllers Execution

2009-09-16 Thread Deepak Shetty
Hi I should just add that cookies wont be shared between threads. regards deepak On Wed, Sep 16, 2009 at 10:04 PM, Jatin Davey wrote: > Many Thanks. > > I tired with different thread groups and it worked. I appreciate your help. > > > Thanks > Jatin > > Deepak Shetty wrote: > >> hi >> Yes >> Tes

Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
Many Thanks. I tired with different thread groups and it worked. I appreciate your help. Thanks Jatin Deepak Shetty wrote: hi Yes Test Plan Cookie Manager Request Defaults Thread Group 1 Thread Group 2 regards deepak On Wed, Sep 16, 2009 at 9:51 PM, Jatin Davey wrote: Hi I

Re: Concurrent Controllers Execution

2009-09-16 Thread Deepak Shetty
hi Yes Test Plan Cookie Manager Request Defaults Thread Group 1 Thread Group 2 regards deepak On Wed, Sep 16, 2009 at 9:51 PM, Jatin Davey wrote: > Hi > > I have the following three things: > > HTTP Cookie Manager > HTTP Request Defaults > HTTP Authorization Manager > > Is it possib

Re: Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
Hi I have the following three things: HTTP Cookie Manager HTTP Request Defaults HTTP Authorization Manager Is it possible to share these things across multiple thread groups as you have mentioned below? Thanks Jatin Deepak Shetty wrote: Hi Your simplest solution is to use different thread

Re: Concurrent Controllers Execution

2009-09-16 Thread Deepak Shetty
Hi Your simplest solution is to use different thread groups Thread Group (1 thread, Loop Forever) One HTTP Sampler Timer (Delay = 15 secs) Thread Group (6 thread , loop forever) Interleave controller (6 in parallel but only one at any one time) Six HTTP Samplers T

Concurrent Controllers Execution

2009-09-16 Thread Jatin Davey
Hi I have a requirement as below: 1. One HTTP Get Sampler to execute every 15 secs 2. Six HTTP Get Samplers to execute every 20 secs 3. One HTTP Get Samplers to execute every 60 secs I had the controllers organization as below in JMeter: Thread Group Loop Controller (Loop Forever) One

Re: Integrating Monitoring stuff

2009-09-16 Thread Peter Lin
sounds like a useful feature. As far as know, DTrace has been ported to linux and OSX, so it should work on solaris, linux and osx. it won't work on windows obviously. the sampler should be fairly straight forward. Are you planning on using JNI to invoke DTrace? peter On Wed, Sep 16, 2009 at

Re: Integrating Monitoring stuff

2009-09-16 Thread sebb
On 16/09/2009, Gokulakannan Somasundaram wrote: > Hi, >We are exploring options to integrate DTrace profiling results in JMeter. > It would be more like while we are running the test, we can see how much > time some important methods are taking to execute. I am planning to add a > listener,

Re: How to read multibyte user data from external file

2009-09-16 Thread sebb
On 11/09/2009, jmltest jmltest wrote: > Hi Jmeter team > > Please help me with how to do this , iam new to Jmeter . Could not find this > info in User manual , hence writing to this forum . Kindly advise. > > > Requirement : > Multibyte data i.e non-english paramater/values are in an external

Re: How to countinue with the test without wating to the HTTP response

2009-09-16 Thread omri suissa
Thanks, ill use the While Controller and the JMeter Properties to achieve what i need. On Wed, Sep 16, 2009 at 2:58 AM, Deepak Shetty wrote: > Im not sure I understand your question. > Its not clear what is taking and what you wish to be able to run > serially/parallely.Your requests seem to be

Integrating Monitoring stuff

2009-09-16 Thread Gokulakannan Somasundaram
Hi, We are exploring options to integrate DTrace profiling results in JMeter. It would be more like while we are running the test, we can see how much time some important methods are taking to execute. I am planning to add a listener, into the JMeter GUI, which would take up the name pattern wit

Re: HTTP Post Requests Failing

2009-09-16 Thread sebb
On 16/09/2009, Jatin Davey wrote: > Hi > > I created a test plan by first recording my actions when i access the Web > App that i wanted to test. While the actions were being performed there were > corresponding Samplers being created by the "HTTP Proxy Recorder". The > recorded samplers had both

Re: Save Response Data in non-gui mode

2009-09-16 Thread sebb
On 16/09/2009, Noel O'Brien wrote: > Hi, > > The execution results are not save with the test plan itself. Also, the > Summary Report Listener only displays a summary of the tests while executing > in GUI mode, i.e. it has no value in non-gui mode and only consume resources. > > What you can d

HTTP Post Requests Failing

2009-09-16 Thread Jatin Davey
Hi I created a test plan by first recording my actions when i access the Web App that i wanted to test. While the actions were being performed there were corresponding Samplers being created by the "HTTP Proxy Recorder". The recorded samplers had both http "GET" and http "POST" requests to th

Re: Save Response Data in non-gui mode

2009-09-16 Thread Noel O'Brien
Hi, The execution results are not save with the test plan itself. Also, the Summary Report Listener only displays a summary of the tests while executing in GUI mode, i.e. it has no value in non-gui mode and only consume resources. What you can do is put a Simple Data Writer Listener into your

Save Response Data in non-gui mode

2009-09-16 Thread Alexandru Rotaru
Hi, 1. I created a test plan and added the Summary Report Listener. 2. I configured the report to save in XML format, and also ticked the option Save Response Data (XML). true true true true true true