Fwd: JavaSampler, complex response processing

2004-06-03 Thread Axel Faltin
Hi List, Unfortunately nobody responded so far. I guess my mail was too complicated in the first place. Let's try it step by step: How do I fill a SampleResult wisely in the case of a complex answer structure. I would love to return my own object, which is not possible I guess so I need to wrap

Re: Fwd: JavaSampler, complex response processing

2004-06-03 Thread peter lin
hi Axel, you're probably going to have to extend SampleResult, or try to wedge it into the existing one. Are you planning on using a local interface to call the EJB or do a real remote call? if you're goal is to measure how long it takes to get data, you probably should be using local

Re[2]: Fwd: JavaSampler, complex response processing

2004-06-03 Thread Axel Faltin
Hi, you're probably going to have to extend SampleResult, or try to wedge it into the existing one. Are you planning on using a local interface to call the EJB or do a real remote call? 1. In the case I extend SampleResult (lets say AxelSampleResult), which would be fine with me. How do I

Re: Re[2]: Fwd: JavaSampler, complex response processing

2004-06-03 Thread peter lin
that definitely gives me a better idea, but I'm afraid there isn't a simple solution to your specific problem. Axel Faltin [EMAIL PROTECTED] wrote: Hi, you're probably going to have to extend SampleResult, or try to wedge it into the existing one. Are you planning on using a local

Re: Re[2]: Fwd: JavaSampler, complex response processing

2004-06-03 Thread peter lin
have you read this article? http://www.javaworld.com/javaworld/jw-05-2000/jw-0526-testinfect.html other people have come across this problem and there are JUnit based approaches to testing EJB that may be more suitable for your needs. good luck. peter

RE: Fwd: JavaSampler, complex response processing

2004-06-03 Thread BAZLEY, Sebastian
the values of most of the sample fields directly (except the elapsed time). S -Original Message- From: peter lin [mailto:[EMAIL PROTECTED] Sent: 03 June 2004 13:59 To: JMeter Users List; Axel Faltin Subject: Re: Fwd: JavaSampler, complex response processing hi Axel, you're probably going

JavaSampler, complex response processing

2004-05-25 Thread Axel Faltin
Hi all, I have some difficulties putting together a testplan for a EJB Interface Test. My Setup: --- J2EE Container with a couple of Stateless Session Bean. I would like to call the first (login) which comes back with the sessionid and do a second, third, etc call using that sessionid. --- I