[Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Carfield Yim
When I use the robot to record the flow, jmeter captured the form is post to /wicket?wicket:interface=:1:userForm:1:IFormSubmitListener But later when I rerun the test, and it just throws 404 not found error. When I go to that URL, I get the page expire message. Just wonder how can I make

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Martijn Dashorst
I ran into this myself, and the only solution I came up with is not to repeat the test multiple times. It appears that the client thread is not destroyed between repeats, and the servlet container (or Wicket, haven't looked into it) keeps on numbering as if the previous session still runs.

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Joni Freeman
On Fri, 2006-10-27 at 14:49 +0800, Carfield Yim wrote: When I use the robot to record the flow, jmeter captured the form is post to /wicket?wicket:interface=:1:userForm:1:IFormSubmitListener But later when I rerun the test, and it just throws 404 not found error. When I go to that URL, I

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Carfield Yim
On 10/27/06, Martijn Dashorst [EMAIL PROTECTED] wrote: I ran into this myself, and the only solution I came up with is not to repeat the test multiple times. so you mean I cannot have load test if I use wicket that is kind of bad really bad Actually can I set the client thread is

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Carfield Yim
This is one of the reasons I prefer Grinder for performance testing. With Grinder it is possible to programmatically follow links. A similar problem may be when using Selenium IDE for acceptance testing, the tests can't be repeated. Here Selenium RC is your friend. But my friend complaint

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Frank Bille
Hmm thats not our experience. Our opperationals guy did some loadtesting of Wicket using JMeter and I don't recall him having any problems with it. I'll try to ask him what he did.Frank On 10/27/06, Martijn Dashorst [EMAIL PROTECTED] wrote: I ran into this myself, and the only solution I came up

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Martijn Dashorst
On 10/27/06, Carfield Yim [EMAIL PROTECTED] wrote: so you mean I cannot have load test if I use wicket that is kind of bad really bad No, that is not what I mean... I just said that you can't set the threads to repeat. That doesn't prevent you from writing longer running tests,

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Nino Wael
-user@lists.sourceforge.net Subject: [Wicket-user] How to make wicket testable at jmeter? When I use the robot to record the flow, jmeter captured the form is post to /wicket?wicket:interface=:1:userForm:1:IFormSubmitListener But later when I rerun the test, and it just throws 404 not found error

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Nino Wael
Look at my mail, you really can set the threads to repeat:) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martijn Dashorst Sent: 27. oktober 2006 09:42 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] How to make wicket testable

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Joni Freeman
On Fri, 2006-10-27 at 15:28 +0800, Carfield Yim wrote: But my friend complaint that Grinder's is not as stable as jmeter, let me take a look first. It is stable, but it doesn't have an easy to use GUI to record the tests. There is a recording proxy but I do not know how well that works. I

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Carfield Yim
On 10/27/06, Nino Wael [EMAIL PROTECTED] wrote: Create a HTTP Cookie Manager, and clear cookies after each iteration.. Works here for us. that work, cool!!! BTW I could send our template if you want to. sure like to take a look

Re: [Wicket-user] How to make wicket testable at jmeter?

2006-10-27 Thread Nino Wael
To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] How to make wicket testable at jmeter? On 10/27/06, Nino Wael [EMAIL PROTECTED] wrote: Create a HTTP Cookie Manager, and clear cookies after each iteration.. Works here for us. that work, cool!!! BTW I could send our template